diff --git a/.gitmodules b/.gitmodules index 4843d9ff5e..901dd4edbe 100644 --- a/.gitmodules +++ b/.gitmodules @@ -17,4 +17,4 @@ [submodule "stochastic_physics"] path = stochastic_physics url = https://github.com/noaa-psd/stochastic_physics - + branch = master diff --git a/CCPP.appBuilder b/CCPP.appBuilder index 8038a54ebc..ab234641fb 100644 --- a/CCPP.appBuilder +++ b/CCPP.appBuilder @@ -4,7 +4,7 @@ COMPONENTS=( CCPP FMS FV3 ) -FV3_MAKEOPT="CCPP=Y STATIC=Y SUITES=FV3_GFS_2017" +FV3_MAKEOPT="CCPP=Y" # The modules.nems and configure.nems are selected by # conf/before_appbuilder_file.mk. diff --git a/CCPP_repro.appBuilder b/CCPP_repro.appBuilder index 976c07ec3d..b3f6a5f556 100644 --- a/CCPP_repro.appBuilder +++ b/CCPP_repro.appBuilder @@ -4,7 +4,7 @@ COMPONENTS=( CCPP FMS FV3 ) -FV3_MAKEOPT="REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017" +FV3_MAKEOPT="REPRO=Y CCPP=Y" # The modules.nems and configure.nems are selected by # conf/before_appbuilder_file.mk. diff --git a/CMakeLists.txt b/CMakeLists.txt index b5053a7652..6cab4e73e8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.0) +cmake_minimum_required(VERSION 3.15) foreach(env_var IN ITEMS CMAKE_C_COMPILER CMAKE_CXX_COMPILER CMAKE_Fortran_COMPILER @@ -23,13 +23,6 @@ find_package(ESMF REQUIRED) include(${PROJECT_SOURCE_DIR}/cmake/configure_${CMAKE_Platform}.cmake) -if(NOT DEFINED PHYS) - set(PHYS gfs) -endif() -message("") -message("Selected physics package: ${PHYS}") -message("") - add_definitions(-Duse_libMPI) add_definitions(-Duse_netCDF) add_definitions(-Duse_WRTCOMP) @@ -43,6 +36,62 @@ add_definitions(-DUSE_COND) add_definitions(-DNEW_TAUCTMAX) add_definitions(-DINTERNAL_FILE_NML) +if (CMAKE_Fortran_COMPILER_ID MATCHES "GNU" AND CMAKE_Fortran_COMPILER_VERSION VERSION_LESS 9.0.0) + message(FATAL_ERROR "GNU Compiler >= 9 is required") +endif() + +if(CCPP) + + find_package(Python 3 QUIET COMPONENTS Interpreter) + if (NOT Python_Interpreter_FOUND) + find_package(Python 2.7 QUIET REQUIRED COMPONENTS Interpreter) + endif() + message("Found Python: ${Python_EXECUTABLE}") + + if(DEFINED CCPP_SUITES) + message("Calling CCPP code generator (ccpp_prebuild.py) for SUITES = ${CCPP_SUITES}") + execute_process(COMMAND FV3/ccpp/framework/scripts/ccpp_prebuild.py + "--config=FV3/ccpp/config/ccpp_prebuild_config.py" + "--suites=${CCPP_SUITES}" + "--builddir=${PROJECT_BINARY_DIR}/FV3" + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} + OUTPUT_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.out + ERROR_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.err + RESULT_VARIABLE RC + ) + else() + message("Calling CCPP code generator (ccpp_prebuild.py) ...") + execute_process(COMMAND FV3/ccpp/framework/scripts/ccpp_prebuild.py + "--config=FV3/ccpp/config/ccpp_prebuild_config.py" + "--builddir=${PROJECT_BINARY_DIR}/FV3" + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} + OUTPUT_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.out + ERROR_FILE ${PROJECT_BINARY_DIR}/ccpp_prebuild.err + RESULT_VARIABLE RC + ) + endif() + + # Check return code from ccpp_prebuild.py + if(RC EQUAL 0) + message("") + else() + message(FATAL_ERROR "An error occured while running ccpp_prebuild.py, check ${PROJECT_BINARY_DIR}/ccpp_prebuild.{out,err}") + endif() + + # this should not be necessary; including CCPP_*.cmake here and passing + # SCHEMES, CAPS and TYPEDEFS via environment variables to CCPP build. + # CCPP should be able to directly include those three .cmake files. + + include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_SCHEMES.cmake) + include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_CAPS.cmake) + include(${PROJECT_BINARY_DIR}/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake) + + set(ENV{CCPP_SCHEMES} "${SCHEMES}") + set(ENV{CCPP_CAPS} "${CAPS}") + set(ENV{CCPP_TYPEDEFS} "${TYPEDEFS}") + +endif() + ############################################################################### ### FMS ############################################################################### @@ -154,6 +203,9 @@ if(WW3) if(${CMAKE_Platform} STREQUAL "hera.intel") set(WW3_COMP "hera") endif() + if(${CMAKE_Platform} STREQUAL "orion.intel") + set(WW3_COMP "orion") + endif() message("Build WW3:") message(" run: ${CMAKE_BUILD_TOOL} WW3_PARCOMPN=4 WW3_COMP=${WW3_COMP} ww3_nems") message(" in: ${PROJECT_SOURCE_DIR}/WW3/model/esmf") @@ -223,7 +275,7 @@ target_link_libraries(NEMS.exe fv3core io ${IPD_LIBRARIES} - ${PHYS}physics + gfsphysics ${CCPP_LIBRARIES} fv3cpl stochastic_physics diff --git a/FV3 b/FV3 index 703e22f967..e7fe5faa24 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 703e22f967e5fc0d311749b01e0a813754e652ac +Subproject commit e7fe5faa24447f2fd4c9557cea0690818f097a6c diff --git a/NEMS b/NEMS index 6a4254b071..cec5a083b8 160000 --- a/NEMS +++ b/NEMS @@ -1 +1 @@ -Subproject commit 6a4254b071a8b91706e9c0f2b97373d5655d6b79 +Subproject commit cec5a083b87dc37358eade618bf8a0a461408957 diff --git a/WW3 b/WW3 index db2c794258..19f3126c83 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit db2c7942580df8b7faca4666f0597bd489e4c77c +Subproject commit 19f3126c832b26ae4c5b27bca6c1dcc676755602 diff --git a/build.sh b/build.sh index 23ce9c67d0..85e9547815 100755 --- a/build.sh +++ b/build.sh @@ -23,18 +23,7 @@ rm -rf ${BUILD_DIR} mkdir ${BUILD_DIR} CCPP_SUITES="${CCPP_SUITES:-FV3_GFS_2017_gfdlmp}" - -./FV3/ccpp/framework/scripts/ccpp_prebuild.py \ - --config=FV3/ccpp/config/ccpp_prebuild_config.py \ - --static \ - --suites=${CCPP_SUITES} \ - --builddir=${BUILD_DIR}/FV3 > ${BUILD_DIR}/ccpp_prebuild.log 2>&1 - -source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_SCHEMES.sh -source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_CAPS.sh -source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_STATIC_API.sh - -CMAKE_FLAGS+=" -DCCPP=ON -DSTATIC=ON -DSUITES=${CCPP_SUITES} -DNETCDF_DIR=${NETCDF}" +CMAKE_FLAGS+=" -DCCPP=ON -DSUITES=${CCPP_SUITES} -DNETCDF_DIR=${NETCDF}" cd ${BUILD_DIR} cmake .. ${CMAKE_FLAGS} diff --git a/cmake/configure_jet.cmake b/cmake/configure_jet.intel.cmake similarity index 100% rename from cmake/configure_jet.cmake rename to cmake/configure_jet.intel.cmake diff --git a/cmake/configure_orion.intel.cmake b/cmake/configure_orion.intel.cmake new file mode 100644 index 0000000000..645406a868 --- /dev/null +++ b/cmake/configure_orion.intel.cmake @@ -0,0 +1,35 @@ +message("") +message("Setting configuration for $ENV{CMAKE_Platform}") +message("") + +get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) +get_filename_component (CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) +get_filename_component (Fortran_COMPILER_NAME ${CMAKE_Fortran_COMPILER} NAME) +message("C compiler: ${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION} (${C_COMPILER_NAME})") +message("CXX compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} (${CXX_COMPILER_NAME})") +message("Fortran compiler: ${CMAKE_Fortran_COMPILER_ID} ${CMAKE_Fortran_COMPILER_VERSION} (${Fortran_COMPILER_NAME})") +message("") + +option(DEBUG "Enable DEBUG mode" OFF) +option(REPRO "Enable REPRO mode" OFF) +option(VERBOSE "Enable VERBOSE mode" OFF) +option(32BIT "Enable 32BIT (single precision arithmetic in dycore)" OFF) +option(OPENMP "Enable OpenMP threading" ON) +option(AVX2 "Enable AVX2 instruction set" ON) + +option(INLINE_POST "Enable inline post" ON) + +include( cmake/${CMAKE_Fortran_COMPILER_ID}.cmake ) + +set(NEMSIO_INC $ENV{NEMSIO_INC}) +set(POST_INC $ENV{POST_INC}) +set(NCEP_LIBS $ENV{POST_LIB} $ENV{NEMSIO_LIB} $ENV{G2_LIB4} $ENV{G2TMPL_LIB} $ENV{BACIO_LIB4} $ENV{SP_LIBd} $ENV{W3EMC_LIBd} $ENV{W3NCO_LIBd} $ENV{CRTM_LIB} $ENV{PNG_LIB} $ENV{JASPER_LIB} $ENV{Z_LIB}) + +set(ESMF_MOD ${ESMF_F90COMPILEPATHS}) +set(ESMF_LIBS "${ESMF_F90ESMFLINKRPATHS} ${ESMF_F90ESMFLINKPATHS} ${ESMF_F90ESMFLINKLIBS}") + +set(NETCDF_INC_DIR $ENV{NETCDF}/include) +set(NETCDF_LIBDIR $ENV{NETCDF}/lib) +set(NETCDF_LIBS -L$ENV{NETCDF}/lib -lnetcdff -lnetcdf) + +message("") diff --git a/cmake/configure_stampede.intel.cmake b/cmake/configure_stampede.intel.cmake new file mode 100644 index 0000000000..534d580aa7 --- /dev/null +++ b/cmake/configure_stampede.intel.cmake @@ -0,0 +1,35 @@ +message("") +message("Setting configuration for $ENV{CMAKE_Platform}") +message("") + +get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) +get_filename_component (CXX_COMPILER_NAME ${CMAKE_CXX_COMPILER} NAME) +get_filename_component (Fortran_COMPILER_NAME ${CMAKE_Fortran_COMPILER} NAME) +message("C compiler: ${CMAKE_C_COMPILER_ID} ${CMAKE_C_COMPILER_VERSION} (${C_COMPILER_NAME})") +message("CXX compiler: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} (${CXX_COMPILER_NAME})") +message("Fortran compiler: ${CMAKE_Fortran_COMPILER_ID} ${CMAKE_Fortran_COMPILER_VERSION} (${Fortran_COMPILER_NAME})") +message("") + +option(DEBUG "Enable DEBUG mode" OFF) +option(REPRO "Enable REPRO mode" OFF) +option(VERBOSE "Enable VERBOSE mode" OFF) +option(32BIT "Enable 32BIT (single precision arithmetic in dycore)" OFF) +option(OPENMP "Enable OpenMP threading" ON) +option(AVX2 "Enable AVX2 instruction set" ON) + +option(INLINE_POST "Enable inline post" OFF) + +include( cmake/${CMAKE_Fortran_COMPILER_ID}.cmake ) + +set(NEMSIO_INC $ENV{NEMSIO_INC}) +set(POST_INC $ENV{POST_INC}) +set(NCEP_LIBS $ENV{POST_LIB} $ENV{NEMSIO_LIB} $ENV{G2_LIB4} $ENV{G2TMPL_LIB} $ENV{BACIO_LIB4} $ENV{SP_LIBd} $ENV{W3EMC_LIBd} $ENV{W3NCO_LIBd} $ENV{CRTM_LIB} $ENV{PNG_LIB} $ENV{JASPER_LIB} $ENV{Z_LIB}) + +set(ESMF_MOD ${ESMF_F90COMPILEPATHS}) +set(ESMF_LIBS "${ESMF_F90ESMFLINKRPATHS} ${ESMF_F90ESMFLINKPATHS} ${ESMF_F90ESMFLINKLIBS}") + +set(NETCDF_INC_DIR $ENV{NETCDF}/include) +set(NETCDF_LIBDIR $ENV{NETCDF}/lib) +set(NETCDF_LIBS -L$ENV{NETCDF}/lib -lnetcdff -lnetcdf) + +message("") diff --git a/compsets/fv3.input b/compsets/fv3.input index 816a65bd7a..95983c1e1a 100644 --- a/compsets/fv3.input +++ b/compsets/fv3.input @@ -92,7 +92,7 @@ build fv3.exe { } build fv3_ccpp_control.exe { - # This block builds the FV3 with CCPP in static mode for the control setup. + # This block builds the FV3 with CCPP for the control setup. # It is otherwise identical to the fv3.exe block. use plat @@ -106,7 +106,7 @@ build fv3_ccpp_control.exe { # build: script to build the NEMS.x. For now, this is an embedded # bash script. build=compile.sh(fv3="@[target]",modules="@[modules.nems]",md5="@[md5sum]", - MAKE_OPTS="\'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017\'") + MAKE_OPTS="\'CCPP=Y SUITES=FV3_GFS_2017\'") } build fv3_32bit.exe { @@ -266,6 +266,10 @@ fv3_defaults = { IAU_INC_FILES="''" IAU_DRYMASSFIXER='.false.' + DO_CA='.F.' + CA_SGS='.F.' + CA_GLOBAL='.F.' + CPLFLX='.F.' CPLWAV='.F.' CPLWAV2ATM='.F.' @@ -1422,6 +1426,19 @@ test fv3_wrtGauss_netcdf: fv3.exe { } } +test fv3_wrtGlatlon_netcdf: fv3.exe { + use fv3_wrtGauss_netcdf + + TEST_DESCR="Compare FV3 global latlon grid netcdf output results with previous trunk version" + CNTL_NAME="fv3_wrtGlatlon_netcdf" + + OUTPUT_GRID="'global_latlon'" + + COM="@[plat%COMrt]/@[TEST_NAME]" # Test result area + RUNDIR="@[plat%TMPrt]/@[TEST_NAME]" # Test work area + CNTL="@[plat%BASELINE]/@[CNTL_NAME]" # Control baseline area +} + ######################################################################## test fv3_satmedmf: fv3.exe { @@ -1432,6 +1449,7 @@ test fv3_satmedmf: fv3.exe { SATMEDMF='.true.' HYBEDMF='.false.' + DT_ATMOS=1200 OUTPUT_GRID="'gaussian_grid'" OUTPUT_FILE="'nemsio'" WRITE_NEMSIOFLIP='.true.' diff --git a/compsets/hera.input b/compsets/hera.input index d06dfe4e7a..db83a90324 100644 --- a/compsets/hera.input +++ b/compsets/hera.input @@ -31,8 +31,8 @@ platform hera.intel { # INPUTS is the input directory, which should contain fix and parm # files, plus any restarts or other inputs. - BASELINE="/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL" - BASELINE_TEMPLATE="/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL" + BASELINE="/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200424/INTEL" + BASELINE_TEMPLATE="/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200424/INTEL" INPUTS="@[BASELINE]" default_resources={ diff --git a/compsets/wcoss.input b/compsets/wcoss.input index 74875af87d..303c2071d6 100644 --- a/compsets/wcoss.input +++ b/compsets/wcoss.input @@ -28,8 +28,8 @@ platform wcoss.phase2 { LONG_TEST_QUEUE='&LONGQ;' BUILD_QUEUE='&BUILDQ;' MACHINE_ID='wcoss.phase2' - BASELINE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" - BASELINE_TEMPLATE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" + BASELINE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" + BASELINE_TEMPLATE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" default_resources={ TASKS=156 @@ -126,8 +126,8 @@ platform wcoss.phase1 { C768_THRD=4 MACHINE_ID='wcoss.phase1' - BASELINE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" - BASELINE_TEMPLATE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" + BASELINE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" + BASELINE_TEMPLATE="/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" # WCOSS Phase 2 has been slow of late. DEFAULT_TEST_WALLTIME=2700 @@ -213,8 +213,8 @@ platform wcoss_dell_p3 { LONG_TEST_QUEUE='&LONGQ;' BUILD_QUEUE='&BUILDQ;' - BASELINE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/" - BASELINE_TEMPLATE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/" + BASELINE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424/" + BASELINE_TEMPLATE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424/" default_resources={ TASKS=156 @@ -314,8 +314,8 @@ platform wcoss.cray { BUILD_WALLTIME="3600" DEFAULT_TEST_WALLTIME=1800 - BASELINE="/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" - BASELINE_TEMPLATE="/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323" + BASELINE="/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" + BASELINE_TEMPLATE="/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200424" execution_time_modules=[[[ module load alps diff --git a/conf/before_components.mk b/conf/before_components.mk index 42fed59bc9..6eee9d190c 100644 --- a/conf/before_components.mk +++ b/conf/before_components.mk @@ -16,23 +16,8 @@ CHOSEN_MODULE=$(BUILD_TARGET)/fv3 -ifneq (,$(findstring INTEL16=Y,$(FV3_MAKEOPT))) - ifeq ($(CHOSEN_MODULE),gaea.intel/fv3) - override CHOSEN_MODULE=$(BUILD_TARGET)/fv3.intel-16.0.3.210 - $(warning Overriding CHOSEN_MODULE with $(CHOSEN_MODULE) as requested per MAKEOPT) - endif -endif - CONFIGURE_NEMS_FILE=configure.fv3.$(BUILD_TARGET) -# ---------------------------------------------------------------------- -# Exit for systems that are currently not supported -ifeq ($(BUILD_TARGET),theia.pgi) - $(error NEMSfv3gfs currently not supported on $(BUILD_TARGET)) -else ifeq ($(BUILD_TARGET),cheyenne.pgi) - $(error NEMSfv3gfs currently not supported on $(BUILD_TARGET)) -endif - # ---------------------------------------------------------------------- # Copy the executable and modules.nems files into the tests/ directory # if a TEST_BUILD_NAME is specified. diff --git a/conf/configure.fv3.cheyenne.gnu b/conf/configure.fv3.cheyenne.gnu index 7c73ded1bb..38cf918af7 100644 --- a/conf/configure.fv3.cheyenne.gnu +++ b/conf/configure.fv3.cheyenne.gnu @@ -55,7 +55,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -183,12 +182,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.cheyenne.intel b/conf/configure.fv3.cheyenne.intel index 21a1d94362..ae3df34b0a 100644 --- a/conf/configure.fv3.cheyenne.intel +++ b/conf/configure.fv3.cheyenne.intel @@ -55,7 +55,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -192,12 +191,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.cheyenne.intel-impi b/conf/configure.fv3.cheyenne.intel-impi index 8dd8c20dc1..e796694118 100644 --- a/conf/configure.fv3.cheyenne.intel-impi +++ b/conf/configure.fv3.cheyenne.intel-impi @@ -51,7 +51,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -188,12 +187,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.endeavor.intel b/conf/configure.fv3.endeavor.intel index efccda80b0..c24c9581bc 100644 --- a/conf/configure.fv3.endeavor.intel +++ b/conf/configure.fv3.endeavor.intel @@ -51,7 +51,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -188,12 +187,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.gaea.intel b/conf/configure.fv3.gaea.intel index b8ff966a3b..af8fc9508d 100644 --- a/conf/configure.fv3.gaea.intel +++ b/conf/configure.fv3.gaea.intel @@ -31,8 +31,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N -INTEL16 = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -99,11 +97,7 @@ CPPDEFS += -DMULTI_GASES endif FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -ifeq ($(INTEL16),Y) -FFLAGS_REPRO = -O2 -debug minimal -fp-model strict -qoverride-limits -g -traceback -else FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback -endif FFLAGS_DEBUG = -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv TRANSCENDENTALS := -fast-transcendentals @@ -166,12 +160,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) diff --git a/conf/configure.fv3.hera.gnu b/conf/configure.fv3.hera.gnu index e55daa83b7..f9b23fbb82 100644 --- a/conf/configure.fv3.hera.gnu +++ b/conf/configure.fv3.hera.gnu @@ -31,7 +31,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -158,12 +157,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif LDFLAGS += $(LIBS) diff --git a/conf/configure.fv3.hera.intel b/conf/configure.fv3.hera.intel index 06a28ec24d..62e4fab45b 100644 --- a/conf/configure.fv3.hera.intel +++ b/conf/configure.fv3.hera.intel @@ -31,7 +31,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -170,12 +169,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif LDFLAGS += $(LIBS) diff --git a/conf/configure.fv3.jet.intel b/conf/configure.fv3.jet.intel index 36b4777c9d..1e9320f9c8 100644 --- a/conf/configure.fv3.jet.intel +++ b/conf/configure.fv3.jet.intel @@ -51,7 +51,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -187,12 +186,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif LDFLAGS += $(LIBS) diff --git a/conf/configure.fv3.linux.gnu b/conf/configure.fv3.linux.gnu index 9b2590a60b..fd22eb3087 100644 --- a/conf/configure.fv3.linux.gnu +++ b/conf/configure.fv3.linux.gnu @@ -55,7 +55,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -183,12 +182,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.macosx.gnu b/conf/configure.fv3.macosx.gnu index 15e7db6937..d2bd65287e 100644 --- a/conf/configure.fv3.macosx.gnu +++ b/conf/configure.fv3.macosx.gnu @@ -55,7 +55,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N SION = N include $(ESMFMKFILE) @@ -185,12 +184,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifeq ($(SION),Y) diff --git a/conf/configure.fv3.supermuc_phase2.intel b/conf/configure.fv3.orion.intel similarity index 75% rename from conf/configure.fv3.supermuc_phase2.intel rename to conf/configure.fv3.orion.intel index 223492afbf..06a28ec24d 100644 --- a/conf/configure.fv3.supermuc_phase2.intel +++ b/conf/configure.fv3.orion.intel @@ -1,6 +1,6 @@ ## NEMS configuration file ## -## Platform: SuperMUC Phase2 +## Platform: Hera ## Compiler: Intel with IntelMPI SHELL=/bin/sh @@ -12,26 +12,6 @@ ifdef InNemsMakefile include $(TOP)/conf/configure.nems.NUOPC endif -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - ############ # commands # ############ @@ -52,13 +32,12 @@ AVX2 = Y HYDRO = N CCPP = N STATIC = N -SION = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) NEMSIOINC = -I$(NEMSIO_INC) -NCEPLIBS = $(NEMSIO_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) +NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) ############################################## # Need to use at least GNU Make version 3.81 # @@ -69,18 +48,22 @@ ifneq ($(need),$(ok)) $(error Need at least make version $(need). Load module gmake/3.81) endif -NETCDF_ROOT = $(NETCDF_BASE) -# NETCDF_INC defined by module -INCLUDE = $(NETCDF_INC) -NETCDF_LIB += $(NETCDF_F90_SHLIB) +NETCDF_ROOT = $(NETCDF) +INCLUDE = -I$(NETCDF_ROOT)/include +NETCDF_INC = -I$(NETCDF_ROOT)/include +ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) + NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf +else + NETCDF_LIB = -L$(NETCDF)/lib -lnetcdff -lnetcdf +endif FPPFLAGS := -fpp -Wp,-w $(INCLUDE) -CFLAGS := $(INCLUDE) -g -traceback +CFLAGS := $(INCLUDE) -FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -g -traceback +FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST +CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP +CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML ifeq ($(HYDRO),Y) CPPDEFS += @@ -108,12 +91,19 @@ FFLAGS += -qno-opt-dynamic-align CFLAGS += -qno-opt-dynamic-align else ifeq ($(AVX2),Y) +# Don't use the AVX512 flags yet on hera +#FFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align +#CFLAGS += -axSSE4.2,AVX,CORE-AVX2,CORE-AVX512 -qno-opt-dynamic-align FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align else -FFLAGS += -xHOST -qno-opt-dynamic-align -CFLAGS += -xHOST -qno-opt-dynamic-align +FFLAGS += -qno-opt-dynamic-align +CFLAGS += -qno-opt-dynamic-align +endif endif + +ifeq ($(MULTI_GASES),Y) +CPPDEFS += -DMULTI_GASES endif FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 @@ -188,16 +178,10 @@ LDFLAGS += -L$(PATH_CCPP)/lib -lccpp endif endif -ifeq ($(SION),Y) -CPPDEFS += -DSION -CFLAGS += $(SIONLIB_INC) -FFLAGS += $(SIONLIB_INC) -endif - LDFLAGS += $(LIBS) ifdef InNemsMakefile FFLAGS += $(ESMF_INC) CPPFLAGS += -traditional -EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) $(SIONLIB_LIB) +EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) endif diff --git a/conf/configure.fv3.cheyenne.pgi b/conf/configure.fv3.s4.intel similarity index 58% rename from conf/configure.fv3.cheyenne.pgi rename to conf/configure.fv3.s4.intel index 2647009002..dd484161e0 100644 --- a/conf/configure.fv3.cheyenne.pgi +++ b/conf/configure.fv3.s4.intel @@ -1,7 +1,7 @@ ## NEMS configuration file ## -## Platform: Cheyenne -## Compiler: PGI with SGI MPT +## Platform: SSEC Wisconsin S4 +## Compiler: Intel with IntelMPI SHELL=/bin/sh @@ -12,38 +12,13 @@ ifdef InNemsMakefile include $(TOP)/conf/configure.nems.NUOPC endif -###################### PHYS_MODE ##### CHEM_MODE ############################### -# -# -# - -PHYS_MODE =compile -CHEM_MODE =compile -ifeq ($(PHYS_MODE),compile) - PHYS_LIB = $(TOP)/atmos/gsm/gsmphys - PHYS_INC = $(TOP)/atmos/gsm/gsmphys - PHYS_DIR = $(TOP)/atmos/gsm/gsmphys -endif -ifeq ($(CHEM_MODE),compile) - CHEM_LIB = $(TOP)/chem - CHEM_INC = $(TOP)/chem/gocart/src/Config/ - CHEM_DIR = $(TOP)/chem - CHEM_MOD = $(TOP)/chem/gocart/${ARCH}/include - ESMADIR = chem/gocart -endif - ############ # commands # ############ -CPP = mpicc -E -SFC = pgfortran -SCC = pgcc -CCOMP = pgcc -DM_FC = mpif90 -f90=$(SFC) -DM_CC = mpicc -cc=$(SCC) -DMPI2_SUPPORT -FC = $(DM_FC) -CC = $(DM_CC) -DFSEEKO64_OK -LD = $(FC) +FC = mpiifort +CC = mpiicc +CXX = mpiicpc +LD = mpiifort -mkl=sequential ######### # flags # @@ -53,10 +28,10 @@ DEBUG = REPRO = VERBOSE = OPENMP = Y -AVX2 = Y +AVX2 = N HYDRO = N CCPP = N -STATIC = N +INLINE_POST=N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -73,25 +48,33 @@ ifneq ($(need),$(ok)) $(error Need at least make version $(need). Load module gmake/3.81) endif -NETCDF_ROOT = $(NETCDF) -INCLUDE = -I$(NETCDF_ROOT)/include $(NEMSIOINC) +NETCDF_ROOT = $(NETCDF_DIR) +NETCDF = $(NETCDF_DIR) +INCLUDE = -I$(NETCDF_ROOT)/include NETCDF_INC = -I$(NETCDF_ROOT)/include ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf else - NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf + NETCDF_LIB = -L$(NETCDF)/lib -lnetcdff -lnetcdf endif -FPPFLAGS := -Mpreprocess $(INCLUDE) +FPPFLAGS := -fpp -Wp,-w $(INCLUDE) CFLAGS := $(INCLUDE) -FFLAGS := $(INCLUDE) -Mcray=pointer -Kieee -byteswapio +FFLAGS := $(INCLUDE) -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte + +CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP +CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -CPPDEFS += -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -CPPDEFS += -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_INLINE_POST +ifeq ($(INLINE_POST),Y) +CPPDEFS += +NCEPLIBS = $(POST_LIB) $(NEMSIO_LIB) $(G2_LIB4) $(G2TMPL_LIB) $(BACIO_LIB4) $(SP_LIBd) $(W3EMC_LIBd) $(W3NCO_LIBd) $(CRTM_LIB) $(PNG_LIB) $(JASPER_LIB) $(Z_LIB) +else +CPPDEFS += -DNO_INLINE_POST +endif ifeq ($(HYDRO),Y) -CPPDEFS += +CPPDEFS += else CPPDEFS += -DMOIST_CAPPA -DUSE_COND endif @@ -102,45 +85,54 @@ endif ifeq ($(32BIT),Y) CPPDEFS += -DOVERLOAD_R4 -DOVERLOAD_R8 -FFLAGS += -i4 -r4 +FFLAGS += -i4 -real-size 32 else -FFLAGS += -i4 -r8 -Mfprelaxed=div -Mfprelaxed=sqrt +ifeq ($(REPRO),Y) +FFLAGS += -i4 -real-size 64 +else +FFLAGS += -i4 -real-size 64 -no-prec-div -no-prec-sqrt +endif endif +ifeq ($(REPRO),Y) +FFLAGS += -qno-opt-dynamic-align +CFLAGS += -qno-opt-dynamic-align +else ifeq ($(AVX2),Y) -FFLAGS += -tp=haswell -CFLAGS += -tp=haswell +FFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align +CFLAGS += -xCORE-AVX2 -qno-opt-dynamic-align else -FFLAGS += -tp=x64 -CFLAGS += -tp=x64 +FFLAGS += -xHOST -qno-opt-dynamic-align +CFLAGS += -xHOST -qno-opt-dynamic-align +endif endif ifeq ($(MULTI_GASES),Y) CPPDEFS += -DMULTI_GASES endif -FFLAGS_OPT = -O1 -FFLAGS_REPRO = -O1 -g -traceback -FFLAGS_DEBUG = -g -O0 -Ktrap=fp -Mbounds -traceback +FFLAGS_OPT = -O2 -debug minimal -fp-model strict -qoverride-limits -qopt-prefetch=3 -g -traceback +FFLAGS_REPRO = -O2 -debug minimal -fp-model strict -qoverride-limits -g -traceback +FFLAGS_DEBUG = -g -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -TRANSCENDENTALS := -FFLAGS_OPENMP = -mp -FFLAGS_VERBOSE = -v -V +TRANSCENDENTALS := -fast-transcendentals +FFLAGS_OPENMP = -qopenmp +FFLAGS_VERBOSE = -v -V -what -CFLAGS += -D__IFC +CFLAGS += -D__IFC -sox -fp-model strict -CFLAGS_OPT = -O2 -CFLAGS_REPRO = -O2 -CFLAGS_OPENMP = -mp -CFLAGS_DEBUG = -O0 -g -traceback +CFLAGS_OPT = -O2 -debug minimal +CFLAGS_REPRO = -O2 -debug minimal +CFLAGS_OPENMP = -qopenmp +CFLAGS_DEBUG = -O0 -g -ftrapuv -traceback # Optional Testing compile flags. Mutually exclusive from DEBUG, REPRO, and OPT # *_TEST will match the production if no new option(s) is(are) to be tested. -FFLAGS_TEST = -O3 +FFLAGS_TEST = -O2 -debug minimal -fp-model strict -qoverride-limits CFLAGS_TEST = -O2 LDFLAGS := -LDFLAGS_OPENMP := -mp +LDFLAGS_OPENMP := -qopenmp LDFLAGS_VERBOSE := -Wl,-V,--verbose,-cref,-M # start with blank LIBS @@ -183,17 +175,13 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif LDFLAGS += $(LIBS) ifdef InNemsMakefile FFLAGS += $(ESMF_INC) +CPPFLAGS += -traditional EXTLIBS = $(NCEPLIBS) $(ESMF_LIB) $(LDFLAGS) $(NETCDF_LIB) endif diff --git a/conf/configure.fv3.stampede.intel b/conf/configure.fv3.stampede.intel index db3cc0976f..772bc4ea6a 100644 --- a/conf/configure.fv3.stampede.intel +++ b/conf/configure.fv3.stampede.intel @@ -51,7 +51,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -72,9 +71,9 @@ NETCDF_ROOT = $(NETCDF) INCLUDE = -I$(NETCDF_ROOT)/include NETCDF_INC = -I$(NETCDF_ROOT)/include ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) - NETCDF_LIB += -L$(NETCDF_ROOT)/lib -lnetcdff -lnetcdf + NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf else - NETCDF_LIB += -L$(NETCDF_ROOT)/lib -lnetcdff -lnetcdf + NETCDF_LIB += -L$(NETCDF)/lib -lnetcdff -lnetcdf endif FPPFLAGS := -fpp -Wp,-w $(INCLUDE) @@ -187,12 +186,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif LDFLAGS += $(LIBS) diff --git a/conf/configure.fv3.wcoss_cray b/conf/configure.fv3.wcoss_cray index ace33612b3..107ae7ab77 100644 --- a/conf/configure.fv3.wcoss_cray +++ b/conf/configure.fv3.wcoss_cray @@ -21,7 +21,6 @@ OPENMP = Y AVX2 = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -84,7 +83,7 @@ CPPDEFS += -DMULTI_GASES endif FFLAGS_OPT = -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -FFLAGS_REPRO = -O2 -debug minimal -fp-model strict -qoverride-limits -g -traceback +FFLAGS_REPRO = -O2 -debug minimal -fp-model consistent -qoverride-limits -g -traceback FFLAGS_DEBUG = -g -O0 -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv TRANSCENDENTALS := -fast-transcendentals @@ -149,12 +148,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifneq ($(findstring netcdf/4,$(LOADEDMODULES)),) diff --git a/conf/configure.fv3.wcoss_dell_p3 b/conf/configure.fv3.wcoss_dell_p3 index 806fdd6a4f..3838c91b99 100644 --- a/conf/configure.fv3.wcoss_dell_p3 +++ b/conf/configure.fv3.wcoss_dell_p3 @@ -19,7 +19,6 @@ VERBOSE = OPENMP = Y HYDRO = N CCPP = N -STATIC = N include $(ESMFMKFILE) ESMF_INC = $(ESMF_F90COMPILEPATHS) @@ -141,12 +140,7 @@ ifeq ($(CCPP),Y) CPPDEFS += -DCCPP CFLAGS += -I$(PATH_CCPP)/include FFLAGS += -I$(PATH_CCPP)/include -ifeq ($(STATIC),Y) -CPPDEFS += -DSTATIC LDFLAGS += -L$(PATH_CCPP)/lib -lccppphys -lccpp $(NCEPLIBS) -lxml2 -else -LDFLAGS += -L$(PATH_CCPP)/lib -lccpp -endif endif ifneq ($(findstring NetCDF/4,$(LOADEDMODULES)),) diff --git a/doc/README_CENTOS.txt b/doc/README_CENTOS.txt deleted file mode 100644 index d819ac4c79..0000000000 --- a/doc/README_CENTOS.txt +++ /dev/null @@ -1,235 +0,0 @@ -# Dom Heinzeller (dom.heinzeller@noaa.gov), 08/21/2019 - -In order to build and run the FV3 trunk (August 2019) with possible CCPP extensions by GMTB on CentOS Linux, -the following installation steps are recommended. The version numbers correspond to the default versions in -August 2019 and will change to newer versions in the future. Unless problems occur during the manual builds in -step 4, these differences can be ignored. It is also assumed that the bash shell is used in the following. - -1. Install CentOS 7 (minimal install or more) or start up cloud instance (e.g. Amazon AWS) with Centos 7 - -2. Install standard packages as root (su) - - yum update - yum install -y net-tools - yum install -y gcc-gfortran - yum install -y gcc-c++ - yum install -y screen - yum install -y wget - yum install -y cmake - yum install -y bzip2 - yum install -y texinfo - yum install -y autogen - yum install -y dejagnu - yum install -y byacc - yum install -y curl-devel - yum install -y m4 - yum install -y git - yum install -y libxml2-devel - -3. Install thirdparty libraries - - mkdir -p /usr/local/src && cd /usr/local/src - - # gcc-8.3.0 - wget http://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-8.3.0/gcc-8.3.0.tar.gz - tar -xvf gcc-8.3.0.tar.gz - cd gcc-8.3.0 - ./contrib/download_prerequisites # if this hangs, need to change the ftp URLs to https URLs in the script (behind firewall?) - ./configure \ - --disable-multilib \ - --enable-languages=c,c++,fortran \ - --prefix=/usr/local 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr gcc-8.3.0 - - export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH" - - # mpich-3.3.1 - wget http://www.mpich.org/static/downloads/3.3.1/mpich-3.3.1.tar.gz - tar -xvzf mpich-3.3.1.tar.gz - cd mpich-3.3.1 - ./configure \ - --prefix=/usr/local 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr mpich-3.3.1 - - # netcdf-4.7.0 - wget https://www.zlib.net/zlib-1.2.11.tar.gz - wget https://support.hdfgroup.org/ftp/lib-external/szip/2.1.1/src/szip-2.1.1.tar.gz - # go to https://www.hdfgroup.org/downloads/hdf5/source-code/ and download hdf5-1.10.5.tar.bz2 - wget https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-c-4.7.0.tar.gz - wget https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-fortran-4.4.5.tar.gz - # - tar -xvzf zlib-1.2.11.tar.gz - cd zlib-1.2.11 - ./configure \ - --prefix=/usr/local \ - --static 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - make distclean 2>&1 | tee log.distclean - ./configure \ - --prefix=/usr/local 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr zlib-1.2.11 - # - tar -xvzf szip-2.1.1.tar.gz - cd szip-2.1.1 - ./configure \ - --prefix=/usr/local 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr szip-2.1.1 - # - tar -xvjf hdf5-1.10.5.tar.bz2 - cd hdf5-1.10.5 - CC=mpicc \ - CXX=mpicxx \ - FC=mpif90 \ - ./configure \ - --prefix=/usr/local \ - --enable-parallel \ - --with-zlib=/usr/local \ - --with-szlib=/usr/local 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr hdf5-1.10.5 - # - tar -xvzf netcdf-c-4.7.0.tar.gz - cd netcdf-c-4.7.0 - CC=mpicc \ - CXX=mpicxx \ - FC=mpif90 \ - ./configure \ - --prefix=/usr/local \ - --enable-parallel-tests 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - cd .. - rm -fr netcdf-c-4.7.0 - # - tar -xvzf netcdf-fortran-4.4.5.tar.gz - cd netcdf-fortran-4.4.5 - CC=mpicc \ - CXX=mpicxx \ - FC=mpif90 \ - ./configure \ - --prefix=/usr/local \ - --enable-parallel-tests 2>&1 | tee log.config - make 2>&1 | tee log.make - make install 2>&1 | tee log.install - # - export NETCDF=/usr/local - - # NCEP libraries - git clone https://github.com/NCAR/NCEPlibs.git - mv NCEPlibs NCEPlibs-20190820 - cd NCEPlibs-20190820 - mkdir /usr/local/NCEPlibs-20190820 - ./make_ncep_libs.sh -s linux -c gnu -d /usr/local/NCEPlibs-20190820 -o 1 - cd .. - rm -fr NCEPlibs-20190820 - - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - - # Download ESMF_8_0_0_beta_snapshot_50 from https://sourceforge.net/p/esmf/esmf/ref/master/tags/ - # to /home/ubuntu/src (creates a directory esmf-esmf-...), rename it to esmf-8.0.0_bs50 and tar it - # up for later use - cd /usr/local/src - mv esmf-esmf-... esmf-8.0.0_bs50 - tar -cvzf esmf-8.0.0_bs50.tar.gz esmf-8.0.0_bs50 - # - # Install esmf-8.0.0_bs50 - tar -xvzf esmf-8.0.0_bs50.tar.gz - cd esmf-8.0.0_bs50 - export ESMF_DIR=`pwd` - export ESMF_INSTALL_PREFIX=/usr/local/esmf-8.0.0_bs50 - export ESMF_CXXCOMPILER=mpicxx - export ESMF_CXXLINKER=mpicxx - export ESMF_F90COMPILER=mpif90 - export ESMF_F90LINKER=mpif90 - export ESMF_COMM=mpich3 - export ESMF_MPIRUN=mpiexec - export ESMF_NETCDF=nc-config - export ESMF_INSTALL_BINDIR=bin - export ESMF_INSTALL_LIBDIR=lib - export ESMF_INSTALL_MODDIR=mod - make info 2>&1 | tee log.info - make 2>&1 | tee log.make - # "make check" is optional and can take very long time - make check 2>&1 | tee log.check - # SYSTEM TESTS SUMMARY - # Found 45 multi-processor system tests, 44 passed and 1 failed. - # UNIT TESTS SUMMARY - # Found 3466 non-exhaustive multi-processor unit tests, 3466 passed and 0 failed. - # --> ignore and proceed - make install 2>&1 | tee log.install - make installcheck 2>&1 | tee log.installcheck - cd .. - rm -fr esmf-8.0.0_bs50 - export -n ESMF_DIR - export -n ESMF_INSTALL_PREFIX - export -n ESMF_CXXCOMPILER - export -n ESMF_CXXLINKER - export -n ESMF_F90COMPILER - export -n ESMF_F90LINKER - export -n ESMF_COMM - export -n ESMF_MPIRUN - export -n ESMF_NETCDF - export -n ESMF_INSTALL_BINDIR - export -n ESMF_INSTALL_LIBDIR - export -n ESMF_INSTALL_MODDIR - - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - -4. Compile NEMSfv3gfs as normal user - - mkdir ~/scratch - - # clone this branch of NEMSfv3gfs to ~/scratch/NEMSfv3gfs - - cd ~/scratch/NEMSfv3gfs/tests - - export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH" - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - export NETCDF=/usr/local - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - export CC=mpicc - export CXX=mpicxx - export F77=mpif77 - export F90=mpif90 - export FC=mpif90 - - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=N' 2>&1 | tee log.compile # without CCPP - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=Y' 2>&1 | tee log.compile # with CCPP, dynamic mode - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' 2>&1 | tee log.compile # with CCPP, static mode, GFS suite - -5. Set up the run directory using the template on Theia or Cheyenne at some location on your machine: - - a) copy the contents of the run directory templates to where you want to run the model, change to this directory - (these folders are read-only, i.e. users might have to add the write-flag after copying/rsyncing them) - - theia: /scratch4/BMC/gmtb/Dom.Heinzeller/rundirs/20190811/linux/fv3_gfdlmp/ - cheyenne: /glade/p/ral/jntp/GMTB/NEMSfv3gfs/rundirs/20190811/linux/fv3_gfdlmp/ - - b) edit run_linux.sh, set variables and change the variable FV3_BUILD_DIR to the top-level directory of your FV3-build - - c) set the environment variables as above (consider creating a shell script to source?) and run the model - - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - export NETCDF=/usr/local - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - - ./run_linux.sh 2>&1 | tee run_linux.log - # or, with N OpenMP threads (use N=1 for the dynamic CCPP build) - OMP_NUM_THREADS=N ./run_linux.sh 2>&1 | tee run_linux.log - - d) go and get yourself a cup of coffee ... diff --git a/doc/README_CHEYENNE.txt b/doc/README_CHEYENNE.txt deleted file mode 100644 index 333825d281..0000000000 --- a/doc/README_CHEYENNE.txt +++ /dev/null @@ -1,67 +0,0 @@ -################################################################################ -# Cheyenne/Intel -################################################################################ - -# OFFICIAL BASELINE -# /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20190912/INTEL - -# OWN BASELINE -# /glade/scratch/$USER/FV3_RT/REGRESSION_TEST_INTEL - -# RUN DIRS -# /glade/scratch/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=intel # optional, default is intel if not set -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 cheyenne.intel 2>&1 | tee log.compile - -# Regression tests against official baseline -./rt.sh -f 2>&1 | tee rt.log - -# Create new baseline -./rt.sh -f -c 2>&1 | tee rt_create.log - -# Regression tests against new baseline -./rt.sh -f -m 2>&1 | tee rt_verify.log - -################################################################################ -# Cheyenne/GNU -################################################################################ - -# OFFICIAL BASELINE -# /glade/p/ral/jntp/GMTB/NEMSfv3gfs/RT/trunk-20190912/GNU - -# OWN BASELINE -# /glade/scratch/$USER/FV3_RT/REGRESSION_TEST_GNU - -# RUN DIRS -# /glade/scratch/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=gnu -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 cheyenne.gnu 2>&1 | tee log.compile - -# Regression tests against official baseline -./rt.sh -l rt_gnu.conf 2>&1 | tee rt_gnu.log - -# Create new baseline -./rt.sh -l rt_gnu.conf -c 2>&1 | tee rt_gnu_create.log - -# Regression tests against new baseline -./rt.sh -l rt_gnu.conf -m 2>&1 | tee rt_gnu_verify.log - -################################################################################ -# Cheyenne/PGI -################################################################################ - -no longer supported diff --git a/doc/README_HERA.txt b/doc/README_HERA.txt deleted file mode 100644 index bf42209187..0000000000 --- a/doc/README_HERA.txt +++ /dev/null @@ -1,80 +0,0 @@ -################################################################################ -# Hera/Intel -################################################################################ - -# OFFICIAL BASELINE -# /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/trunk-20190824 - -# OWN BASELINE -# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT - -# RUN DIRS - substitute $USER with your username -# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=intel # optional, default is intel if not set -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 hera.intel 2>&1 | tee log.compile - -# Regression tests against official baseline -./rt.sh -f 2>&1 | tee rt_full.log - -################################################################################ -# Hera/GNU -################################################################################ - -# OFFICIAL BASELINE -# N/A - -# OWN BASELINE -# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_GNU - -# RUN DIRS -# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=gnu -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 hera.gnu 2>&1 | tee log.compile - -# Create new baseline -./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log - -# Regression tests against new baseline -./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log - -################################################################################ -# Hera/PGI -################################################################################ - -# OFFICIAL BASELINE -# N/A - -# OWN BASELINE -# /scratch1/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_PGI - -# RUN DIRS -# /scratch1/NCEPDEV/stmp2/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=pgi -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 hera.pgi 2>&1 | tee log.compile - -# Create new baseline -./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log - -# Regression tests against new baseline -./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log diff --git a/doc/README_MACOSX_clanggfortran.txt b/doc/README_MACOSX_clanggfortran.txt deleted file mode 100644 index b6effc1b6d..0000000000 --- a/doc/README_MACOSX_clanggfortran.txt +++ /dev/null @@ -1,229 +0,0 @@ -# Dom Heinzeller (dom.heinzeller@noaa.gov), 08/12/2019 - -Target systems: macOS High Sierra / macOS Mojave with LLVM clang + GNU gfortran compilers and mpich MPI library. - -In order to build and run the FV3 trunk (August 2019) with possible CCPP extensions by GMTB on macOS, -the following installation steps are recommended. The version numbers for the "brew" correspond to the default versions -in August 2019 and will change to newer versions in the future. Unless problems occur during the manual builds in -steps 6-11, these differences can be ignored. It is also assumed that the bash shell is used in the following. - -1. Install homebrew (enter sudo password when requested) - /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" - -2. Create /usr/local/src, /usr/local/esmf-8.0.0_bs50 and /usr/local/NCEPlibs-20190811. Change permissions to your user name / user group - - # change to root mode - sudo su - # /usr/local/src - mkdir /usr/local/src - chown YOUR_USERNAME /usr/local/src - chgrp YOUR_GROUPNAME /usr/local/src - # /usr/local/esmf-8.0.0_bs50 - mkdir /usr/local/esmf-8.0.0_bs50 - chown YOUR_USERNAME /usr/local/esmf-8.0.0_bs50 - chgrp YOUR_GROUPNAME /usr/local/esmf-8.0.0_bs50 - # /usr/local/NCEPlibs-20190811 - mkdir /usr/local/NCEPlibs-20190811 - chown YOUR_USERNAME /usr/local/NCEPlibs-20190811 - chgrp YOUR_GROUPNAME /usr/local/NCEPlibs-20190811 - # leave root mode - exit - -3. Use homebrew to install the following packages - - a) Install gcc-9.1.0, gfortran-9.1.0 - brew install gcc@9 - - b) Install clang-8.0.1 with openmp support - brew install llvm - - c) Install mpich-3.3.1 - brew install mpich - - d) Install netcdf-4.6.3 - brew install netcdf - - e) Install libpng-1.6.37 - brew install libpng - - f) Install udunits-2.2.27 - brew install udunits - - g) Install cmake-3.15.2 - brew install cmake - - h) Install xquartz-2.7.11 (optional, only needed for ncview) - brew cask install xquartz - - i) Install ncview-2.1.7 (optional) - brew install ncview - -4. Create a shell setup script ~/setenv_develop_nemsfv3gfs.sh to set the required paths for compiling NEMSfv3gfs. Contents: - -#################################################################################### -#!/bin/bash - -echo "Setting environment variables for develop-NEMSfv3gfs" - -export PATH="/usr/local/opt/llvm/bin:$PATH" -export CPPFLAGS="-I/usr/local/opt/llvm/include" -export LDFLAGS="-L/usr/local/opt/llvm/lib -Wl,-rpath,/usr/local/opt/llvm/lib" -export LIBS_OPENMP="-L/usr/local/opt/llvm/lib -lomp" - -export CC=/usr/local/opt/llvm/bin/clang -export CXX=/usr/local/opt/llvm/bin/clang++ -export FC=/usr/local/bin/gfortran -export F90=/usr/local/bin/gfortran -export F77=/usr/local/bin/gfortran - -export MPICC="mpicc -cc=${CC}" -export MPICXX="mpicxx -cxx=${CXX}" -export MPIFORT=/usr/local/bin/mpifort -export MPIF77=/usr/local/bin/mpif77 -export MPIF90=/usr/local/bin/mpif90 - -export HDF5=/usr/local -export NETCDF=/usr/local -export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk -export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190811 -export MKL_DIR=/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl - -#################################################################################### - -5. Source this shell script for compiling the libraries and the model below - . ~/setenv_develop_nemsfv3gfs.sh - -6. Install ESMF 8.0.0_bs50 - - # Download ESMF_8_0_0_beta_snapshot_50 from https://sourceforge.net/p/esmf/esmf/ref/master/tags/ - # to /usr/local/src (creates a directory esmf-esmf-...), rename it to esmf-8.0.0_bs50 and tar it - # up for later use - cd /usr/local/src - mv esmf-esmf-... esmf-8.0.0_bs50 - tar -cvzf esmf-8.0.0_bs50.tar.gz esmf-8.0.0_bs50 - - # Compile and install ESMF - cd esmf-8.0.0_bs50 - export ESMF_DIR=`pwd` - export ESMF_COMPILER=gfortranclang - export ESMF_CXXCOMPILER=$MPICXX - export ESMF_CXXLINKER=$MPICXX - export ESMF_F90COMPILER=$MPIF90 - export ESMF_F90LINKER=$MPIF90 - export ESMF_BOPT=O - export ESMF_OPTLEVEL=2 - export ESMF_COMM=mpich - export ESMF_MPIRUN=mpirun - export ESMF_NETCDF=1 - export ESMF_NETCDF_INCLUDE=$NETCDF/include - export ESMF_NETCDF_LIBPATH=$NETCDF/lib - export ESMF_NETCDF_LIBS="-lnetcdff -lnetcdf -lmpichf90" - export ESMF_NETCDF=split - export ESMF_INSTALL_PREFIX=/usr/local/esmf-8.0.0_bs50 - export ESMF_INSTALL_BINDIR=bin - export ESMF_INSTALL_LIBDIR=lib - export ESMF_INSTALL_MODDIR=mod - # - make info 2>&1 | tee log.info - make 2>&1 | tee log.make - # "make check" is optional and can take very long time - make check 2>&1 | tee log.check - # SYSTEM TESTS SUMMARY - # Found 45 multi-processor system tests, 38 passed and 7 failed. - # UNIT TESTS SUMMARY - # Found 3466 non-exhaustive multi-processor unit tests, 3394 passed and 72 failed. - # --> ignore and proceed - make install 2>&1 | tee log.install - make installcheck 2>&1 | tee log.installcheck - # - cd $ESMF_INSTALL_PREFIX - # - # Fix wrong path to libesmf.dylib in ESMF binaries - this will hopefully be addressed in future ESMF releases - # - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Info - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_InfoC - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_WebServController - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Regrid - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_RegridWeightGen - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortranclang.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Scrip2Unstruct - # - # Fix wrong ID in libesmf.dylib - this will hopefully be addressed in future ESMF releases - # - install_name_tool -id $ESMF_INSTALL_PREFIX/lib/libesmf.dylib lib/libesmf.dylib - install_name_tool -id $ESMF_INSTALL_PREFIX/lib/libesmf_fullylinked.dylib lib/libesmf_fullylinked.dylib - # - # Clean up - cd /usr/local/src - rm -fr esmf-8.0.0_bs50 - export -n ESMF_DIR - export -n ESMF_COMPILER - export -n ESMF_CXXCOMPILER - export -n ESMF_CXXLINKER - export -n ESMF_F90COMPILER - export -n ESMF_F90LINKER - export -n ESMF_BOPT - export -n ESMF_OPTLEVEL - export -n ESMF_COMM - export -n ESMF_MPIRUN - export -n ESMF_NETCDF - export -n ESMF_NETCDF_INCLUDE - export -n ESMF_NETCDF_LIBPATH - export -n ESMF_NETCDF_LIBS - export -n ESMF_NETCDF - export -n ESMF_INSTALL_PREFIX - export -n ESMF_INSTALL_BINDIR - export -n ESMF_INSTALL_LIBDIR - export -n ESMF_INSTALL_MODDIR - -7. Build external NCEP libraries (use date tag 20190811 to allow for different versions in the future) - - # Obtain source code from gitub and build in /usr/local/src - cd /usr/local/src - git clone https://github.com/NCAR/NCEPlibs.git NCEPlibs-20190811 - cd NCEPlibs-20190811 - # Requires exporting CC, F90, MPIF90 (done by setenv_develop_nemsfv3gfs.sh) - ./make_ncep_libs.sh -s macosx -c gnu -d /usr/local/NCEPlibs-20190811 -o 1 2>&1 | tee log.make - -8. Download and install Intel Math Kernel Library MKL (full package) from https://software.intel.com/en-us/mkl - to /opt/intel (default location) using the installer script (requires sudo/root access) - -9. Pro-tip (optional): have your computer remember your GitHub username and password. - See https://help.github.com/en/articles/caching-your-github-password-in-git. - - git config --global credential.helper osxkeychain - -10. Download the model from GitHub: - cd $HOME - mkdir NEMSfv3gfs - cd NEMSfv3gfs - git clone --branch=gmtb/develop https://github.com/NCAR/NEMSfv3gfs NEMSfv3gfs-gmtb-develop-20190811 - cd NEMSfv3gfs-gmtb-develop-20190811 - git submodule init - git submodule update - -11. Build model. Change to top-level directory of NEMSfv3gfs-gmtb-develop-20190811 - - . ~/setenv_develop_nemsfv3gfs.sh - cd tests - # Note: omit '32BIT=Y' to compile dynamics in double precision (slower to run) - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=N' 2>&1 | tee log.compile # without CCPP - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=Y' 2>&1 | tee log.compile # with CCPP, dynamic mode - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' 2>&1 | tee log.compile # with CCPP, static mode, GFS suite - -12. Set up the run directory using the template on Theia or Cheyenne at some location on your machine: - - a) copy the contents of the run directory templates to where you want to run the model, change to this directory - (these folders are read-only, i.e. users might have to add the write-flag after copying/rsyncing them) - - theia: /scratch4/BMC/gmtb/Dom.Heinzeller/rundirs/20190811/macosx/fv3_gfdlmp/ - cheyenne: /glade/p/ral/jntp/GMTB/NEMSfv3gfs/rundirs/20190811/macosx/fv3_gfdlmp/ - - b) edit run_macosx.sh, set variables and change the variable FV3_BUILD_DIR to the top-level directory of your FV3-build - - c) source ~/setenv_develop_nemsfv3gfs.sh and execute the model run using the wrapper run_macosx.sh - . ~/setenv_develop_nemsfv3gfs.sh - ./run_macosx.sh 2>&1 | tee run_macosx.log - # or, with N OpenMP threads (use N=1 for the dynamic CCPP build) - OMP_NUM_THREADS=N ./run_macosx.sh 2>&1 | tee run_macosx.log - - d) go and get yourself a cup of coffee ... diff --git a/doc/README_MACOSX_gccgfortran.txt b/doc/README_MACOSX_gccgfortran.txt deleted file mode 100644 index 7d7b81e791..0000000000 --- a/doc/README_MACOSX_gccgfortran.txt +++ /dev/null @@ -1,221 +0,0 @@ -# Dom Heinzeller (dom.heinzeller@noaa.gov), 08/12/2019 - -Target systems: macOS High Sierra / macOS Mojave with GNU gcc+gfortran compilers and mpich MPI library. - -In order to build and run the FV3 trunk (August 2019) with possible CCPP extensions by GMTB on macOS, -the following installation steps are recommended. The version numbers for the "brew" correspond to the default versions -in August 2019 and will change to newer versions in the future. Unless problems occur during the manual builds in -steps 6-11, these differences can be ignored. It is also assumed that the bash shell is used in the following. - -1. Install homebrew (enter sudo password when requested) - /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" - -2. Create /usr/local/src, /usr/local/esmf-8.0.0_bs50 and /usr/local/NCEPlibs-20190811. Change permissions to your user name / user group - - # change to root mode - sudo su - # /usr/local/src - mkdir /usr/local/src - chown YOUR_USERNAME /usr/local/src - chgrp YOUR_GROUPNAME /usr/local/src - # /usr/local/esmf-8.0.0_bs50 - mkdir /usr/local/esmf-8.0.0_bs50 - chown YOUR_USERNAME /usr/local/esmf-8.0.0_bs50 - chgrp YOUR_GROUPNAME /usr/local/esmf-8.0.0_bs50 - # /usr/local/NCEPlibs-20190811 - mkdir /usr/local/NCEPlibs-20190811 - chown YOUR_USERNAME /usr/local/NCEPlibs-20190811 - chgrp YOUR_GROUPNAME /usr/local/NCEPlibs-20190811 - # leave root mode - exit - -3. Use homebrew to install the following packages - - a) Install gcc-8.3.0, gfortran-8.3.0 - brew install gcc@8 - - b) Install mpich-3.3.1 - brew install mpich - - c) Install netcdf-4.6.3 - brew install netcdf - - d) Install libpng-1.6.37 - brew install libpng - - e) Install udunits-2.2.27 - brew install udunits - - f) Install cmake-3.15.2 - brew install cmake - - g) Install xquartz-2.7.11 (optional, only needed for ncview) - brew cask install xquartz - - h) Install ncview-2.1.7 (optional) - brew install ncview - -4. Create a shell setup script ~/setenv_develop_nemsfv3gfs.sh to set the required paths for compiling NEMSfv3gfs. Contents: - -#################################################################################### -#!/bin/bash - -echo "Setting environment variables for develop-NEMSfv3gfs" - -export CC=gcc-8 -export CXX=g++-8 -export FC=gfortran-8 -export F90=gfortran-8 -export F77=gfortran-8 - -export MPICC="mpicc -cc=$CC" -export MPICXX="mpicxx -cxx=$CXX" -export MPIFORT="mpifort -fc=$FC" -export MPIF77="mpif77 -fc=$F77" -export MPIF90="mpif90 -fc=$F90" - -export HDF5=/usr/local -export NETCDF=/usr/local -export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk -export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190811 -export MKL_DIR=/opt/intel/compilers_and_libraries_2019.4.233/mac/mkl - -#################################################################################### - -5. Source this shell script for compiling the libraries and the model below - . ~/setenv_develop_nemsfv3gfs.sh - -6. Install ESMF 8.0.0_bs50 - - # Download ESMF_8_0_0_beta_snapshot_50 from https://sourceforge.net/p/esmf/esmf/ref/master/tags/ - # to /usr/local/src (creates a directory esmf-esmf-...), rename it to esmf-8.0.0_bs50 and tar it - # up for later use - cd /usr/local/src - mv esmf-esmf-... esmf-8.0.0_bs50 - tar -cvzf esmf-8.0.0_bs50.tar.gz esmf-8.0.0_bs50 - - # Compile and install ESMF - cd esmf-8.0.0_bs50 - export ESMF_DIR=`pwd` - export ESMF_COMPILER=gfortran - export ESMF_CXXCOMPILER=$MPICXX - export ESMF_CXXLINKER=$MPICXX - export ESMF_F90COMPILER=$MPIF90 - export ESMF_F90LINKER=$MPIF90 - export ESMF_BOPT=O - export ESMF_OPTLEVEL=2 - export ESMF_COMM=mpich - export ESMF_MPIRUN=mpirun - export ESMF_NETCDF=1 - export ESMF_NETCDF_INCLUDE=$NETCDF/include - export ESMF_NETCDF_LIBPATH=$NETCDF/lib - export ESMF_NETCDF_LIBS="-lnetcdff -lnetcdf -lmpichf90" - export ESMF_NETCDF=split - export ESMF_INSTALL_PREFIX=/usr/local/esmf-8.0.0_bs50 - export ESMF_INSTALL_BINDIR=bin - export ESMF_INSTALL_LIBDIR=lib - export ESMF_INSTALL_MODDIR=mod - # - make info 2>&1 | tee log.info - make 2>&1 | tee log.make - # "make check" is optional and can take very long time - make check 2>&1 | tee log.check - # SYSTEM TESTS SUMMARY - # Found 45 multi-processor system tests, 38 passed and 7 failed. - # UNIT TESTS SUMMARY - # Found 3466 non-exhaustive multi-processor unit tests, 3394 passed and 72 failed. - # --> ignore and proceed - make install 2>&1 | tee log.install - make installcheck 2>&1 | tee log.installcheck - # - cd $ESMF_INSTALL_PREFIX - # - # Fix wrong path to libesmf.dylib in ESMF binaries - this will hopefully be addressed in future ESMF releases - # - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Info - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_InfoC - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_WebServController - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Regrid - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_RegridWeightGen - install_name_tool -change $ESMF_DIR/lib/libO/Darwin.gfortran.64.mpich.default/libesmf.dylib $ESMF_INSTALL_PREFIX/lib/libesmf.dylib bin/ESMF_Scrip2Unstruct - # - # Fix wrong ID in libesmf.dylib - this will hopefully be addressed in future ESMF releases - # - install_name_tool -id $ESMF_INSTALL_PREFIX/lib/libesmf.dylib lib/libesmf.dylib - install_name_tool -id $ESMF_INSTALL_PREFIX/lib/libesmf_fullylinked.dylib lib/libesmf_fullylinked.dylib - # - # Clean up - cd /usr/local/src - rm -fr esmf-8.0.0_bs50 - export -n ESMF_DIR - export -n ESMF_COMPILER - export -n ESMF_CXXCOMPILER - export -n ESMF_CXXLINKER - export -n ESMF_F90COMPILER - export -n ESMF_F90LINKER - export -n ESMF_BOPT - export -n ESMF_OPTLEVEL - export -n ESMF_COMM - export -n ESMF_MPIRUN - export -n ESMF_NETCDF - export -n ESMF_NETCDF_INCLUDE - export -n ESMF_NETCDF_LIBPATH - export -n ESMF_NETCDF_LIBS - export -n ESMF_NETCDF - export -n ESMF_INSTALL_PREFIX - export -n ESMF_INSTALL_BINDIR - export -n ESMF_INSTALL_LIBDIR - export -n ESMF_INSTALL_MODDIR - -7. Build external NCEP libraries (use date tag 20190811 to allow for different versions in the future) - - # Obtain source code from gitub and build in /usr/local/src - cd /usr/local/src - git clone https://github.com/NCAR/NCEPlibs.git NCEPlibs-20190811 - cd NCEPlibs-20190811 - # Requires exporting CC, F90, MPIF90 (done by setenv_develop_nemsfv3gfs.sh) - ./make_ncep_libs.sh -s macosx -c gnu -d /usr/local/NCEPlibs-20190811 -o 1 2>&1 | tee log.make - -8. Download and install Intel Math Kernel Library MKL (full package) from https://software.intel.com/en-us/mkl - to /opt/intel (default location) using the installer script (requires sudo/root access) - -9. Pro-tip (optional): have your computer remember your GitHub username and password. - See https://help.github.com/en/articles/caching-your-github-password-in-git. - - git config --global credential.helper osxkeychain - -10. Download the model from GitHub: - cd $HOME - mkdir NEMSfv3gfs - cd NEMSfv3gfs - git clone --branch=gmtb/develop https://github.com/NCAR/NEMSfv3gfs NEMSfv3gfs-gmtb-develop-20190811 - cd NEMSfv3gfs-gmtb-develop-20190811 - git submodule init - git submodule update - -11. Build model. Change to top-level directory of NEMSfv3gfs-gmtb-develop-20190811 - - . ~/setenv_develop_nemsfv3gfs.sh - cd tests - # Note: omit '32BIT=Y' to compile dynamics in double precision (slower to run) - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=N' 2>&1 | tee log.compile # without CCPP - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=Y' 2>&1 | tee log.compile # with CCPP, dynamic mode - ./compile.sh $PWD/../FV3 macosx.gnu '32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' 2>&1 | tee log.compile # with CCPP, static mode, GFS suite - -12. Set up the run directory using the template on Theia or Cheyenne at some location on your machine: - - a) copy the contents of the run directory templates to where you want to run the model, change to this directory - (these folders are read-only, i.e. users might have to add the write-flag after copying/rsyncing them) - - theia: /scratch4/BMC/gmtb/Dom.Heinzeller/rundirs/20190811/macosx/fv3_gfdlmp/ - cheyenne: /glade/p/ral/jntp/GMTB/NEMSfv3gfs/rundirs/20190811/macosx/fv3_gfdlmp/ - - b) edit run_macosx.sh, set variables and change the variable FV3_BUILD_DIR to the top-level directory of your FV3-build - - c) source ~/setenv_develop_nemsfv3gfs.sh and execute the model run using the wrapper run_macosx.sh - . ~/setenv_develop_nemsfv3gfs.sh - ./run_macosx.sh 2>&1 | tee run_macosx.log - # or, with N OpenMP threads (use N=1 for the dynamic CCPP build) - OMP_NUM_THREADS=N ./run_macosx.sh 2>&1 | tee run_macosx.log - - d) go and get yourself a cup of coffee ... diff --git a/doc/README_THEIA.txt b/doc/README_THEIA.txt deleted file mode 100644 index c58d815a4c..0000000000 --- a/doc/README_THEIA.txt +++ /dev/null @@ -1,80 +0,0 @@ -################################################################################ -# Theia/Intel -################################################################################ - -# OFFICIAL BASELINE -# /scratch4/NCEPDEV/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/trunk-20190315 - -# OWN BASELINE -# /scratch4/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_INTEL - -# RUN DIRS - substitute $USER with your username -# /scratch4/NCEPDEV/stmp3/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=intel # optional, default is intel if not set -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 theia.intel 2>&1 | tee log.compile - -# Regression tests against official baseline -./rt.sh -f 2>&1 | tee rt_full.log - -################################################################################ -# Theia/GNU -################################################################################ - -# OFFICIAL BASELINE -# N/A - -# OWN BASELINE -# /scratch4/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_GNU - -# RUN DIRS -# /scratch4/NCEPDEV/stmp3/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=gnu -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 theia.gnu 2>&1 | tee log.compile - -# Create new baseline -./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log - -# Regression tests against new baseline -./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log - -################################################################################ -# Theia/PGI -################################################################################ - -# OFFICIAL BASELINE -# N/A - -# OWN BASELINE -# /scratch4/NCEPDEV/stmp4/$USER/FV3_RT/REGRESSION_TEST_PGI - -# RUN DIRS -# /scratch4/NCEPDEV/stmp3/$USER/FV3_RT/rt_... - -export NEMS_COMPILER=pgi -export ACCNR=... # set account name/number for job scheduler - -# from the top-level directory of NEMSfv3gfs -cd tests - -# Test standard compile -./compile.sh $PWD/../FV3 theia.pgi 2>&1 | tee log.compile - -# Create new baseline -./rt.sh -f -l rt_gnu_pgi.conf -c fv3 2>&1 | tee rt_create_sub.log - -# Regression tests against new baseline -./rt.sh -f -l rt_gnu_pgi.conf -m 2>&1 | tee rt_sub.log diff --git a/doc/README_UBUNTU.txt b/doc/README_UBUNTU.txt deleted file mode 100644 index 7e4ead9fbf..0000000000 --- a/doc/README_UBUNTU.txt +++ /dev/null @@ -1,135 +0,0 @@ -# Dom Heinzeller (dom.heinzeller@noaa.gov), 08/21/2019 - -In order to build and run the FV3 trunk (August 2019) with possible CCPP extensions by GMTB on Ubuntu Linux, -the following installation steps are recommended. The version numbers correspond to the default versions in -August 2019 and will change to newer versions in the future. Unless problems occur during the manual builds in -step 4, these differences can be ignored. It is also assumed that the bash shell is used in the following. - -1. Install Ubuntu Linux 18.04.1 LTS or start up cloud instance (e.g. Amazon AWS) with Ubuntu Linux 18.04.1 LTS - -2. Install standard packages as root (sudo su) - - apt update - apt install ssh - apt install gfortran libgfortran-7-dev - apt install g++ libstdc++-7-dev - apt install make - apt install cmake - apt install m4 - apt install ksh - apt install git - apt install python - apt install libxml2-dev - apt install libnetcdff-dev - apt install mpich - ln -s /usr/bin/make /usr/bin/gmake - - export NETCDF=/usr - -3. Install thirdparty libraries - - mkdir -p /usr/local/src && cd /usr/local/src - - # NCEP libraries - git clone https://github.com/NCAR/NCEPlibs.git - mv NCEPlibs NCEPlibs-20190820 - cd NCEPlibs-20190820 - mkdir /usr/local/NCEPlibs-20190820 - ./make_ncep_libs.sh -s linux -c gnu -d /usr/local/NCEPlibs-20190820 -o 1 - cd .. - rm -fr NCEPlibs-20190820 - - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - - # Download ESMF_8_0_0_beta_snapshot_50 from https://sourceforge.net/p/esmf/esmf/ref/master/tags/ - # to /home/ubuntu/src (creates a directory esmf-esmf-...), rename it to esmf-8.0.0_bs50 and tar it - # up for later use - cd /usr/local/src - mv esmf-esmf-... esmf-8.0.0_bs50 - tar -cvzf esmf-8.0.0_bs50.tar.gz esmf-8.0.0_bs50 - # - # Install esmf-8.0.0_bs50 - tar -xvzf esmf-8.0.0_bs50.tar.gz - cd esmf-8.0.0_bs50 - export ESMF_DIR=`pwd` - export ESMF_INSTALL_PREFIX=/usr/local/esmf-8.0.0_bs50 - export ESMF_CXXCOMPILER=mpicxx - export ESMF_CXXLINKER=mpicxx - export ESMF_F90COMPILER=mpif90 - export ESMF_F90LINKER=mpif90 - export ESMF_COMM=mpich3 - export ESMF_MPIRUN=mpiexec - export ESMF_NETCDF=nc-config - export ESMF_INSTALL_BINDIR=bin - export ESMF_INSTALL_LIBDIR=lib - export ESMF_INSTALL_MODDIR=mod - make info 2>&1 | tee log.info - make 2>&1 | tee log.make - # "make check" is optional and can take very long time - make check 2>&1 | tee log.check - # SYSTEM TESTS SUMMARY - # Found 45 multi-processor system tests, 45 passed and 0 failed. - # UNIT TESTS SUMMARY - # Found 3466 non-exhaustive multi-processor unit tests, 3464 passed and 2 failed. - # --> ignore and proceed - make install 2>&1 | tee log.install - make installcheck 2>&1 | tee log.installcheck - cd .. - rm -fr esmf-8.0.0_bs50 - export -n ESMF_DIR - export -n ESMF_INSTALL_PREFIX - export -n ESMF_CXXCOMPILER - export -n ESMF_CXXLINKER - export -n ESMF_F90COMPILER - export -n ESMF_F90LINKER - export -n ESMF_COMM - export -n ESMF_MPIRUN - export -n ESMF_NETCDF - export -n ESMF_INSTALL_BINDIR - export -n ESMF_INSTALL_LIBDIR - export -n ESMF_INSTALL_MODDIR - - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - -4. Compile NEMSfv3gfs as normal user - - mkdir ~/scratch - - # clone this branch of NEMSfv3gfs to ~/scratch/NEMSfv3gfs - - cd ~/scratch/NEMSfv3gfs/tests - - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - export NETCDF=/usr - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - export CC=mpicc - export CXX=mpicxx - export F77=mpif77 - export F90=mpif90 - export FC=mpif90 - - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=N' 2>&1 | tee log.compile # without CCPP - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=Y' 2>&1 | tee log.compile # with CCPP, dynamic mode - ./compile.sh $PWD/../FV3 linux.gnu 'CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp' 2>&1 | tee log.compile # with CCPP, static mode, GFS suite - -5. Set up the run directory using the template on Theia or Cheyenne at some location on your machine: - - a) copy the contents of the run directory templates to where you want to run the model, change to this directory - (these folders are read-only, i.e. users might have to add the write-flag after copying/rsyncing them) - - theia: /scratch4/BMC/gmtb/Dom.Heinzeller/rundirs/20190811/linux/fv3_gfdlmp/ - cheyenne: /glade/p/ral/jntp/GMTB/NEMSfv3gfs/rundirs/20190811/linux/fv3_gfdlmp/ - - b) edit run_linux.sh, set variables and change the variable FV3_BUILD_DIR to the top-level directory of your FV3-build - - c) set the environment variables as above (consider creating a shell script to source?) and run the model - - export NCEPLIBS_DIR=/usr/local/NCEPlibs-20190820 - export NETCDF=/usr - export ESMFMKFILE=/usr/local/esmf-8.0.0_bs50/lib/esmf.mk - - ./run_linux.sh 2>&1 | tee run_linux.log - # or, with N OpenMP threads (use N=1 for the dynamic CCPP build) - OMP_NUM_THREADS=N ./run_linux.sh 2>&1 | tee run_linux.log - - d) go and get yourself a cup of coffee ... diff --git a/log/report-hera.intel-log/build_fv3.exe.log b/log/report-hera.intel-log/build_fv3.exe.log index f558dd9b72..a95521d4f3 100644 --- a/log/report-hera.intel-log/build_fv3.exe.log +++ b/log/report-hera.intel-log/build_fv3.exe.log @@ -1,26 +1,25 @@ + [[ fv3.exe == fv3_ww3.exe ]] + [[ fv3.exe == fv3.exe ]] -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe -+ modules=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3 ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe ++ modules=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3 + BUILD_NR= -+ fv3=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe ++ fv3=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe + MAKE_OPTS=' ' -+ md5=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe.md5 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3 ++ md5=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe.md5 ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/ ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3 + which aprun -which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) +which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/slurm/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin) + [[ hera.intel == hera* ]] + echo 'DON'\''T SUBSTITUTE _ for . on hera.intel' DON'T SUBSTITUTE _ for . on hera.intel -+ ./compile.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 hera.intel ++ ./compile.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 hera.intel + SECONDS=0 + [[ 2 -lt 2 ]] -+ readonly PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ++ PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 + readonly BUILD_TARGET=hera.intel + BUILD_TARGET=hera.intel -+ readonly MAKE_OPT= + MAKE_OPT= + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -29,7 +28,7 @@ DON'T SUBSTITUTE _ for . on hera.intel + readonly clean_after=YES + clean_after=YES + hostname -h10c54 +h5c54 + echo 'Compiling into fv3.exe on hera.intel' Compiling into fv3.exe on hera.intel + gnu_make=gmake @@ -44,7 +43,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Consider reducing $MAKE_THREADS if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ '' == *\C\C\P\P\=\Y* ]] + [[ '' == *\W\W\3\=\Y* ]] @@ -56,175 +55,177 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3 +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake all Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -235,10 +236,10 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -327,11 +328,11 @@ Using pure routines. Using allocatable derived type array members. Using cray pointers. mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o -Compiling in MPI mode (with or without MPP) Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +Compiling in MPI mode (with or without MPP) Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -351,11 +352,11 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -376,11 +377,11 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o Using 8-byte addressing @@ -392,11 +393,11 @@ mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-al mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o @@ -529,21 +530,21 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on hera -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL on hera +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/modules.fv3 +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -554,195 +555,195 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -897,49 +898,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -952,66 +953,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1058,50 +1059,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1120,8 +1122,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1133,14 +1133,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1148,38 +1151,38 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +Installation into "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1190,10 +1193,10 @@ Currently Loaded Modules: -build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" CPPFLAGS += ESMF_VERSION_MINOR="0" @@ -1202,204 +1205,205 @@ CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_REVISION="0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:16:04 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:31:39 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -mpiifort -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT= NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=554 -+ echo 'Elapsed time 554 seconds. Compiling finished' -Elapsed time 554 seconds. Compiling finished -+ mkdir -p /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include -+ cp -fp ./fv3.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe -+ cp -fp ./modules.fv3 /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3 +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' ++ elapsed=552 ++ echo 'Elapsed time 552 seconds. Compiling finished' +Elapsed time 552 seconds. Compiling finished ++ mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include ++ cp -fp ./fv3.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe ++ cp -fp ./modules.fv3 /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3 + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1408,10 +1412,10 @@ Elapsed time 554 seconds. Compiling finished + unset md5 + set -xe + set -xe -+ test -s /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe -+ test -x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3.exe ++ test -s /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe ++ test -x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3.exe _______________________________________________________________ -Start Epilog v19.07.23 on node h10c54 for job 6233687 :: Thu Apr 9 21:16:46 UTC 2020 -Job 6233687 (not serial) finished for user Dusan.Jovic in partition hera with exit code 0:0 +Start Epilog v19.07.23 on node h5c54 for job 7361851 :: Mon May 4 22:32:26 UTC 2020 +Job 7361851 (not serial) finished for user Lisa.Bengtsson in partition hera with exit code 0:0 _______________________________________________________________ -End Epilogue v19.07.23 Thu Apr 9 21:16:46 UTC 2020 +End Epilogue v19.07.23 Mon May 4 22:32:26 UTC 2020 diff --git a/log/report-hera.intel-log/build_fv3_32bit.exe.log b/log/report-hera.intel-log/build_fv3_32bit.exe.log index b437770853..8ed15d7a30 100644 --- a/log/report-hera.intel-log/build_fv3_32bit.exe.log +++ b/log/report-hera.intel-log/build_fv3_32bit.exe.log @@ -1,27 +1,26 @@ + [[ fv3_32bit.exe == fv3_ww3.exe ]] + [[ fv3_32bit.exe == fv3.exe ]] + [[ fv3_32bit.exe == fv3_32bit.exe ]] -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe -+ modules=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe ++ modules=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit + BUILD_NR= -+ fv3=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe ++ fv3=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe + MAKE_OPTS=32BIT=Y -+ md5=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe.md5 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit ++ md5=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe.md5 ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/ ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit + which aprun -which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) +which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/slurm/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin) + [[ hera.intel == hera* ]] + echo 'DON'\''T SUBSTITUTE _ for . on hera.intel' DON'T SUBSTITUTE _ for . on hera.intel -+ ./compile.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 hera.intel 32BIT=Y ++ ./compile.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 hera.intel 32BIT=Y + SECONDS=0 + [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ++ PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 + readonly BUILD_TARGET=hera.intel + BUILD_TARGET=hera.intel -+ readonly MAKE_OPT=32BIT=Y + MAKE_OPT=32BIT=Y + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -30,7 +29,7 @@ DON'T SUBSTITUTE _ for . on hera.intel + readonly clean_after=YES + clean_after=YES + hostname -h34m25 +h35m30 + echo 'Compiling 32BIT=Y into fv3.exe on hera.intel' Compiling 32BIT=Y into fv3.exe on hera.intel + gnu_make=gmake @@ -45,7 +44,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Consider reducing $MAKE_THREADS if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] + [[ 32BIT=Y == *\W\W\3\=\Y* ]] @@ -57,13 +56,14 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -74,183 +74,184 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3 +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y all Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -261,10 +262,10 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -293,12 +294,12 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../affinity/affinity.c -o ../affinity/affinity.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o @@ -310,11 +311,11 @@ mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 - mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/nsclock.c -o ../mpp/nsclock.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mpp/threadloc.c -o ../mpp/threadloc.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o Using 8-byte addressing Using pure routines. @@ -377,11 +378,11 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -418,11 +419,11 @@ mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-al mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o @@ -555,21 +556,21 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling 32BIT=Y into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on hera -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall +mkdir -p "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +Compiling 32BIT=Y into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL on hera +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/modules.fv3 +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -580,195 +581,195 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -923,49 +924,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -978,66 +979,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1084,50 +1085,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1146,8 +1148,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1159,14 +1159,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1174,38 +1177,38 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +Installation into "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1216,10 +1219,10 @@ Currently Loaded Modules: -build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" CPPFLAGS += ESMF_VERSION_MINOR="0" @@ -1228,204 +1231,205 @@ CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_REVISION="0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:26:27 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:43:16 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -mpiifort -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=575 -+ echo 'Elapsed time 575 seconds. Compiling 32BIT=Y finished' -Elapsed time 575 seconds. Compiling 32BIT=Y finished -+ mkdir -p /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include -+ cp -fp ./fv3.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe -+ cp -fp ./modules.fv3 /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' ++ elapsed=564 ++ echo 'Elapsed time 564 seconds. Compiling 32BIT=Y finished' +Elapsed time 564 seconds. Compiling 32BIT=Y finished ++ mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include ++ cp -fp ./fv3.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe ++ cp -fp ./modules.fv3 /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1434,10 +1438,10 @@ Elapsed time 575 seconds. Compiling 32BIT=Y finished + unset md5 + set -xe + set -xe -+ test -s /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe -+ test -x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit.exe ++ test -s /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe ++ test -x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit.exe _______________________________________________________________ -Start Epilog v19.07.23 on node h34m25 for job 6234024 :: Thu Apr 9 21:27:34 UTC 2020 -Job 6234024 (not serial) finished for user Dusan.Jovic in partition hera with exit code 0:0 +Start Epilog v19.07.23 on node h35m30 for job 7362128 :: Mon May 4 22:43:54 UTC 2020 +Job 7362128 (not serial) finished for user Lisa.Bengtsson in partition hera with exit code 0:0 _______________________________________________________________ -End Epilogue v19.07.23 Thu Apr 9 21:27:34 UTC 2020 +End Epilogue v19.07.23 Mon May 4 22:43:54 UTC 2020 diff --git a/log/report-hera.intel-log/build_fv3_32bit_debug.exe.log b/log/report-hera.intel-log/build_fv3_32bit_debug.exe.log index 002639f3fa..ccdd996876 100644 --- a/log/report-hera.intel-log/build_fv3_32bit_debug.exe.log +++ b/log/report-hera.intel-log/build_fv3_32bit_debug.exe.log @@ -2,27 +2,26 @@ + [[ fv3_32bit_debug.exe == fv3.exe ]] + [[ fv3_32bit_debug.exe == fv3_32bit.exe ]] + [[ fv3_32bit_debug.exe == fv3_32bit_debug.exe ]] -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe -+ modules=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit_debug ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe ++ modules=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit_debug + BUILD_NR= -+ fv3=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe ++ fv3=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe + MAKE_OPTS=''\''32BIT=Y DEBUG=Y'\''' -+ md5=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe.md5 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit_debug ++ md5=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe.md5 ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/ ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit_debug + which aprun -which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) +which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/slurm/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin) + [[ hera.intel == hera* ]] + echo 'DON'\''T SUBSTITUTE _ for . on hera.intel' DON'T SUBSTITUTE _ for . on hera.intel -+ ./compile.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 hera.intel '32BIT=Y DEBUG=Y' ++ ./compile.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 hera.intel '32BIT=Y DEBUG=Y' + SECONDS=0 + [[ 3 -lt 2 ]] -+ readonly PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ++ PATHTR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 + readonly BUILD_TARGET=hera.intel + BUILD_TARGET=hera.intel -+ readonly 'MAKE_OPT=32BIT=Y DEBUG=Y' + MAKE_OPT='32BIT=Y DEBUG=Y' + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -31,7 +30,7 @@ DON'T SUBSTITUTE _ for . on hera.intel + readonly clean_after=YES + clean_after=YES + hostname -h18c43 +h4c54 + echo 'Compiling 32BIT=Y DEBUG=Y into fv3.exe on hera.intel' Compiling 32BIT=Y DEBUG=Y into fv3.exe on hera.intel + gnu_make=gmake @@ -46,7 +45,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Consider reducing $MAKE_THREADS if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] + [[ 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] @@ -58,13 +57,14 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -75,183 +75,184 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y Adding FV3 makeopts to FMS makeopts -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/modules.fv3 +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y DEBUG=Y all Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -262,10 +263,10 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -300,11 +301,11 @@ Using pure routines. Using allocatable derived type array members. Using cray pointers. mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o -mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/interp.c -o ../mosaic/interp.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o @@ -393,38 +394,38 @@ Using cray pointers. mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o Using 8-byte addressing Using pure routines. @@ -445,11 +446,11 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o Using 8-byte addressing Using pure routines. @@ -556,21 +557,21 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling 32BIT=Y DEBUG=Y into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on hera -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y DEBUG=Y nemsinstall +mkdir -p "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +Compiling 32BIT=Y DEBUG=Y into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL on hera +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/modules.fv3 +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y DEBUG=Y nemsinstall Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -581,195 +582,195 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -924,49 +925,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -979,66 +980,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1085,50 +1086,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1147,8 +1149,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1160,14 +1160,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1175,38 +1178,38 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +Installation into "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; \ gmake nems DEBUG=Y \ COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1217,10 +1220,10 @@ Currently Loaded Modules: -build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" CPPFLAGS += ESMF_VERSION_MINOR="0" @@ -1229,204 +1232,205 @@ CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_REVISION="0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:30:33 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:50:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -mpiifort -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +set -xe ; cp "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe" ++ cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=hera.intel 'FV3_MAKEOPT=32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y DEBUG=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=147 -+ echo 'Elapsed time 147 seconds. Compiling 32BIT=Y DEBUG=Y finished' -Elapsed time 147 seconds. Compiling 32BIT=Y DEBUG=Y finished -+ mkdir -p /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include -+ cp -fp ./fv3.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe -+ cp -fp ./modules.fv3 /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules.fv3_32bit_debug +gmake[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' ++ elapsed=143 ++ echo 'Elapsed time 143 seconds. Compiling 32BIT=Y DEBUG=Y finished' +Elapsed time 143 seconds. Compiling 32BIT=Y DEBUG=Y finished ++ mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include ++ cp -fp ./fv3.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe ++ cp -fp ./modules.fv3 /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules.fv3_32bit_debug + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1435,10 +1439,10 @@ Elapsed time 147 seconds. Compiling 32BIT=Y DEBUG=Y finished + unset md5 + set -xe + set -xe -+ test -s /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe -+ test -x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_32bit_debug.exe ++ test -s /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe ++ test -x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_32bit_debug.exe _______________________________________________________________ -Start Epilog v19.07.23 on node h18c43 for job 6234554 :: Thu Apr 9 21:31:28 UTC 2020 -Job 6234554 (not serial) finished for user Dusan.Jovic in partition hera with exit code 0:0 +Start Epilog v19.07.23 on node h4c54 for job 7362474 :: Mon May 4 22:51:02 UTC 2020 +Job 7362474 (not serial) finished for user Lisa.Bengtsson in partition hera with exit code 0:0 _______________________________________________________________ -End Epilogue v19.07.23 Thu Apr 9 21:31:28 UTC 2020 +End Epilogue v19.07.23 Mon May 4 22:51:02 UTC 2020 diff --git a/log/report-hera.intel-log/build_fv3_appbuilder.exe.log b/log/report-hera.intel-log/build_fv3_appbuilder.exe.log index a0b55f3065..a1bd86a98f 100644 --- a/log/report-hera.intel-log/build_fv3_appbuilder.exe.log +++ b/log/report-hera.intel-log/build_fv3_appbuilder.exe.log @@ -3,27 +3,28 @@ + [[ fv3_appbuilder.exe == fv3_32bit.exe ]] + [[ fv3_appbuilder.exe == fv3_32bit_debug.exe ]] + [[ fv3_appbuilder.exe == fv3_appbuilder.exe ]] -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe -+ md5sum=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe.md5 ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe ++ md5sum=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe.md5 + OPTS=app=standaloneFV3 -+ mkdir -p /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules_appbuilder.fv3 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules_appbuilder.fv3 ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model + which aprun -which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) +which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/slurm/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin) + ./NEMS/NEMSAppBuilder rebuild app=standaloneFV3 ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=standaloneFV3 distclean -Convert /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder +...into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -34,175 +35,176 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; make clean -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=standaloneFV3 build -Convert /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder +...into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -213,10 +215,10 @@ Currently Loaded Modules: -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -507,21 +509,21 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on hera -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL on hera +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/modules.fv3 +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -532,195 +534,195 @@ Currently Loaded Modules: -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -875,49 +877,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -930,66 +932,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1036,50 +1038,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1098,8 +1101,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1111,14 +1112,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1126,38 +1130,38 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +Installation into "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1168,10 +1172,10 @@ Currently Loaded Modules: -build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" CPPFLAGS += ESMF_VERSION_MINOR="0" @@ -1180,77 +1184,77 @@ CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_REVISION="0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:45:40 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 23:07:49 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -mpiifort -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe -+ cp -fp conf/modules.nems /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules_appbuilder.fv3 -+ md5sum /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe ++ cp -fp conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules_appbuilder.fv3 ++ md5sum /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe -+ test -x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe ++ test -s /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe ++ test -x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe _______________________________________________________________ -Start Epilog v19.07.23 on node h10c55 for job 6234620 :: Thu Apr 9 21:46:38 UTC 2020 -Job 6234620 (not serial) finished for user Dusan.Jovic in partition hera with exit code 0:0 +Start Epilog v19.07.23 on node h19c04 for job 7362631 :: Mon May 4 23:08:23 UTC 2020 +Job 7362631 (not serial) finished for user Lisa.Bengtsson in partition hera with exit code 0:0 _______________________________________________________________ -End Epilogue v19.07.23 Thu Apr 9 21:46:38 UTC 2020 +End Epilogue v19.07.23 Mon May 4 23:08:23 UTC 2020 diff --git a/log/report-hera.intel-log/build_fv3_ww3.exe.log b/log/report-hera.intel-log/build_fv3_ww3.exe.log index e4196809b9..240560b406 100644 --- a/log/report-hera.intel-log/build_fv3_ww3.exe.log +++ b/log/report-hera.intel-log/build_fv3_ww3.exe.log @@ -1,25 +1,26 @@ + [[ fv3_ww3.exe == fv3_ww3.exe ]] -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe -+ md5sum=/scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe.md5 ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe ++ md5sum=/scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe.md5 + OPTS=app=coupledFV3_WW3 -+ mkdir -p /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include -+ rm -f /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules_fv3_ww3 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include ++ rm -f /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules_fv3_ww3 ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model + which aprun -which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) +which: no aprun in (/scratch1/NCEPDEV/nems/emc.nemspara/soft/emc-utils/1.1.0/bin:/apps/hpss:/apps/rocoto/1.3.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/slurm/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin) + ./NEMS/NEMSAppBuilder rebuild app=coupledFV3_WW3 ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=coupledFV3_WW3 distclean -Convert /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -27,220 +28,227 @@ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true ls: cannot access */*.a: No such file or directory -ls: cannot access */*.o: No such file or directory -ls: cannot access */*.mod: No such file or directory -ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory -cc -E four_to_grid_stochy.F > four_to_grid_stochy.f +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ -export COMP_SRCDIR="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="hera" ; \ +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/configure.fv3 \ + /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf ; \ +export COMP_SRCDIR="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model" COMP_BINDIR="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="hera" ; \ export ESMFMKFILE=/dev/null ; \ exec make distclean -Lmod has detected the following error: The following module(s) are unknown: -"modules.nems" - -Please check the spelling or version number. Also try "module spider ..." -It is also possible your cache file is out-of-date; it may help to try: - $ module --ignore-cache load "modules.nems" - -Also make sure that all modulefiles written in TCL start with the string -#%Module +Currently Loaded Modules: + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 + 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 + 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 + 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF + 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 + 6) ip/3.0.2 14) jasper/1.900.1 22) modules.nems + 7) nemsio/2.2.4 15) png/1.2.44 + 8) sp/2.0.3 16) z/1.2.11 + -No modules loaded -which: no nc-config in (/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse) -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -\rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_clean -c +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf' +\rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_clean -c ***************************** *** WAVEWATCH III clean *** ***************************** - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Clean up /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/../regtests -\rm -fr /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp -\rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -cd "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" ; \ + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/aux + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_SEQ + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/obj + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/obj_HYB + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/obj_SEQ + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin + Remove /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/exe + Clean up /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/../regtests +\rm -fr /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp +\rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/wwatch3.env +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf' +cd "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model" ; \ rm -rf exe mod* obj* tmp ftn/makefile ftn/makefile_DIST \ ftn/makefile_SHRD esmf/wwatch3.env aux/makefile \ bin/link bin/comp ; \ find . -name '*.o' -o -name '*.mod' -o -name '*.a' \ | xargs rm -f -rm -rf /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -if ! test -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +if ! test -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:16: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory Components in linker order: WW3 FV3 FMS WW3: include +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' GNUmakefile:70: : component WW3 makefile fragment is missing FV3: include GNUmakefile:70: : component FV3 makefile fragment is missing FMS: include GNUmakefile:70: : component FMS makefile fragment is missing -make[1]: *** No rule to make target `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk'. Stop. -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; make clean +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=coupledFV3_WW3 build -Convert /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/conf/configure.fv3.hera.intel /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/externals.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/modulefiles/hera.intel/fv3 /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS' +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -251,10 +259,10 @@ Currently Loaded Modules: -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -545,21 +553,21 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on hera -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/fv3gfs' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL on hera +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3"/conf/modules.fv3 +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -570,195 +578,195 @@ Currently Loaded Modules: -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -913,49 +921,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -968,66 +976,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1074,50 +1082,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1136,8 +1145,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1149,14 +1156,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1164,25 +1174,25 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +Installation into "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ -export COMP_SRCDIR="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="hera" ; \ +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3' +test -d /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf ; \ +export COMP_SRCDIR="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model" COMP_BINDIR="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="hera" ; \ exec make -j 1 WW3_COMP="hera" ww3_nems Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1193,26 +1203,26 @@ Currently Loaded Modules: -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf -+ export COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=hera -+ COMP_SRCDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -+ COMP_BINDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf ++ export COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=hera ++ COMP_SRCDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model ++ COMP_BINDIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL + WW3_COMP=hera + exec make -j 1 WW3_COMP=hera ww3_nems -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf' ***************************** *** WAVEWATCH III setup *** ***************************** -[INFO] local env file wwatch3.env found in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env - Setup file /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env found +[INFO] local env file wwatch3.env found in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/wwatch3.env + Setup file /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/wwatch3.env found Printer (listings) : auxiliary FORTRAN compiler : gfortran auxiliary C compiler : gcc - Source directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model - Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp + Source directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model + Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source code : yes Save listings : yes @@ -1220,31 +1230,31 @@ make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/u Compile auxiliary programs -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' -gfortran -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3adc w3adc.f -gfortran -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3list w3list.f -gfortran -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f -gfortran -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3split w3split.f -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/aux' +gfortran -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3adc w3adc.f +gfortran -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3list w3list.f +gfortran -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f +gfortran -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3split w3split.f +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/aux' Setup comp & link files - sed /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp.tmpl => /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp - sed /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link.tmpl => /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link + sed /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/comp.tmpl => /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/comp + sed /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/link.tmpl => /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/link Create required model subdirectories Finished setting up WAVEWATCH III -\rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grid +\rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/tempswitch +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_grid ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1256,23 +1266,23 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/switch Checking all subroutines for modules (this may take a while) ... Processing ww3_grid --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing w3servmd -ad3 : processing w3arrymd ad3 : processing w3gsrumd +ad3 : processing w3arrymd ad3 : processing w3gdatmd -ad3 : processing w3idatmd ad3 : processing w3odatmd +ad3 : processing w3idatmd ad3 : processing w3dispmd ad3 : processing w3adatmd -ad3 : processing w3nmlgridmd ad3 : processing w3timemd +ad3 : processing w3nmlgridmd ad3 : processing wmmdatmd ad3 : processing w3src4md ad3 : processing w3triamd @@ -1282,21 +1292,21 @@ ad3 : processing w3wdatmd ad3 : processing w3iogrmd ad3 : processing ww3_grid Linking ww3_grid -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outf +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_outf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1305,27 +1315,27 @@ Shared Object : No Processing ww3_outf --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3iogomd -ad3 : processing w3sbt1md ad3 : processing w3sdb1md +ad3 : processing w3sbt1md ad3 : processing ww3_outf Linking ww3_outf -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outp +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_outp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1334,28 +1344,28 @@ Shared Object : No Processing ww3_outp --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3bullmd ad3 : processing w3partmd ad3 : processing w3iopomd ad3 : processing w3flx1md ad3 : processing ww3_outp Linking ww3_outp -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prep +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_prep ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1364,25 +1374,25 @@ Shared Object : No Processing ww3_prep --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3fldsmd ad3 : processing ww3_prep Linking ww3_prep -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_gint +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_gint ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1391,111 +1401,111 @@ Shared Object : No Processing ww3_gint --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_gint Linking ww3_gint -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_prnc -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_prnc --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlprncmd ad3 : processing ww3_prnc Linking ww3_prnc -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_ounf -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_ounf --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3nmlounfmd +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3iorsmd +ad3 : processing w3nmlounfmd ad3 : processing w3initmd ad3 : processing ww3_ounf Linking ww3_ounf -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_ounp -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_ounp --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlounpmd ad3 : processing ww3_ounp Linking ww3_ounp -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -\rm -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grib +\rm -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/tempswitch +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_grib ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1507,50 +1517,53 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/switch new GRIB package Checking all subroutines for modules (this may take a while) ... Processing ww3_grib --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_grib Linking ww3_grib -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf +\rm -rf /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/exec +\mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/exec +\cp -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/exe/ww3_* /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/exec +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_multi_esmf -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Making makefile ... ***************************** *** WAVEWATCH III makefile *** ***************************** -switch = /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/switch new shared / distributed memory new message passing protocol Checking all subroutines for modules (this may take a while) ... Processing ww3_multi_esmf --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing scrip_kindsmod [no w3adc] ad3 : processing w3uqckmd @@ -1559,40 +1572,40 @@ ad3 : processing scrip_iounitsmod [no w3adc] ad3 : processing scrip_timers [no w3adc] ad3 : processing w3servmd ad3 : processing scrip_errormod [no w3adc] -ad3 : processing scrip_netcdfmod [no w3adc] -ad3 : processing scrip_grids [no w3adc] ad3 : processing w3arrymd ad3 : processing w3gsrumd -ad3 : processing w3cspcmd ad3 : processing wmunitmd +ad3 : processing w3cspcmd +ad3 : processing scrip_netcdfmod [no w3adc] +ad3 : processing scrip_grids [no w3adc] ad3 : processing scrip_remap_vars [no w3adc] -ad3 : processing scrip_remap_conservative [no w3adc] -ad3 : processing scrip_remap_read [no w3adc] ad3 : processing scrip_remap_write [no w3adc] -ad3 : processing scrip_interface +ad3 : processing scrip_remap_read [no w3adc] +ad3 : processing scrip_remap_conservative [no w3adc] ad3 : processing w3gdatmd -ad3 : processing w3odatmd +ad3 : processing scrip_interface ad3 : processing wmscrpmd -ad3 : processing w3idatmd ad3 : processing w3sbt1md -ad3 : processing w3dispmd +ad3 : processing w3odatmd +ad3 : processing w3idatmd ad3 : processing w3timemd +ad3 : processing w3dispmd ad3 : processing wmmdatmd +ad3 : processing w3partmd +ad3 : processing w3flx1md ad3 : processing w3adatmd -ad3 : processing w3src4md -ad3 : processing w3fldsmd ad3 : processing w3sdb1md -ad3 : processing w3flx1md -ad3 : processing w3partmd ad3 : processing w3nmlmultimd +ad3 : processing w3src4md ad3 : processing wmfinlmd -ad3 : processing w3parall +ad3 : processing w3fldsmd ad3 : processing w3triamd ad3 : processing w3snl1md +ad3 : processing w3parall ad3 : processing w3wdatmd ad3 : processing w3iogrmd -ad3 : processing wmupdtmd ad3 : processing w3iogomd +ad3 : processing wmupdtmd ad3 : processing w3iosfmd ad3 : processing w3iotrmd ad3 : processing w3pro3md @@ -1602,11 +1615,11 @@ ad3 : processing w3wdasmd ad3 : processing w3updtmd ad3 : processing w3iopomd ad3 : processing w3iorsmd -ad3 : processing wmgridmd ad3 : processing w3iobcmd +ad3 : processing wmgridmd ad3 : processing wminiomd -ad3 : processing w3wavemd ad3 : processing w3initmd +ad3 : processing w3wavemd ad3 : processing wmiopomd ad3 : processing wmwavemd ad3 : processing wminitmd @@ -1672,63 +1685,64 @@ a - wmscrpmd.o a - scrip_netcdfmod.o a - scrip_remap_write.o a - scrip_remap_read.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make ww3_multi ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model +Scratch directory : /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_multi -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_multi --------------------- -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_multi Linking ww3_multi -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -mkdir -p /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL -cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/nuopc.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/. -test -d "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" +\cp -f /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/exe/ww3_multi /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/exec +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/esmf' +mkdir -p /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL +cp /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/nuopc.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/. +test -d "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL" ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ +for m in /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ -cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ +cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3 WW3" \ - FMS_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL TARGET="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL TARGET="/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 + 1) contrib 9) w3emc/2.3.1 17) post/8.0.6 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF @@ -1739,11 +1753,11 @@ Currently Loaded Modules: -build NEMS after /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +build NEMS after /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk Components in linker order: WW3 FV3 FMS -WW3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -FV3: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +WW3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +FV3: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" CPPFLAGS += ESMF_VERSION_MINOR="0" @@ -1752,77 +1766,77 @@ CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_REVISION="0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Thu Apr 9 21:05:23 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=100' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Lisa.Bengtsson) Mon May 4 22:18:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/mod_HYB -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3 -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/atmos_cubed_sphere -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/io -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/gfsphysics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/cpl -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/ipd -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/../stochastic_physics -I/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf -mpiifort -o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff -lnetcdf /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe -+ cp -fp conf/modules.nems /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/include/modules_fv3_ww3 -+ md5sum /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe +/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src' ++ cd /scratch2/BMC/rem/Lisa.Bengtsson/NEW_UFS_WEATHER_MODEL/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe ++ cp -fp conf/modules.nems /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/include/modules_fv3_ww3 ++ md5sum /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe -+ test -x /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe ++ test -s /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe ++ test -x /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe _______________________________________________________________ -Start Epilog v19.07.23 on node h2c20 for job 6232726 :: Thu Apr 9 21:06:18 UTC 2020 -Job 6232726 (not serial) finished for user Dusan.Jovic in partition hera with exit code 0:0 +Start Epilog v19.07.23 on node h16c38 for job 7360990 :: Mon May 4 22:19:33 UTC 2020 +Job 7360990 (not serial) finished for user Lisa.Bengtsson in partition hera with exit code 0:0 _______________________________________________________________ -End Epilogue v19.07.23 Thu Apr 9 21:06:18 UTC 2020 +End Epilogue v19.07.23 Mon May 4 22:19:33 UTC 2020 diff --git a/log/report-hera.intel-log/rtreport.txt b/log/report-hera.intel-log/rtreport.txt index 2bb3fa6b60..bace03c93d 100755 --- a/log/report-hera.intel-log/rtreport.txt +++ b/log/report-hera.intel-log/rtreport.txt @@ -1,12 +1,13 @@ Run rocotostat... Generate report... -WORKFLOW STARTED AT Thu Apr 9 20:45:42 2020 (+1586465142) +WORKFLOW STARTED AT Mon May 4 21:41:21 2020 (+1588628481) Repository information: REPO TOP: -MG3_rv1 af2aa9d [origin/MG3_rv1] Update FV3 submodule -Fetch URL: https://github.com/AnningCheng-NOAA/ufs-weather-model +CA_develop e3f19f0 [origin/CA_develop] log files from wcoss and orion +Fetch URL: https://github.com/lisa-bengtsson/ufs-weather-model + m NEMS M log/report-hera.intel-log/build_fv3.exe.log M log/report-hera.intel-log/build_fv3_32bit.exe.log M log/report-hera.intel-log/build_fv3_32bit_debug.exe.log @@ -19,19 +20,20 @@ Entering 'FMS' Fetch URL: https://github.com/NOAA-GFDL/FMS Entering 'FV3' -(HEAD detached at 7a4bf2b) 7a4bf2b Merge remote-tracking branch 'upstream/develop' into MG3_v1 -Fetch URL: https://github.com/AnningCheng-NOAA/fv3atm +(HEAD detached at e8fd6ee) e8fd6ee Ca develop (#87) +Fetch URL: https://github.com/NOAA-EMC/fv3atm Entering 'NEMS' -(HEAD detached at 6a4254b) 6a4254b hera.gnu config & selective merge of UFS public release hotfix to develop (fixes problem with MPI_Comm_Split in openmpi when hash is negative) (#43) +(HEAD detached at 82138ff) 82138ff cmeps integration changes (#55) Fetch URL: https://github.com/NOAA-EMC/NEMS + M tests/rtgen Entering 'WW3' -(HEAD detached at db2c7942) db2c7942 BF OpenMp b4b (#160) +(HEAD detached at 19f3126c) 19f3126c Orion port (#190) Fetch URL: https://github.com/NOAA-EMC/WW3 Entering 'stochastic_physics' -(HEAD detached at 1745422) 1745422 Merge pull request #6 from noaa-psd/psd/develop +(HEAD detached at 987f5a2) 987f5a2 Merge pull request #17 from noaa-psd/psd/develop Fetch URL: https://github.com/noaa-psd/stochastic_physics @@ -42,8 +44,8 @@ BUILD fv3_32bit_debug.exe: SUCCEEDED BUILD fv3_appbuilder.exe: SUCCEEDED TEST #1: PASS - Test fv3_gfdlmprad_atmwav starting at Thu Apr 9 21:07:31 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) - Thu Apr 9 21:07:31 UTC 2020 + Test fv3_gfdlmprad_atmwav starting at Mon May 4 22:23:01 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) + Mon May 4 22:23:01 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -88,14 +90,14 @@ TEST #1: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe - Expected md5sum: b91d152dee61ea6d0a833469b19af93a - Actual md5sum: b91d152dee61ea6d0a833469b19af93a - TEST PASSED AT Thu Apr 9 21:11:50 UTC 2020 + File: /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe + Expected md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + Actual md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + TEST PASSED AT Mon May 4 22:28:11 UTC 2020 TEST #2: PASS - Test fv3_lheatstrg starting at Thu Apr 9 21:17:34 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_lheatstrg starting at Mon May 4 22:32:49 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 22:32:49 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -140,13 +142,13 @@ TEST #2: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:37 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:51 UTC 2020 TEST #3: PASS - Test fv3_iau starting at Thu Apr 9 21:17:34 UTC 2020 (Compare FV3 IAU results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_iau starting at Mon May 4 22:32:48 UTC 2020 (Compare FV3 IAU results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -211,13 +213,13 @@ TEST #3: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:36 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:53 UTC 2020 TEST #4: PASS - Test fv3_stretched_nest_quilt starting at Thu Apr 9 21:28:24 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) - Thu Apr 9 21:28:24 UTC 2020 + Test fv3_stretched_nest_quilt starting at Mon May 4 22:52:41 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) + Mon May 4 22:52:41 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -277,11 +279,11 @@ TEST #4: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:32:49 UTC 2020 + TEST PASSED AT Mon May 4 22:57:06 UTC 2020 TEST #5: PASS - Test fv3_stretched_nest starting at Thu Apr 9 21:28:25 UTC 2020 (Stretched grid with nest; compare against previous baseline) - Thu Apr 9 21:28:25 UTC 2020 + Test fv3_stretched_nest starting at Mon May 4 22:53:17 UTC 2020 (Stretched grid with nest; compare against previous baseline) + Mon May 4 22:53:17 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -343,11 +345,11 @@ TEST #5: PASS RESTART/fv_tracer.res.nest02.tile7.nc: bit-for-bit identical RESTART/phy_data.nest02.tile7.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:33:20 UTC 2020 + TEST PASSED AT Mon May 4 22:58:10 UTC 2020 TEST #6: PASS - Test fv3_wrtGauss_nemsio_c768 starting at Thu Apr 9 21:07:33 UTC 2020 (Compare c768 FV3-WW3 Gaussian grid nemsio output results with previous trunk version) - Thu Apr 9 21:07:33 UTC 2020 + Test fv3_wrtGauss_nemsio_c768 starting at Mon May 4 22:23:11 UTC 2020 (Compare c768 FV3-WW3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 22:23:11 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -392,22 +394,22 @@ TEST #6: PASS out_grd.ant_9km: bit-for-bit identical out_grd.aoc_9km: bit-for-bit identical Executable did not change during test suite: - File: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe - Expected md5sum: b91d152dee61ea6d0a833469b19af93a - Actual md5sum: b91d152dee61ea6d0a833469b19af93a - TEST PASSED AT Thu Apr 9 21:39:41 UTC 2020 + File: /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe + Expected md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + Actual md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + TEST PASSED AT Mon May 4 22:52:26 UTC 2020 TEST #7: PASS - Test fv3_regional_control starting at Thu Apr 9 21:28:28 UTC 2020 (Compare FV3 regional control results with previous trunk version) - Thu Apr 9 21:28:28 UTC 2020 + Test fv3_regional_control starting at Mon May 4 22:44:51 UTC 2020 (Compare FV3 regional control results with previous trunk version) + Mon May 4 22:44:51 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:34:35 UTC 2020 + TEST PASSED AT Mon May 4 22:51:03 UTC 2020 TEST #8: PASS - Test fv3_wrtGauss_netcdf starting at Thu Apr 9 21:17:40 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Thu Apr 9 21:17:40 UTC 2020 + Test fv3_wrtGauss_netcdf starting at Mon May 4 22:32:48 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -452,19 +454,19 @@ TEST #8: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:42 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:51 UTC 2020 TEST #9: PASS - Test fv3_control_debug starting at Thu Apr 9 21:31:43 UTC 2020 (Compare FV3 control/debug results with previous trunk version) - Thu Apr 9 21:31:43 UTC 2020 + Test fv3_control_debug starting at Mon May 4 22:53:59 UTC 2020 (Compare FV3 control/debug results with previous trunk version) + Mon May 4 22:53:59 UTC 2020 global_o3prdlos.f77: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:33:47 UTC 2020 + TEST PASSED AT Mon May 4 22:56:06 UTC 2020 TEST #10: PASS - Test fv3_gfdlmprad_gwd starting at Thu Apr 9 21:17:34 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_gfdlmprad_gwd starting at Mon May 4 22:32:49 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) + Mon May 4 22:32:49 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -509,13 +511,13 @@ TEST #10: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:44 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:59 UTC 2020 TEST #11: PASS - Test fv3_stochy starting at Thu Apr 9 21:17:34 UTC 2020 (Compare FV3 stochy results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_stochy starting at Mon May 4 22:32:49 UTC 2020 (Compare FV3 stochy results with previous trunk version) + Mon May 4 22:32:49 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -580,21 +582,21 @@ TEST #11: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:51 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:34:03 UTC 2020 TEST #12: PASS - Test fv3_regional_c768 starting at Thu Apr 9 21:28:18 UTC 2020 (Compare FV3 regional c768 results with previous trunk version) - Thu Apr 9 21:28:18 UTC 2020 + Test fv3_regional_c768 starting at Mon May 4 22:44:52 UTC 2020 (Compare FV3 regional c768 results with previous trunk version) + Mon May 4 22:44:52 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:39:26 UTC 2020 + TEST PASSED AT Mon May 4 22:55:35 UTC 2020 TEST #13: PASS - Test fv3_gfdlmprad starting at Thu Apr 9 21:07:31 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) - Thu Apr 9 21:07:31 UTC 2020 + Test fv3_gfdlmprad starting at Mon May 4 22:23:01 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) + Mon May 4 22:23:01 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -639,14 +641,14 @@ TEST #13: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_ww3.exe - Expected md5sum: b91d152dee61ea6d0a833469b19af93a - Actual md5sum: b91d152dee61ea6d0a833469b19af93a - TEST PASSED AT Thu Apr 9 21:11:01 UTC 2020 + File: /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_ww3.exe + Expected md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + Actual md5sum: e0c1ffc9fcd28bfbf6179618e16b91ba + TEST PASSED AT Mon May 4 22:26:23 UTC 2020 TEST #14: PASS - Test fv3_appbuilder starting at Thu Apr 9 21:47:33 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) - Thu Apr 9 21:47:33 UTC 2020 + Test fv3_appbuilder starting at Mon May 4 23:09:39 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) + Mon May 4 23:09:39 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -710,14 +712,14 @@ TEST #14: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: - File: /scratch1/NCEPDEV/stmp2/Dusan.Jovic/scrub/rtgen.138244/exec/fv3_appbuilder.exe - Expected md5sum: c8d3ed21134d5f7e799b1b734ce24286 - Actual md5sum: c8d3ed21134d5f7e799b1b734ce24286 - TEST PASSED AT Thu Apr 9 21:48:42 UTC 2020 + File: /scratch2/BMC/rem/Lisa.Bengtsson/stmp2/Lisa.Bengtsson/scrub/rtgen.79489/exec/fv3_appbuilder.exe + Expected md5sum: 081b880de220970fdedebf716e63d860 + Actual md5sum: 081b880de220970fdedebf716e63d860 + TEST PASSED AT Mon May 4 23:10:46 UTC 2020 TEST #15: PASS - Test fv3_restart starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 restart results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_restart starting at Mon May 4 22:32:48 UTC 2020 (Compare FV3 restart results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -782,21 +784,21 @@ TEST #15: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:35 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:52 UTC 2020 TEST #16: PASS - Test fv3_regional_restart starting at Thu Apr 9 21:35:12 UTC 2020 (Compare FV3 regional restart results with previous trunk version) - Thu Apr 9 21:35:12 UTC 2020 + Test fv3_regional_restart starting at Mon May 4 22:53:59 UTC 2020 (Compare FV3 regional restart results with previous trunk version) + Mon May 4 22:53:59 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:38:31 UTC 2020 + TEST PASSED AT Mon May 4 22:57:16 UTC 2020 TEST #17: PASS - Test fv3_decomp starting at Thu Apr 9 21:17:34 UTC 2020 (Compare FV3 decomp results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_decomp starting at Mon May 4 22:32:48 UTC 2020 (Compare FV3 decomp results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -861,23 +863,23 @@ TEST #17: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:38 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:52 UTC 2020 TEST #18: PASS - Test fv3_regional_quilt starting at Thu Apr 9 21:28:27 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) - Thu Apr 9 21:28:27 UTC 2020 + Test fv3_regional_quilt starting at Mon May 4 22:44:52 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) + Mon May 4 22:44:52 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical dynf000.nc: bit-for-bit identical dynf024.nc: bit-for-bit identical phyf000.nc: bit-for-bit identical phyf024.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:35:00 UTC 2020 + TEST PASSED AT Mon May 4 22:51:21 UTC 2020 TEST #19: PASS - Test fv3_wrtGauss_nemsio starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_wrtGauss_nemsio starting at Mon May 4 22:32:49 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 22:32:49 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -922,13 +924,13 @@ TEST #19: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:37 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:50 UTC 2020 TEST #20: PASS - Test fv3_control_32bit starting at Thu Apr 9 21:28:19 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) - Thu Apr 9 21:28:19 UTC 2020 + Test fv3_control_32bit starting at Mon May 4 22:48:47 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) + Mon May 4 22:48:47 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -991,11 +993,11 @@ TEST #20: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:29:18 UTC 2020 + TEST PASSED AT Mon May 4 22:49:47 UTC 2020 TEST #21: PASS - Test fv3_gfdlmprad_32bit_post starting at Thu Apr 9 21:28:22 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) - Thu Apr 9 21:28:22 UTC 2020 + Test fv3_gfdlmprad_32bit_post starting at Mon May 4 22:52:41 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) + Mon May 4 22:52:41 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1042,11 +1044,11 @@ TEST #21: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:29:57 UTC 2020 + TEST PASSED AT Mon May 4 22:54:21 UTC 2020 TEST #22: PASS - Test fv3_csawmg3shoc127 starting at Thu Apr 9 21:17:34 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_csawmg3shoc127 starting at Mon May 4 22:32:48 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1091,13 +1093,13 @@ TEST #22: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:22:29 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:46 UTC 2020 TEST #23: PASS - Test fv3_read_inc starting at Thu Apr 9 21:17:36 UTC 2020 (Compare FV3 read_inc results with previous trunk version) - Thu Apr 9 21:17:36 UTC 2020 + Test fv3_read_inc starting at Mon May 4 22:32:48 UTC 2020 (Compare FV3 read_inc results with previous trunk version) + Mon May 4 22:32:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1162,13 +1164,13 @@ TEST #23: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:36 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:52 UTC 2020 TEST #24: PASS - Test fv3_satmedmf starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_satmedmf starting at Mon May 4 22:32:49 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 22:32:49 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1213,13 +1215,13 @@ TEST #24: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:37 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:33:58 UTC 2020 TEST #25: PASS - Test fv3_control starting at Thu Apr 9 21:17:36 UTC 2020 (Compare FV3 control results with previous trunk version) - Thu Apr 9 21:17:36 UTC 2020 + Test fv3_control starting at Mon May 4 22:33:19 UTC 2020 (Compare FV3 control results with previous trunk version) + Mon May 4 22:33:19 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1284,19 +1286,19 @@ TEST #25: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:38 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:34:21 UTC 2020 TEST #26: PASS - Test fv3_stretched_nest_debug starting at Thu Apr 9 21:31:51 UTC 2020 (Stretched grid with nest - debug; compare against previous baseline) - Thu Apr 9 21:31:51 UTC 2020 + Test fv3_stretched_nest_debug starting at Mon May 4 22:53:59 UTC 2020 (Stretched grid with nest - debug; compare against previous baseline) + Mon May 4 22:53:59 UTC 2020 global_o3prdlos.f77: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:35:54 UTC 2020 + TEST PASSED AT Mon May 4 22:58:08 UTC 2020 TEST #27: PASS - Test fv3_gfdlmp starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_gfdlmp starting at Mon May 4 22:35:31 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 22:35:31 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1341,13 +1343,13 @@ TEST #27: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:44 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:36:41 UTC 2020 TEST #28: PASS - Test fv3_gfdlmprad_noahmp starting at Thu Apr 9 21:17:38 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) - Thu Apr 9 21:17:38 UTC 2020 + Test fv3_gfdlmprad_noahmp starting at Mon May 4 22:35:02 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) + Mon May 4 22:35:02 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1392,13 +1394,13 @@ TEST #28: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:50 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:36:13 UTC 2020 TEST #29: PASS - Test fv3_2threads starting at Thu Apr 9 21:17:36 UTC 2020 (Compare FV3 2 threads results with previous trunk version) - Thu Apr 9 21:17:36 UTC 2020 + Test fv3_2threads starting at Mon May 4 22:36:06 UTC 2020 (Compare FV3 2 threads results with previous trunk version) + Mon May 4 22:36:06 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1463,13 +1465,13 @@ TEST #29: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:18:44 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:18 UTC 2020 TEST #30: PASS - Test fv3_wrtGauss_netcdf_esmf starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_wrtGauss_netcdf_esmf starting at Mon May 4 22:34:58 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 22:34:58 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1514,13 +1516,13 @@ TEST #30: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:19:53 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:16 UTC 2020 TEST #31: PASS - Test fv3_csawmg starting at Thu Apr 9 21:17:36 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) - Thu Apr 9 21:17:36 UTC 2020 + Test fv3_csawmg starting at Mon May 4 22:35:01 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) + Mon May 4 22:35:01 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1565,13 +1567,13 @@ TEST #31: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:19:55 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:22 UTC 2020 TEST #32: PASS - Test fv3_wsm6 starting at Thu Apr 9 21:17:36 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Thu Apr 9 21:17:36 UTC 2020 + Test fv3_wsm6 starting at Mon May 4 22:35:30 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 22:35:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1636,13 +1638,13 @@ TEST #32: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:19:08 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:00 UTC 2020 TEST #33: PASS - Test fv3_stretched starting at Thu Apr 9 21:28:27 UTC 2020 (Stretched grid; compare against previous baseline) - Thu Apr 9 21:28:27 UTC 2020 + Test fv3_stretched starting at Mon May 4 22:53:59 UTC 2020 (Stretched grid; compare against previous baseline) + Mon May 4 22:53:59 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1693,11 +1695,11 @@ TEST #33: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Thu Apr 9 21:32:47 UTC 2020 + TEST PASSED AT Mon May 4 22:58:22 UTC 2020 TEST #34: PASS - Test fv3_wrtGauss_nemsio_c192 starting at Thu Apr 9 21:17:34 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) - Thu Apr 9 21:17:34 UTC 2020 + Test fv3_wrtGauss_nemsio_c192 starting at Mon May 4 22:35:00 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 22:35:00 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1742,13 +1744,13 @@ TEST #34: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:20:03 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:30 UTC 2020 TEST #35: PASS - Test fv3_csawmgshoc starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_csawmgshoc starting at Mon May 4 22:35:30 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) + Mon May 4 22:35:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1793,13 +1795,13 @@ TEST #35: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:19:56 UTC 2020 + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:49 UTC 2020 TEST #36: PASS - Test fv3_rasmgshoc starting at Thu Apr 9 21:17:35 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) - Thu Apr 9 21:17:35 UTC 2020 + Test fv3_rasmgshoc starting at Mon May 4 22:35:31 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) + Mon May 4 22:35:31 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1844,10 +1846,10 @@ TEST #36: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: d2405b387c200834cd9085c0fb1b00ea - Actual md5sum: d2405b387c200834cd9085c0fb1b00ea - TEST PASSED AT Thu Apr 9 21:20:02 UTC 2020 -WORKFLOW REPORT AT Thu Apr 9 21:49:19 2020 (+1586468959) + Expected md5sum: b150d20dc23f20fa3a9f0e309993b4bf + Actual md5sum: b150d20dc23f20fa3a9f0e309993b4bf + TEST PASSED AT Mon May 4 22:37:56 UTC 2020 +WORKFLOW REPORT AT Mon May 4 23:11:07 2020 (+1588633867) Tests: 0 failed, 36 passed out of 36 Builds: 0 failed, 5 passed out of 5 REGRESSION TEST WAS SUCCESSFUL diff --git a/log/report-wcoss.cray-log/build_fv3.exe.log b/log/report-wcoss.cray-log/build_fv3.exe.log index ef039df1e6..e0a41fd7ff 100644 --- a/log/report-wcoss.cray-log/build_fv3.exe.log +++ b/log/report-wcoss.cray-log/build_fv3.exe.log @@ -1,14 +1,14 @@ -Apr 10 05:11:03 2020 18325 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=549262 +May 4 20:30:45 2020 38506 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=823488 + [[ fv3.exe == fv3_ww3.exe ]] + [[ fv3.exe == fv3.exe ]] -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe -+ modules=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3 ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe ++ modules=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3 + BUILD_NR= -+ fv3=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe ++ fv3=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe + MAKE_OPTS=' ' -+ md5=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe.md5 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3 ++ md5=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe.md5 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/ ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3 + module load alps ++ /opt/modules/3.2.10.3/bin/modulecmd bash load alps + eval CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_LD_LIBRARY_PATH;LOADEDMODULES=xt-lsfhpc/9.1.3:rocoto/1.3.0rc2:emc-utils/1.0.0:alps/5.2.4-2.0502.9822.32.1.ari' ';export' 'LOADEDMODULES;MANPATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/gpfs/hps3/emc/hwrf/noscrub/soft/emc-utils/bin:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_PRODUCT_LIST=CRAY_ALPS' ';export' 'PE_PRODUCT_LIST;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH;_LMFILES_=/opt/modulefiles/xt-lsfhpc/9.1.3:/usrx/local/emc_rocoto/modulefiles/rocoto/1.3.0rc2:/gpfs/hps3/emc/hwrf/noscrub/soft/modulefiles/emc-utils/1.0.0:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari' ';export' '_LMFILES_;' @@ -35,14 +35,13 @@ Apr 10 05:11:03 2020 18325 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + [[ wcoss.cray == wcoss.cray ]] ++ echo wcoss.cray ++ sed 's,\.,_,g' -+ aprun -n 1 -j 1 -N 1 -d 24 ./compile.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 wcoss_cray ++ aprun -n 1 -j 1 -N 1 -d 24 ./compile.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 wcoss_cray + SECONDS=0 + [[ 2 -lt 2 ]] -+ readonly PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 + readonly BUILD_TARGET=wcoss_cray + BUILD_TARGET=wcoss_cray -+ readonly MAKE_OPT= + MAKE_OPT= + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -51,7 +50,7 @@ Apr 10 05:11:03 2020 18325 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + readonly clean_after=YES + clean_after=YES + hostname -nid01179 +nid00174 + echo 'Compiling into fv3.exe on wcoss_cray' + gnu_make=gmake Compiling into fv3.exe on wcoss_cray @@ -62,11 +61,11 @@ Compiling into fv3.exe on wcoss_cray + MAKE_THREADS=8 + [[ 8 -gt 1 ]] + echo Using '$MAKE_THREADS=8' threads to build FV3 and FMS. -+ echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Using $MAKE_THREADS=8 threads to build FV3 and FMS. Consider reducing $MAKE_THREADS if you hit memory or process limits. ++ echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ '' == *\C\C\P\P\=\Y* ]] + [[ '' == *\W\W\3\=\Y* ]] @@ -78,164 +77,166 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT= NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... makefile:67: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT= NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3" ++ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3 +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ - ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ + ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake all Currently Loaded Modulefiles: 1) craype-network-aries @@ -244,13 +245,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -264,19 +265,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -286,32 +287,32 @@ ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DG ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov_kernel.F90 -o ../monin_obukhov/monin_obukhov_kernel.o Using 8-byte addressing +Using 8-byte addressing +Using pure routines. Using pure routines. Using allocatable derived type array members. +Using allocatable derived type array members. +Using cray pointers. Using cray pointers. Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. Using 8-byte addressing -Using 8-byte addressing -Using pure routines. Using pure routines. Using allocatable derived type array members. -Using allocatable derived type array members. -Using cray pointers. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o cc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../affinity/affinity.c -o ../affinity/affinity.o cc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o cc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o @@ -364,11 +365,11 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o Compiling in MPI mode (with or without MPP) Using 8-byte addressing Using pure routines. @@ -393,7 +394,6 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -402,11 +402,11 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o @@ -417,17 +417,18 @@ ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DG ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o @@ -567,18 +568,18 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -586,13 +587,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -606,205 +607,205 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -959,49 +960,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... makefile:54: depend: No such file or directory -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -1014,66 +1015,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1120,50 +1121,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -makefile:86: depend: No such file or directory -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1182,8 +1184,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1195,14 +1195,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1210,35 +1213,35 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ - echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ + echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ - for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ + for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ - echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ + echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ - test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ + test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -1246,13 +1249,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -1266,19 +1269,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" @@ -1287,202 +1290,203 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' cc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o `module_NEMS_UTILS.tmp.o' -> `module_NEMS_UTILS.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o `module_MEDIATOR_methods.tmp.o' -> `module_MEDIATOR_methods.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o `module_MEDIATOR.tmp.o' -> `module_MEDIATOR.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o `module_MEDIATOR_SpaceWeather.tmp.o' -> `module_MEDIATOR_SpaceWeather.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o `module_EARTH_INTERNAL_STATE.tmp.o' -> `module_EARTH_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o `module_EARTH_GRID_COMP.tmp.o' -> `module_EARTH_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o `module_NEMS_INTERNAL_STATE.tmp.o' -> `module_NEMS_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o `module_NEMS_GRID_COMP.tmp.o' -> `module_NEMS_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o `module_NEMS_Rusage.tmp.o' -> `module_NEMS_Rusage.o' cc -c nems_c_rusage.c -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:22:15 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:40:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o `MAIN_NEMS.tmp.o' -> `MAIN_NEMS.o' echo libgocart is libgocart is -echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz /opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': +ESMCI_VMKernel.C:(.text+0x14b1f): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe" ++ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT= NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... makefile:67: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=795 -+ echo 'Elapsed time 795 seconds. Compiling finished' -Elapsed time 795 seconds. Compiling finished -Application 7950124 resources: utime ~944s, stime ~82s, Rss ~2165136, inblocks ~268197724, outblocks ~1406746 -+ mkdir -p /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include -+ cp -fp ./fv3.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe -+ cp -fp ./modules.fv3 /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3 +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ elapsed=706 ++ echo 'Elapsed time 706 seconds. Compiling finished' +Elapsed time 706 seconds. Compiling finished +Application 11225130 resources: utime ~908s, stime ~90s, Rss ~5162808, inblocks ~266952814, outblocks ~1360865 ++ mkdir -p /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include ++ cp -fp ./fv3.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe ++ cp -fp ./modules.fv3 /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3 + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1491,34 +1495,34 @@ Application 7950124 resources: utime ~944s, stime ~82s, Rss ~2165136, inblocks ~ + unset md5 + set -xe + set -xe -+ test -s /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe -+ test -x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3.exe ++ test -s /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe ++ test -x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 980256: in cluster Done +Sender: LSF System +Subject: Job 419805: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:11:01 2020. -Job was executed on host(s) <1*nid00828>, in queue , as user in cluster at Fri Apr 10 05:11:02 2020. - <24*nid01179> +Job was submitted from host by user in cluster at Mon May 4 20:30:43 2020. +Job was executed on host(s) <1*nid00124>, in queue , as user in cluster at Mon May 4 20:30:43 2020. + <24*nid00174> was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:11:02 2020. -Terminated at Fri Apr 10 05:25:26 2020. -Results reported at Fri Apr 10 05:25:26 2020. + was used as the working directory. +Started at Mon May 4 20:30:43 2020. +Terminated at Mon May 4 20:43:37 2020. +Results reported at Mon May 4 20:43:37 2020. Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/src ; ./install.sh fv3.exe" +/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/src ; ./install.sh fv3.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 0.90 sec. + CPU time : 0.88 sec. Max Memory : 25 MB Average Memory : 21.00 MB Total Requested Memory : 2000.00 MB @@ -1526,48 +1530,48 @@ Resource usage summary: Max Swap : - Max Processes : 5 Max Threads : 6 - Run time : 802 sec. - Turnaround time : 865 sec. + Run time : 712 sec. + Turnaround time : 774 sec. The output (if any) is above this job summary. -Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@980256 +Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@419805 ------------------------------------------------------------------------ -ALPS Resource Utilization Report (RUR) Summary for LSF Job: 980256 +ALPS Resource Utilization Report (RUR) Summary for LSF Job: 419805 STATUS: - APP START: 2020-04-10:05:11:07 UTC - APP STOP: 2020-04-10:05:24:25 UTC + APP START: 2020-05-04:20:30:47 UTC + APP STOP: 2020-05-04:20:42:35 UTC exit codes: 0 core files: 0 CPU: - stime: 92.336000 s - utime: 949.724000 s + stime: 110.240000 s + utime: 916.228000 s MEMORY: - max_rss: 2114.39 MiB - accumulated max_rss: 2114.39 MiB - active(anon): 25.20 MiB - active(file): 1.35 MiB - inactive(anon): .63 MiB - inactive(file): 7.23 MiB - majfaults: 917 - minfaults: 23686747 + max_rss: 5041.80 MiB + accumulated max_rss: 5041.80 MiB + active(anon): 33.99 MiB + active(file): 1.46 MiB + inactive(anon): 2.30 MiB + inactive(file): 7.75 MiB + majfaults: 833 + minfaults: 30227085 pageswpcnt: 0 I/O: - rcalls: 4921157 - wcalls: 65293 - rchar: 130958.73 MiB - wchar: 687.90 MiB - bkiowait: 1.6744472490 s + rcalls: 3802677 + wcalls: 90366 + rchar: 130351.90 MiB + wchar: 665.40 MiB + bkiowait: 1.1549160290 s diff --git a/log/report-wcoss.cray-log/build_fv3_32bit.exe.log b/log/report-wcoss.cray-log/build_fv3_32bit.exe.log index 01fb10981c..0d2483e4db 100644 --- a/log/report-wcoss.cray-log/build_fv3_32bit.exe.log +++ b/log/report-wcoss.cray-log/build_fv3_32bit.exe.log @@ -1,15 +1,15 @@ -Apr 10 05:26:32 2020 47806 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=549358 +May 4 20:44:27 2020 17536 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=823526 + [[ fv3_32bit.exe == fv3_ww3.exe ]] + [[ fv3_32bit.exe == fv3.exe ]] + [[ fv3_32bit.exe == fv3_32bit.exe ]] -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe -+ modules=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3_32bit ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe ++ modules=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3_32bit + BUILD_NR= -+ fv3=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe ++ fv3=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe + MAKE_OPTS=32BIT=Y -+ md5=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe.md5 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3_32bit ++ md5=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe.md5 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/ ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3_32bit + module load alps ++ /opt/modules/3.2.10.3/bin/modulecmd bash load alps + eval CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_LD_LIBRARY_PATH;LOADEDMODULES=xt-lsfhpc/9.1.3:rocoto/1.3.0rc2:emc-utils/1.0.0:alps/5.2.4-2.0502.9822.32.1.ari' ';export' 'LOADEDMODULES;MANPATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/gpfs/hps3/emc/hwrf/noscrub/soft/emc-utils/bin:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_PRODUCT_LIST=CRAY_ALPS' ';export' 'PE_PRODUCT_LIST;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH;_LMFILES_=/opt/modulefiles/xt-lsfhpc/9.1.3:/usrx/local/emc_rocoto/modulefiles/rocoto/1.3.0rc2:/gpfs/hps3/emc/hwrf/noscrub/soft/modulefiles/emc-utils/1.0.0:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari' ';export' '_LMFILES_;' @@ -36,14 +36,13 @@ Apr 10 05:26:32 2020 47806 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + [[ wcoss.cray == wcoss.cray ]] ++ echo wcoss.cray ++ sed 's,\.,_,g' -+ aprun -n 1 -j 1 -N 1 -d 24 ./compile.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 wcoss_cray 32BIT=Y ++ aprun -n 1 -j 1 -N 1 -d 24 ./compile.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 wcoss_cray 32BIT=Y + SECONDS=0 + [[ 3 -lt 2 ]] -+ readonly PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 + readonly BUILD_TARGET=wcoss_cray + BUILD_TARGET=wcoss_cray -+ readonly MAKE_OPT=32BIT=Y + MAKE_OPT=32BIT=Y + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -52,7 +51,7 @@ Apr 10 05:26:32 2020 47806 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + readonly clean_after=YES + clean_after=YES + hostname -nid00358 +nid00017 + echo 'Compiling 32BIT=Y into fv3.exe on wcoss_cray' + gnu_make=gmake Compiling 32BIT=Y into fv3.exe on wcoss_cray @@ -67,7 +66,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. Consider reducing $MAKE_THREADS if you hit memory or process limits. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] + [[ 32BIT=Y == *\W\W\3\=\Y* ]] @@ -79,13 +78,14 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -96,172 +96,173 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... makefile:67: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... makefile:54: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -makefile:86: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3" ++ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3 +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ - ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ + ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y all Currently Loaded Modulefiles: 1) craype-network-aries @@ -270,13 +271,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -290,19 +291,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -314,24 +315,24 @@ ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DG Using 8-byte addressing Using pure routines. Using allocatable derived type array members. +Using cray pointers. Using 8-byte addressing Using pure routines. Using allocatable derived type array members. -Using cray pointers. -Using cray pointers. +Using 8-byte addressing Using 8-byte addressing Using pure routines. -Using allocatable derived type array members. Using cray pointers. -Using 8-byte addressing Using pure routines. Using allocatable derived type array members. +Using allocatable derived type array members. +Using cray pointers. Using cray pointers. -Using 8-byte addressing Using 8-byte addressing Using pure routines. -Using pure routines. Using allocatable derived type array members. +Using 8-byte addressing +Using pure routines. Using allocatable derived type array members. Using cray pointers. Using cray pointers. @@ -423,55 +424,55 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -593,18 +594,18 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling 32BIT=Y into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall +mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling 32BIT=Y into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -612,13 +613,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -632,205 +633,205 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -985,49 +986,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -1040,66 +1041,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1146,50 +1147,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +makefile:87: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1208,8 +1210,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1221,14 +1221,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1236,35 +1239,35 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ - echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ + echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ - for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ + for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ - echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ + echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ - test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ + test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -1272,13 +1275,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -1292,19 +1295,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" @@ -1313,202 +1316,203 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' cc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o `module_NEMS_UTILS.tmp.o' -> `module_NEMS_UTILS.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o `module_MEDIATOR_methods.tmp.o' -> `module_MEDIATOR_methods.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o `module_MEDIATOR.tmp.o' -> `module_MEDIATOR.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o `module_MEDIATOR_SpaceWeather.tmp.o' -> `module_MEDIATOR_SpaceWeather.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o `module_EARTH_INTERNAL_STATE.tmp.o' -> `module_EARTH_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o `module_EARTH_GRID_COMP.tmp.o' -> `module_EARTH_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o `module_NEMS_INTERNAL_STATE.tmp.o' -> `module_NEMS_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o `module_NEMS_GRID_COMP.tmp.o' -> `module_NEMS_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o `module_NEMS_Rusage.tmp.o' -> `module_NEMS_Rusage.o' cc -c nems_c_rusage.c -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:37:32 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:54:56 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o `MAIN_NEMS.tmp.o' -> `MAIN_NEMS.o' echo libgocart is libgocart is -echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz /opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': +ESMCI_VMKernel.C:(.text+0x14b1f): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +set -xe ; cp "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe" ++ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_cray FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing -gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=777 -+ echo 'Elapsed time 777 seconds. Compiling 32BIT=Y finished' -Elapsed time 777 seconds. Compiling 32BIT=Y finished -Application 7952140 resources: utime ~938s, stime ~81s, Rss ~2165136, inblocks ~267782049, outblocks ~1451645 -+ mkdir -p /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include -+ cp -fp ./fv3.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe -+ cp -fp ./modules.fv3 /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules.fv3_32bit +gmake[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ elapsed=719 ++ echo 'Elapsed time 719 seconds. Compiling 32BIT=Y finished' +Elapsed time 719 seconds. Compiling 32BIT=Y finished +Application 11225472 resources: utime ~909s, stime ~91s, Rss ~5162808, inblocks ~267948612, outblocks ~1403887 ++ mkdir -p /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include ++ cp -fp ./fv3.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe ++ cp -fp ./modules.fv3 /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules.fv3_32bit + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1517,83 +1521,83 @@ Application 7952140 resources: utime ~938s, stime ~81s, Rss ~2165136, inblocks ~ + unset md5 + set -xe + set -xe -+ test -s /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe -+ test -x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_32bit.exe ++ test -s /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe ++ test -x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_32bit.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 980433: in cluster Done +Sender: LSF System +Subject: Job 419885: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:26:25 2020. -Job was executed on host(s) <1*nid01468>, in queue , as user in cluster at Fri Apr 10 05:26:31 2020. - <24*nid00358> +Job was submitted from host by user in cluster at Mon May 4 20:44:25 2020. +Job was executed on host(s) <1*nid00124>, in queue , as user in cluster at Mon May 4 20:44:26 2020. + <24*nid00017> was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:26:31 2020. -Terminated at Fri Apr 10 05:40:35 2020. -Results reported at Fri Apr 10 05:40:35 2020. + was used as the working directory. +Started at Mon May 4 20:44:26 2020. +Terminated at Mon May 4 20:57:32 2020. +Results reported at Mon May 4 20:57:32 2020. Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/src ; ./install.sh fv3_32bit.exe" +/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/src ; ./install.sh fv3_32bit.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 0.90 sec. - Max Memory : 24 MB - Average Memory : 21.04 MB + CPU time : 1.01 sec. + Max Memory : 25 MB + Average Memory : 21.00 MB Total Requested Memory : 2000.00 MB - Delta Memory : 1976.00 MB + Delta Memory : 1975.00 MB Max Swap : - Max Processes : 5 Max Threads : 6 - Run time : 785 sec. - Turnaround time : 850 sec. + Run time : 724 sec. + Turnaround time : 787 sec. The output (if any) is above this job summary. -Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@980433 +Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@419885 ------------------------------------------------------------------------ -ALPS Resource Utilization Report (RUR) Summary for LSF Job: 980433 +ALPS Resource Utilization Report (RUR) Summary for LSF Job: 419885 STATUS: - APP START: 2020-04-10:05:26:35 UTC - APP STOP: 2020-04-10:05:39:33 UTC - exit codes: 0 9 + APP START: 2020-05-04:20:44:30 UTC + APP STOP: 2020-05-04:20:56:31 UTC + exit codes: 0 core files: 0 CPU: - stime: 90.552000 s - utime: 943.700000 s + stime: 111.244000 s + utime: 917.160000 s MEMORY: - max_rss: 2114.39 MiB - accumulated max_rss: 2114.39 MiB - active(anon): 25.61 MiB - active(file): .92 MiB - inactive(anon): .92 MiB - inactive(file): 7.25 MiB - majfaults: 1209 - minfaults: 23887530 + max_rss: 5041.80 MiB + accumulated max_rss: 5041.80 MiB + active(anon): 36.67 MiB + active(file): 1.47 MiB + inactive(anon): 4.21 MiB + inactive(file): 7.36 MiB + majfaults: 953 + minfaults: 30423651 pageswpcnt: 0 I/O: - rcalls: 4943192 - wcalls: 65812 - rchar: 130755.75 MiB - wchar: 709.81 MiB - bkiowait: 1.4444143680 s + rcalls: 3836724 + wcalls: 90902 + rchar: 130838.17 MiB + wchar: 686.41 MiB + bkiowait: 1.4816969180 s diff --git a/log/report-wcoss.cray-log/build_fv3_appbuilder.exe.log b/log/report-wcoss.cray-log/build_fv3_appbuilder.exe.log index 1c81b88939..18e248d75b 100644 --- a/log/report-wcoss.cray-log/build_fv3_appbuilder.exe.log +++ b/log/report-wcoss.cray-log/build_fv3_appbuilder.exe.log @@ -1,14 +1,14 @@ -Apr 10 05:41:54 2020 15331 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=549479 +May 4 20:58:11 2020 12554 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=823608 + [[ fv3_appbuilder.exe == fv3_ww3.exe ]] + [[ fv3_appbuilder.exe == fv3.exe ]] + [[ fv3_appbuilder.exe == fv3_32bit.exe ]] + [[ fv3_appbuilder.exe == fv3_appbuilder.exe ]] -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe -+ md5sum=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe.md5 ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe ++ md5sum=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe.md5 + OPTS=app=standaloneFV3 -+ mkdir -p /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules_appbuilder.fv3 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules_appbuilder.fv3 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model + module load alps ++ /opt/modules/3.2.10.3/bin/modulecmd bash load alps + eval CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_LD_LIBRARY_PATH;LOADEDMODULES=xt-lsfhpc/9.1.3:rocoto/1.3.0rc2:emc-utils/1.0.0:alps/5.2.4-2.0502.9822.32.1.ari' ';export' 'LOADEDMODULES;MANPATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/gpfs/hps3/emc/hwrf/noscrub/soft/emc-utils/bin:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_PRODUCT_LIST=CRAY_ALPS' ';export' 'PE_PRODUCT_LIST;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH;_LMFILES_=/opt/modulefiles/xt-lsfhpc/9.1.3:/usrx/local/emc_rocoto/modulefiles/rocoto/1.3.0rc2:/gpfs/hps3/emc/hwrf/noscrub/soft/modulefiles/emc-utils/1.0.0:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari' ';export' '_LMFILES_;' @@ -36,16 +36,17 @@ Apr 10 05:41:54 2020 15331 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + aprun -n 1 -j 1 -N 1 -d 24 bash -c './NEMS/NEMSAppBuilder rebuild app=standaloneFV3' ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=standaloneFV3 distclean -Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder +...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -56,171 +57,172 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... makefile:54: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -makefile:86: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; make clean -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=standaloneFV3 build -Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder +...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ - ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ + ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modulefiles: 1) craype-network-aries @@ -229,13 +231,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -249,19 +251,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -552,18 +554,18 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -571,13 +573,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -591,205 +593,205 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +makefile:269: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -944,49 +946,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -999,66 +1001,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1105,50 +1107,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +makefile:87: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1167,8 +1170,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1180,14 +1181,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1195,35 +1199,35 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ - echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ + echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ - for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ + for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ - echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ + echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ - test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ + test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -1231,13 +1235,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -1251,19 +1255,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" @@ -1272,106 +1276,106 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' cc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o `module_NEMS_UTILS.tmp.o' -> `module_NEMS_UTILS.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o `module_MEDIATOR_methods.tmp.o' -> `module_MEDIATOR_methods.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o `module_MEDIATOR.tmp.o' -> `module_MEDIATOR.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o `module_MEDIATOR_SpaceWeather.tmp.o' -> `module_MEDIATOR_SpaceWeather.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o `module_EARTH_INTERNAL_STATE.tmp.o' -> `module_EARTH_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o `module_EARTH_GRID_COMP.tmp.o' -> `module_EARTH_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o `module_NEMS_INTERNAL_STATE.tmp.o' -> `module_NEMS_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o `module_NEMS_GRID_COMP.tmp.o' -> `module_NEMS_GRID_COMP.o' -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o `module_NEMS_Rusage.tmp.o' -> `module_NEMS_Rusage.o' cc -c nems_c_rusage.c -cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:02:10 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +cc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:16:29 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o `MAIN_NEMS.tmp.o' -> `MAIN_NEMS.o' echo libgocart is libgocart is -echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz /opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -Application 7953643 resources: utime ~907s, stime ~65s, Rss ~2165136, inblocks ~268025933, outblocks ~1199725 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe -+ cp -fp conf/modules.nems /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules_appbuilder.fv3 -+ md5sum /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe +/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': +ESMCI_VMKernel.C:(.text+0x14b1f): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +Application 11225989 resources: utime ~875s, stime ~71s, Rss ~5162808, inblocks ~266792802, outblocks ~1157706 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe ++ cp -fp conf/modules.nems /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules_appbuilder.fv3 ++ md5sum /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe -+ test -x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe ++ test -s /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe ++ test -x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 980621: in cluster Done +Sender: LSF System +Subject: Job 420011: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:41:51 2020. -Job was executed on host(s) <1*nid00444>, in queue , as user in cluster at Fri Apr 10 05:41:52 2020. - <24*nid00915> +Job was submitted from host by user in cluster at Mon May 4 20:58:09 2020. +Job was executed on host(s) <1*nid00316>, in queue , as user in cluster at Mon May 4 20:58:10 2020. + <24*nid00372> was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:41:52 2020. -Terminated at Fri Apr 10 06:06:11 2020. -Results reported at Fri Apr 10 06:06:11 2020. + was used as the working directory. +Started at Mon May 4 20:58:10 2020. +Terminated at Mon May 4 21:19:13 2020. +Results reported at Mon May 4 21:19:13 2020. Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/src ; ./install.sh fv3_appbuilder.exe" +/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/src ; ./install.sh fv3_appbuilder.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 1.24 sec. + CPU time : 1.06 sec. Max Memory : 25 MB Average Memory : 21.00 MB Total Requested Memory : 2000.00 MB @@ -1379,48 +1383,48 @@ Resource usage summary: Max Swap : - Max Processes : 5 Max Threads : 6 - Run time : 1397 sec. - Turnaround time : 1460 sec. + Run time : 1201 sec. + Turnaround time : 1264 sec. The output (if any) is above this job summary. -Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@980621 +Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@420011 ------------------------------------------------------------------------ -ALPS Resource Utilization Report (RUR) Summary for LSF Job: 980621 +ALPS Resource Utilization Report (RUR) Summary for LSF Job: 420011 STATUS: - APP START: 2020-04-10:05:41:57 UTC - APP STOP: 2020-04-10:06:05:10 UTC - exit codes: 0 9 + APP START: 2020-05-04:20:58:14 UTC + APP STOP: 2020-05-04:21:18:11 UTC + exit codes: 0 core files: 0 CPU: - stime: 76.208000 s - utime: 912.676000 s + stime: 91.548000 s + utime: 882.276000 s MEMORY: - max_rss: 2114.39 MiB - accumulated max_rss: 2114.39 MiB - active(anon): 20.67 MiB - active(file): 1.69 MiB - inactive(anon): .55 MiB - inactive(file): 7.31 MiB - majfaults: 757 - minfaults: 23565768 + max_rss: 5041.80 MiB + accumulated max_rss: 5041.80 MiB + active(anon): 29.79 MiB + active(file): 1.46 MiB + inactive(anon): 2.33 MiB + inactive(file): 7.53 MiB + majfaults: 781 + minfaults: 30108678 pageswpcnt: 0 I/O: - rcalls: 4921961 - wcalls: 64943 - rchar: 130874.63 MiB - wchar: 586.23 MiB - bkiowait: 1.5463382810 s + rcalls: 3807323 + wcalls: 89929 + rchar: 130273.37 MiB + wchar: 565.47 MiB + bkiowait: 2.1138836090 s diff --git a/log/report-wcoss.cray-log/build_fv3_ww3.exe.log b/log/report-wcoss.cray-log/build_fv3_ww3.exe.log index c15e045287..8d6a51d722 100644 --- a/log/report-wcoss.cray-log/build_fv3_ww3.exe.log +++ b/log/report-wcoss.cray-log/build_fv3_ww3.exe.log @@ -1,11 +1,11 @@ -Apr 10 04:30:15 2020 32383 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=548897 +May 4 19:56:27 2020 26296 7 9.1.3 jobSetupStatus: job additionalInfo reservation_id=823283 + [[ fv3_ww3.exe == fv3_ww3.exe ]] -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe -+ md5sum=/gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe.md5 ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe ++ md5sum=/gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe.md5 + OPTS=app=coupledFV3_WW3 -+ mkdir -p /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include -+ rm -f /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules_fv3_ww3 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include ++ rm -f /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules_fv3_ww3 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model + module load alps ++ /opt/modules/3.2.10.3/bin/modulecmd bash load alps + eval CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_LD_LIBRARY_PATH;LOADEDMODULES=xt-lsfhpc/9.1.3:rocoto/1.3.0rc2:emc-utils/1.0.0:alps/5.2.4-2.0502.9822.32.1.ari' ';export' 'LOADEDMODULES;MANPATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/gpfs/hps3/emc/hwrf/noscrub/soft/emc-utils/bin:/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_PRODUCT_LIST=CRAY_ALPS' ';export' 'PE_PRODUCT_LIST;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH;_LMFILES_=/opt/modulefiles/xt-lsfhpc/9.1.3:/usrx/local/emc_rocoto/modulefiles/rocoto/1.3.0rc2:/gpfs/hps3/emc/hwrf/noscrub/soft/modulefiles/emc-utils/1.0.0:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari' ';export' '_LMFILES_;' @@ -33,16 +33,17 @@ Apr 10 04:30:15 2020 32383 7 9.1.3 jobSetupStatus: job additionalInfo reservatio + aprun -n 1 -j 1 -N 1 -d 24 bash -c './NEMS/NEMSAppBuilder rebuild app=coupledFV3_WW3' ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=coupledFV3_WW3 distclean -Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -53,166 +54,166 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... makefile:67: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... makefile:54: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -makefile:86: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' cc -E four_to_grid_stochy.F > four_to_grid_stochy.f Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ - export COMP_SRCDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_cray" ; \ +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ; \ + export COMP_SRCDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_cray" ; \ export ESMFMKFILE=/dev/null ; \ exec make distclean ModuleCmd_Load.c(226):ERROR:105: Unable to locate a modulefile for 'modules.nems' No Modulefiles Currently Loaded. which: no nc-config in (/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin) -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_clean -c +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_clean -c ***************************** *** WAVEWATCH III clean *** ***************************** - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_SEQ - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_HYB - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_SEQ - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/exe - Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/../regtests -\rm -fr /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp -\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -cd "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" ; \ + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_SEQ + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_HYB + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_SEQ + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin + Remove /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe + Clean up /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/../regtests +\rm -fr /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp +\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +cd "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" ; \ rm -rf exe mod* obj* tmp ftn/makefile ftn/makefile_DIST \ ftn/makefile_SHRD esmf/wwatch3.env aux/makefile \ bin/link bin/comp ; \ find . -name '*.o' -o -name '*.mod' -o -name '*.a' \ | xargs rm -f -rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +if ! test -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi -GNUmakefile:16: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +GNUmakefile:16: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' Components in linker order: WW3 FV3 FMS WW3: include GNUmakefile:70: : component WW3 makefile fragment is missing @@ -220,43 +221,44 @@ FV3: include GNUmakefile:70: : component FV3 makefile fragment is missing FMS: include GNUmakefile:70: : component FMS makefile fragment is missing -make[1]: *** No rule to make target `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk'. Stop. -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +make[1]: *** No rule to make target `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk'. Stop. +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=coupledFV3_WW3 build -Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ - echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ - echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_cray /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_cray/fv3 /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ + echo 'module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ + echo 'module load modules.nems' ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ - ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ + ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modulefiles: 1) craype-network-aries @@ -265,13 +267,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -285,19 +287,19 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -588,18 +590,18 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss_cray +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss_cray FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -607,13 +609,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -627,205 +629,205 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cplfields.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -makefile:278: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o cc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -980,49 +982,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... makefile:54: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... -$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 +$ESMF_INC is [-I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include] +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c FV3GFS_io.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_internal_state.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_write_netcdf_parallel.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -1035,66 +1037,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1141,50 +1143,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -makefile:86: depend: No such file or directory -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Building dependencies ... -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1203,8 +1206,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1216,14 +1217,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 -ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fv3_config.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c atmos_model.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c module_fcst_grid_comp.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c time_utils.F90 +ftn -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DNO_PARALLEL_NETCDF -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1231,21 +1235,21 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ - export COMP_SRCDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_cray" ; \ +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ; \ + export COMP_SRCDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_cray" ; \ exec make -j 1 WW3_COMP="wcoss_cray" ww3_nems Currently Loaded Modulefiles: 1) craype-network-aries @@ -1254,13 +1258,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -1274,35 +1278,35 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf -+ export COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=wcoss_cray -+ COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -+ COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ++ export COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=wcoss_cray ++ COMP_SRCDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model ++ COMP_BINDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL + WW3_COMP=wcoss_cray + exec make -j 1 WW3_COMP=wcoss_cray ww3_nems -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' ***************************** *** WAVEWATCH III setup *** ***************************** -[INFO] local env file wwatch3.env found in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env - Setup file /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env found +[INFO] local env file wwatch3.env found in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env + Setup file /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env found Printer (listings) : auxiliary FORTRAN compiler : gfortran auxiliary C compiler : gcc - Source directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model - Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp + Source directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model + Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source code : yes Save listings : yes @@ -1310,31 +1314,31 @@ make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/uf Compile auxiliary programs -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' -gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3adc w3adc.f -gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3list w3list.f -gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f -gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3split w3split.f -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux' +gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3adc w3adc.f +gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3list w3list.f +gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f +gfortran -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3split w3split.f +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux' Setup comp & link files - sed /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp.tmpl => /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp - sed /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link.tmpl => /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link + sed /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/comp.tmpl => /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/comp + sed /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/link.tmpl => /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/link Create required model subdirectories Finished setting up WAVEWATCH III -\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grid +\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/tempswitch +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_grid ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1346,12 +1350,12 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch Checking all subroutines for modules (this may take a while) ... Processing ww3_grid --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing w3servmd ad3 : processing w3arrymd @@ -1359,34 +1363,34 @@ ad3 : processing w3gsrumd ad3 : processing w3gdatmd ad3 : processing w3odatmd ad3 : processing w3idatmd +ad3 : processing w3nmlgridmd ad3 : processing w3timemd ad3 : processing w3dispmd -ad3 : processing w3nmlgridmd ad3 : processing w3adatmd -ad3 : processing wmmdatmd ad3 : processing w3src4md +ad3 : processing wmmdatmd ad3 : processing w3snl1md -ad3 : processing w3triamd ad3 : processing w3parall +ad3 : processing w3triamd ad3 : processing w3wdatmd ad3 : processing w3iogrmd ad3 : processing ww3_grid Linking ww3_grid -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outf +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_outf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1395,27 +1399,27 @@ Shared Object : No Processing ww3_outf --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3sbt1md +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3iogomd +ad3 : processing w3sbt1md ad3 : processing w3sdb1md ad3 : processing ww3_outf Linking ww3_outf -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outp +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_outp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1424,28 +1428,28 @@ Shared Object : No Processing ww3_outp --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' +ad3 : processing w3iopomd +ad3 : processing w3bullmd ad3 : processing w3flx1md ad3 : processing w3partmd -ad3 : processing w3bullmd -ad3 : processing w3iopomd ad3 : processing ww3_outp Linking ww3_outp -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prep +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_prep ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1454,25 +1458,25 @@ Shared Object : No Processing ww3_prep --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3fldsmd ad3 : processing ww3_prep Linking ww3_prep -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_gint +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_gint ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1481,24 +1485,24 @@ Shared Object : No Processing ww3_gint --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_gint Linking ww3_gint -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1507,25 +1511,25 @@ Shared Object : No Processing ww3_prnc --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlprncmd ad3 : processing ww3_prnc Linking ww3_prnc -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1534,27 +1538,27 @@ Shared Object : No Processing ww3_ounf --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3iorsmd +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlounfmd +ad3 : processing w3iorsmd ad3 : processing w3initmd ad3 : processing ww3_ounf Linking ww3_ounf -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1563,26 +1567,26 @@ Shared Object : No Processing ww3_ounp --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlounpmd ad3 : processing ww3_ounp Linking ww3_ounp -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grib +\rm -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/tempswitch +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_grib ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1594,30 +1598,33 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch new GRIB package Checking all subroutines for modules (this may take a while) ... Processing ww3_grib --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_grib Linking ww3_grib -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf +\rm -rf /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +\mkdir -p /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +\cp -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_* /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1629,14 +1636,14 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch new shared / distributed memory new message passing protocol Checking all subroutines for modules (this may take a while) ... Processing ww3_multi_esmf --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing scrip_kindsmod [no w3adc] ad3 : processing w3uqckmd @@ -1645,43 +1652,43 @@ ad3 : processing scrip_iounitsmod [no w3adc] ad3 : processing scrip_timers [no w3adc] ad3 : processing w3servmd ad3 : processing scrip_errormod [no w3adc] +ad3 : processing w3arrymd ad3 : processing w3cspcmd ad3 : processing w3gsrumd -ad3 : processing w3arrymd ad3 : processing wmunitmd ad3 : processing scrip_netcdfmod [no w3adc] -ad3 : processing w3gdatmd ad3 : processing scrip_grids [no w3adc] +ad3 : processing scrip_remap_vars [no w3adc] +ad3 : processing w3gdatmd +ad3 : processing scrip_remap_read [no w3adc] +ad3 : processing scrip_remap_conservative [no w3adc] +ad3 : processing scrip_remap_write [no w3adc] ad3 : processing w3odatmd -ad3 : processing w3sbt1md ad3 : processing w3idatmd -ad3 : processing scrip_remap_vars [no w3adc] +ad3 : processing w3sbt1md +ad3 : processing w3sdb1md +ad3 : processing w3flx1md +ad3 : processing w3dispmd ad3 : processing w3timemd ad3 : processing wmmdatmd -ad3 : processing w3dispmd +ad3 : processing scrip_interface ad3 : processing w3adatmd -ad3 : processing w3sdb1md -ad3 : processing w3flx1md +ad3 : processing w3src4md +ad3 : processing w3fldsmd ad3 : processing w3partmd ad3 : processing w3nmlmultimd -ad3 : processing scrip_remap_conservative [no w3adc] -ad3 : processing scrip_remap_write [no w3adc] -ad3 : processing scrip_remap_read [no w3adc] -ad3 : processing w3src4md +ad3 : processing wmscrpmd ad3 : processing wmfinlmd -ad3 : processing w3fldsmd -ad3 : processing scrip_interface ad3 : processing w3parall ad3 : processing w3triamd ad3 : processing w3snl1md -ad3 : processing wmscrpmd ad3 : processing w3wdatmd ad3 : processing w3iogrmd -ad3 : processing w3updtmd +ad3 : processing wmgridmd ad3 : processing w3iogomd +ad3 : processing w3updtmd ad3 : processing w3iopomd ad3 : processing w3iorsmd -ad3 : processing wmgridmd ad3 : processing w3iobcmd ad3 : processing wmupdtmd ad3 : processing w3iosfmd @@ -1758,21 +1765,21 @@ a - wmscrpmd.o a - scrip_netcdfmod.o a - scrip_remap_write.o a - scrip_remap_read.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_multi ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1781,36 +1788,37 @@ Shared Object : No Processing ww3_multi --------------------- -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_multi Linking ww3_multi -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -mkdir -p /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL -cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/nuopc.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/. -test -d "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" +\cp -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_multi /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +mkdir -p /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL +cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/nuopc.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/. +test -d "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" ( \ echo "# Do not edit this file. It is automatically generated." ; \ - echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ - echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ + echo "# Edit the component list or /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo ; cat "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ + echo fms_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ - for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ + for m in /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ test -s $m ; \ done ; \ - echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ - cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ + echo build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ + cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3 WW3" \ - FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ - test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL TARGET="/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ + test -x /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modulefiles: 1) craype-network-aries 2) craype/2.3.0 @@ -1818,13 +1826,13 @@ Currently Loaded Modulefiles: 4) pmi/5.0.11 5) atp/1.8.1 6) PrgEnv-intel/5.2.82 - 7) intel/16.3.210 + 7) intel/18.1.163 8) cray-netcdf/4.3.3.1 9) cray-hdf5/1.8.14 10) xt-lsfhpc/9.1.3 11) craype-haswell 12) python/2.7.14 - 13) cmake/3.6.2 + 13) cmake/3.16.2 14) gcc/4.9.2 15) jasper-gnu-sandybridge/1.900.1 16) png-intel-sandybridge/1.2.49 @@ -1838,20 +1846,20 @@ Currently Loaded Modulefiles: 24) w3nco/2.0.7 25) w3emc/2.3.1 26) nemsio/2.2.4 - 27) post/8.0.5 + 27) post/8.0.6 28) rca/1.0.0-2.0502.60530.1.62.ari 29) alps/5.2.4-2.0502.9822.32.1.ari 30) xpmem/0.1-2.0502.64982.7.25.ari 31) gni-headers/4.0-1.0502.10859.9.24.ari 32) udreg/2.3.2-1.0502.10518.2.17.ari 33) ugni/6.0-1.0502.10863.8.29.ari - 34) esmf/8.0.0 + 34) esmf/8.0.0_intel18 35) modules.nems -build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +build NEMS after /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk Components in linker order: WW3 FV3 FMS -WW3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +WW3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +FV3: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" @@ -1860,155 +1868,155 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" -make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' cc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o `module_NEMS_UTILS.tmp.o' -> `module_NEMS_UTILS.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o `module_MEDIATOR_methods.tmp.o' -> `module_MEDIATOR_methods.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o `module_MEDIATOR.tmp.o' -> `module_MEDIATOR.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o `module_MEDIATOR_SpaceWeather.tmp.o' -> `module_MEDIATOR_SpaceWeather.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o `module_EARTH_INTERNAL_STATE.tmp.o' -> `module_EARTH_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o `module_EARTH_GRID_COMP.tmp.o' -> `module_EARTH_GRID_COMP.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o `module_NEMS_INTERNAL_STATE.tmp.o' -> `module_NEMS_INTERNAL_STATE.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o `module_NEMS_GRID_COMP.tmp.o' -> `module_NEMS_GRID_COMP.o' -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o `module_NEMS_Rusage.tmp.o' -> `module_NEMS_Rusage.o' cc -c nems_c_rusage.c -cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:07:09 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +cc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:26:36 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_PUBLIC="'T'" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +ftn -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/mod -I/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/include -I/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -IENS_Cpl -I. -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o `MAIN_NEMS.tmp.o' -> `MAIN_NEMS.o' echo libgocart is libgocart is -echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz -ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2016.3.210/linux/16.0/3.210/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +echo extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +extlibs is /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz +ftn -o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.6_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a /gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a /gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a /usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a /usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/opt/intel/compilers_and_libraries_2018.1.163/linux/18.1/163/lib/intel64 -lifcoremt -lnetcdff -lnetcdf -lhdf5_hl -lhdf5 -lz /opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -Application 7943656 resources: utime ~1324s, stime ~139s, Rss ~2165136, inblocks ~809261891, outblocks ~1766178 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe -+ cp -fp conf/modules.nems /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/include/modules_fv3_ww3 -+ md5sum /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe +/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0_intel18/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': +ESMCI_VMKernel.C:(.text+0x14b1f): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking +/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +Application 11223471 resources: utime ~1299s, stime ~138s, Rss ~5162808, inblocks ~810129804, outblocks ~1943685 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe ++ cp -fp conf/modules.nems /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/include/modules_fv3_ww3 ++ md5sum /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe -+ test -x /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe ++ test -s /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe ++ test -x /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe ------------------------------------------------------------ Sender: LSF System -Subject: Job 979691: in cluster Done +Subject: Job 419456: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 04:29:55 2020. -Job was executed on host(s) <1*nid00188>, in queue , as user in cluster at Fri Apr 10 04:30:13 2020. - <24*nid00045> +Job was submitted from host by user in cluster at Mon May 4 19:56:25 2020. +Job was executed on host(s) <1*nid00188>, in queue , as user in cluster at Mon May 4 19:56:25 2020. + <24*nid00341> was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 04:30:13 2020. -Terminated at Fri Apr 10 05:10:31 2020. -Results reported at Fri Apr 10 05:10:31 2020. + was used as the working directory. +Started at Mon May 4 19:56:25 2020. +Terminated at Mon May 4 20:29:20 2020. +Results reported at Mon May 4 20:29:20 2020. Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/src ; ./install.sh fv3_ww3.exe" +/gpfs/hps/usrx/local/emc_rocoto/1.3.0rc2/sbin/lsfcraywrapper.sh sh -c "cd /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/src ; ./install.sh fv3_ww3.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 0.99 sec. - Max Memory : 25 MB + CPU time : 1.00 sec. + Max Memory : 24 MB Average Memory : 21.00 MB Total Requested Memory : 2000.00 MB - Delta Memory : 1975.00 MB + Delta Memory : 1976.00 MB Max Swap : - Max Processes : 5 Max Threads : 6 - Run time : 2356 sec. - Turnaround time : 2436 sec. + Run time : 1913 sec. + Turnaround time : 1975 sec. The output (if any) is above this job summary. -Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@979691 +Data collected from /ufs/RUR/output/rur.output.NCEP-ORLANDO@419456 ------------------------------------------------------------------------ -ALPS Resource Utilization Report (RUR) Summary for LSF Job: 979691 +ALPS Resource Utilization Report (RUR) Summary for LSF Job: 419456 STATUS: - APP START: 2020-04-10:04:30:19 UTC - APP STOP: 2020-04-10:05:09:30 UTC - exit codes: 0 9 + APP START: 2020-05-04:19:56:29 UTC + APP STOP: 2020-05-04:20:28:18 UTC + exit codes: 0 core files: 0 CPU: - stime: 252.272000 s - utime: 1343.808000 s + stime: 259.976000 s + utime: 1320.328000 s MEMORY: - max_rss: 2114.39 MiB - accumulated max_rss: 2114.39 MiB - active(anon): 25.72 MiB - active(file): 1.77 MiB - inactive(anon): 1.47 MiB - inactive(file): 7.23 MiB - majfaults: 1045 - minfaults: 57960085 + max_rss: 5041.80 MiB + accumulated max_rss: 5041.80 MiB + active(anon): 33.53 MiB + active(file): .92 MiB + inactive(anon): 2.20 MiB + inactive(file): 7.66 MiB + majfaults: 1004 + minfaults: 64901156 pageswpcnt: 0 I/O: - rcalls: 7418570 - wcalls: 202320 - rchar: 395163.22 MiB - wchar: 869.26 MiB - bkiowait: 1.6717385010 s + rcalls: 6084931 + wcalls: 234770 + rchar: 395587.47 MiB + wchar: 955.33 MiB + bkiowait: 1.2201939160 s diff --git a/log/report-wcoss.cray-log/rtreport.txt b/log/report-wcoss.cray-log/rtreport.txt index 6b210e452b..4c9b541452 100644 --- a/log/report-wcoss.cray-log/rtreport.txt +++ b/log/report-wcoss.cray-log/rtreport.txt @@ -1,12 +1,12 @@ Run rocotostat... Generate report... -WORKFLOW STARTED AT Fri Apr 10 04:29:54 2020 (+1586492994) +WORKFLOW STARTED AT Mon May 4 19:56:23 2020 (+1588622183) Repository information: REPO TOP: -MG3_rv1 af2aa9d [origin/MG3_rv1] Update FV3 submodule -Fetch URL: https://github.com/AnningCheng-NOAA/ufs-weather-model +CA_develop d6102d2 [origin/CA_develop: behind 1] updated submodule pointers for FV3 and stochastic physics +Fetch URL: https://github.com/lisa-bengtsson/ufs-weather-model M log/report-wcoss.cray-log/build_fv3.exe.log M log/report-wcoss.cray-log/build_fv3_32bit.exe.log M log/report-wcoss.cray-log/build_fv3_appbuilder.exe.log @@ -21,7 +21,7 @@ Fetch URL: https://github.com/NOAA-GFDL/FMS Entering 'FV3' age: git [--version] [--exec-path[=]] [--html-path] [--man-path] [--info-path] -Fetch URL: https://github.com/AnningCheng-NOAA/fv3atm +Fetch URL: https://github.com/NOAA-EMC/fv3atm Entering 'NEMS' age: git [--version] [--exec-path[=]] [--html-path] [--man-path] [--info-path] @@ -42,8 +42,8 @@ BUILD fv3_32bit.exe: SUCCEEDED BUILD fv3_appbuilder.exe: SUCCEEDED TEST #1: PASS - Test fv3_gfdlmprad_atmwav starting at Fri Apr 10 05:11:08 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) - Fri Apr 10 05:11:08 UTC 2020 + Test fv3_gfdlmprad_atmwav starting at Mon May 4 20:30:47 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) + Mon May 4 20:30:47 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -88,14 +88,14 @@ TEST #1: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe - Expected md5sum: 519007ad570dd024a142b84098f2e474 - Actual md5sum: 519007ad570dd024a142b84098f2e474 - TEST PASSED AT Fri Apr 10 05:17:29 UTC 2020 + File: /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe + Expected md5sum: a3706fd448bc33113be604d0e2e9ece5 + Actual md5sum: a3706fd448bc33113be604d0e2e9ece5 + TEST PASSED AT Mon May 4 20:37:09 UTC 2020 TEST #2: PASS - Test fv3_lheatstrg starting at Fri Apr 10 05:26:43 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:26:43 UTC 2020 + Test fv3_lheatstrg starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -140,13 +140,13 @@ TEST #2: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:28:32 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:45:57 UTC 2020 TEST #3: PASS - Test fv3_iau starting at Fri Apr 10 05:27:54 UTC 2020 (Compare FV3 IAU results with previous trunk version) - Fri Apr 10 05:27:54 UTC 2020 + Test fv3_iau starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 IAU results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -211,13 +211,13 @@ TEST #3: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:29:42 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:46:00 UTC 2020 TEST #4: PASS - Test fv3_stretched_nest_quilt starting at Fri Apr 10 05:41:56 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) - Fri Apr 10 05:41:56 UTC 2020 + Test fv3_stretched_nest_quilt starting at Mon May 4 20:58:13 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -277,11 +277,11 @@ TEST #4: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:46:13 UTC 2020 + TEST PASSED AT Mon May 4 21:01:59 UTC 2020 TEST #5: PASS - Test fv3_stretched_nest starting at Fri Apr 10 05:41:56 UTC 2020 (Stretched grid with nest; compare against previous baseline) - Fri Apr 10 05:41:56 UTC 2020 + Test fv3_stretched_nest starting at Mon May 4 20:58:13 UTC 2020 (Stretched grid with nest; compare against previous baseline) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -343,11 +343,11 @@ TEST #5: PASS RESTART/fv_tracer.res.nest02.tile7.nc: bit-for-bit identical RESTART/phy_data.nest02.tile7.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:46:56 UTC 2020 + TEST PASSED AT Mon May 4 21:02:45 UTC 2020 TEST #6: PASS - Test fv3_wrtGauss_nemsio starting at Fri Apr 10 05:27:20 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:27:20 UTC 2020 + Test fv3_wrtGauss_nemsio starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -392,21 +392,21 @@ TEST #6: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:29:04 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:45:58 UTC 2020 TEST #7: PASS - Test fv3_regional_control starting at Fri Apr 10 05:41:56 UTC 2020 (Compare FV3 regional control results with previous trunk version) - Fri Apr 10 05:41:56 UTC 2020 + Test fv3_regional_control starting at Mon May 4 20:58:13 UTC 2020 (Compare FV3 regional control results with previous trunk version) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:50:11 UTC 2020 + TEST PASSED AT Mon May 4 21:06:17 UTC 2020 TEST #8: PASS - Test fv3_wrtGauss_netcdf starting at Fri Apr 10 05:27:54 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Fri Apr 10 05:27:55 UTC 2020 + Test fv3_wrtGauss_netcdf starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -451,13 +451,13 @@ TEST #8: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:29:42 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:45:56 UTC 2020 TEST #9: PASS - Test fv3_gfdlmprad_gwd starting at Fri Apr 10 05:27:54 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) - Fri Apr 10 05:27:54 UTC 2020 + Test fv3_gfdlmprad_gwd starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -502,13 +502,13 @@ TEST #9: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:29:52 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:46:07 UTC 2020 TEST #10: PASS - Test fv3_stochy starting at Fri Apr 10 05:26:43 UTC 2020 (Compare FV3 stochy results with previous trunk version) - Fri Apr 10 05:26:43 UTC 2020 + Test fv3_stochy starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 stochy results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -573,13 +573,13 @@ TEST #10: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:28:52 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:46:18 UTC 2020 TEST #11: PASS - Test fv3_gfdlmprad starting at Fri Apr 10 05:11:08 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) - Fri Apr 10 05:11:08 UTC 2020 + Test fv3_gfdlmprad starting at Mon May 4 20:30:47 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) + Mon May 4 20:30:47 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -624,14 +624,14 @@ TEST #11: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_ww3.exe - Expected md5sum: 519007ad570dd024a142b84098f2e474 - Actual md5sum: 519007ad570dd024a142b84098f2e474 - TEST PASSED AT Fri Apr 10 05:16:13 UTC 2020 + File: /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_ww3.exe + Expected md5sum: a3706fd448bc33113be604d0e2e9ece5 + Actual md5sum: a3706fd448bc33113be604d0e2e9ece5 + TEST PASSED AT Mon May 4 20:34:57 UTC 2020 TEST #12: PASS - Test fv3_appbuilder starting at Fri Apr 10 06:07:37 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) - Fri Apr 10 06:07:37 UTC 2020 + Test fv3_appbuilder starting at Mon May 4 21:20:30 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) + Mon May 4 21:20:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -695,14 +695,14 @@ TEST #12: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/hps2/ptmp/Dusan.Jovic/rtgen.29053/exec/fv3_appbuilder.exe - Expected md5sum: 779e731bf0b87ff80c80bce5d17d0674 - Actual md5sum: 779e731bf0b87ff80c80bce5d17d0674 - TEST PASSED AT Fri Apr 10 06:09:25 UTC 2020 + File: /gpfs/hps/ptmp/Dusan.Jovic/rtgen.33102/exec/fv3_appbuilder.exe + Expected md5sum: e2bbc8367af4387b13c70bc9905cc2b2 + Actual md5sum: e2bbc8367af4387b13c70bc9905cc2b2 + TEST PASSED AT Mon May 4 21:21:52 UTC 2020 TEST #13: PASS - Test fv3_restart starting at Fri Apr 10 05:27:54 UTC 2020 (Compare FV3 restart results with previous trunk version) - Fri Apr 10 05:27:54 UTC 2020 + Test fv3_restart starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 restart results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -767,21 +767,21 @@ TEST #13: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:29:40 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:45:58 UTC 2020 TEST #14: PASS - Test fv3_regional_restart starting at Fri Apr 10 05:52:44 UTC 2020 (Compare FV3 regional restart results with previous trunk version) - Fri Apr 10 05:52:44 UTC 2020 + Test fv3_regional_restart starting at Mon May 4 21:08:30 UTC 2020 (Compare FV3 regional restart results with previous trunk version) + Mon May 4 21:08:30 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:57:07 UTC 2020 + TEST PASSED AT Mon May 4 21:12:39 UTC 2020 TEST #15: PASS - Test fv3_decomp starting at Fri Apr 10 05:28:47 UTC 2020 (Compare FV3 decomp results with previous trunk version) - Fri Apr 10 05:28:47 UTC 2020 + Test fv3_decomp starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 decomp results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -846,23 +846,23 @@ TEST #15: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:30:48 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:46:00 UTC 2020 TEST #16: PASS - Test fv3_regional_quilt starting at Fri Apr 10 05:41:56 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) - Fri Apr 10 05:41:56 UTC 2020 + Test fv3_regional_quilt starting at Mon May 4 20:58:13 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical dynf000.nc: bit-for-bit identical dynf024.nc: bit-for-bit identical phyf000.nc: bit-for-bit identical phyf024.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:50:18 UTC 2020 + TEST PASSED AT Mon May 4 21:06:19 UTC 2020 TEST #17: PASS - Test fv3_csawmgshoc starting at Fri Apr 10 05:28:55 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) - Fri Apr 10 05:28:55 UTC 2020 + Test fv3_csawmgshoc starting at Mon May 4 20:44:30 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -907,13 +907,13 @@ TEST #17: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:32:16 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:47:24 UTC 2020 TEST #18: PASS - Test fv3_control_32bit starting at Fri Apr 10 05:41:56 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) - Fri Apr 10 05:41:56 UTC 2020 + Test fv3_control_32bit starting at Mon May 4 20:58:13 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -976,11 +976,11 @@ TEST #18: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:43:41 UTC 2020 + TEST PASSED AT Mon May 4 20:59:38 UTC 2020 TEST #19: PASS - Test fv3_gfdlmprad_32bit_post starting at Fri Apr 10 05:41:57 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) - Fri Apr 10 05:41:57 UTC 2020 + Test fv3_gfdlmprad_32bit_post starting at Mon May 4 20:58:13 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1027,11 +1027,11 @@ TEST #19: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:44:50 UTC 2020 + TEST PASSED AT Mon May 4 21:00:42 UTC 2020 TEST #20: PASS - Test fv3_csawmg3shoc127 starting at Fri Apr 10 05:29:08 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) - Fri Apr 10 05:29:08 UTC 2020 + Test fv3_csawmg3shoc127 starting at Mon May 4 20:44:30 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) + Mon May 4 20:44:30 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1076,13 +1076,13 @@ TEST #20: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:35:39 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:50:19 UTC 2020 TEST #21: PASS - Test fv3_read_inc starting at Fri Apr 10 05:29:56 UTC 2020 (Compare FV3 read_inc results with previous trunk version) - Fri Apr 10 05:29:56 UTC 2020 + Test fv3_read_inc starting at Mon May 4 20:47:55 UTC 2020 (Compare FV3 read_inc results with previous trunk version) + Mon May 4 20:47:55 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1147,13 +1147,13 @@ TEST #21: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:31:54 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:30 UTC 2020 TEST #22: PASS - Test fv3_satmedmf starting at Fri Apr 10 05:31:39 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:31:39 UTC 2020 + Test fv3_satmedmf starting at Mon May 4 20:47:55 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:47:55 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1198,13 +1198,13 @@ TEST #22: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:33:26 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:34 UTC 2020 TEST #23: PASS - Test fv3_control starting at Fri Apr 10 05:31:39 UTC 2020 (Compare FV3 control results with previous trunk version) - Fri Apr 10 05:31:39 UTC 2020 + Test fv3_control starting at Mon May 4 20:47:55 UTC 2020 (Compare FV3 control results with previous trunk version) + Mon May 4 20:47:55 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1269,13 +1269,13 @@ TEST #23: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:33:36 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:29 UTC 2020 TEST #24: PASS - Test fv3_gfdlmp starting at Fri Apr 10 05:31:40 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Fri Apr 10 05:31:40 UTC 2020 + Test fv3_gfdlmp starting at Mon May 4 20:47:56 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 20:47:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1320,13 +1320,13 @@ TEST #24: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:33:36 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:34 UTC 2020 TEST #25: PASS - Test fv3_gfdlmprad_noahmp starting at Fri Apr 10 05:31:39 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) - Fri Apr 10 05:31:39 UTC 2020 + Test fv3_gfdlmprad_noahmp starting at Mon May 4 20:47:56 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) + Mon May 4 20:47:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1371,13 +1371,13 @@ TEST #25: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:33:35 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:33 UTC 2020 TEST #26: PASS - Test fv3_2threads starting at Fri Apr 10 05:31:39 UTC 2020 (Compare FV3 2 threads results with previous trunk version) - Fri Apr 10 05:31:39 UTC 2020 + Test fv3_2threads starting at Mon May 4 20:47:56 UTC 2020 (Compare FV3 2 threads results with previous trunk version) + Mon May 4 20:47:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1442,13 +1442,13 @@ TEST #26: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:33:27 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:49:19 UTC 2020 TEST #27: PASS - Test fv3_wrtGauss_netcdf_esmf starting at Fri Apr 10 05:31:39 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Fri Apr 10 05:31:39 UTC 2020 + Test fv3_wrtGauss_netcdf_esmf starting at Mon May 4 20:47:56 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 20:47:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1493,13 +1493,13 @@ TEST #27: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:35:51 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:50:31 UTC 2020 TEST #28: PASS - Test fv3_csawmg starting at Fri Apr 10 05:33:22 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) - Fri Apr 10 05:33:22 UTC 2020 + Test fv3_csawmg starting at Mon May 4 20:47:56 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) + Mon May 4 20:47:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1544,13 +1544,13 @@ TEST #28: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:36:39 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:50:48 UTC 2020 TEST #29: PASS - Test fv3_wsm6 starting at Fri Apr 10 05:33:22 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Fri Apr 10 05:33:22 UTC 2020 + Test fv3_wsm6 starting at Mon May 4 20:49:38 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 20:49:38 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1615,13 +1615,13 @@ TEST #29: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:35:52 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:51:37 UTC 2020 TEST #30: PASS - Test fv3_stretched starting at Fri Apr 10 05:41:57 UTC 2020 (Stretched grid; compare against previous baseline) - Fri Apr 10 05:41:57 UTC 2020 + Test fv3_stretched starting at Mon May 4 20:58:13 UTC 2020 (Stretched grid; compare against previous baseline) + Mon May 4 20:58:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1672,11 +1672,11 @@ TEST #30: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 05:46:09 UTC 2020 + TEST PASSED AT Mon May 4 21:01:55 UTC 2020 TEST #31: PASS - Test fv3_wrtGauss_nemsio_c192 starting at Fri Apr 10 05:35:05 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:35:05 UTC 2020 + Test fv3_wrtGauss_nemsio_c192 starting at Mon May 4 20:51:22 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:51:22 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1721,13 +1721,13 @@ TEST #31: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:38:41 UTC 2020 + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:54:32 UTC 2020 TEST #32: PASS - Test fv3_rasmgshoc starting at Fri Apr 10 05:35:06 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) - Fri Apr 10 05:35:06 UTC 2020 + Test fv3_rasmgshoc starting at Mon May 4 20:51:22 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) + Mon May 4 20:51:22 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1772,10 +1772,10 @@ TEST #32: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - Actual md5sum: 8f6a1fa6d02ca6591af33250f5ad72ee - TEST PASSED AT Fri Apr 10 05:38:32 UTC 2020 -WORKFLOW REPORT AT Fri Apr 10 06:11:17 2020 (+1586499077) + Expected md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + Actual md5sum: f1cb87d84e9b1a3d8d081ce36120b3af + TEST PASSED AT Mon May 4 20:54:24 UTC 2020 +WORKFLOW REPORT AT Mon May 4 21:23:53 2020 (+1588627433) Tests: 0 failed, 32 passed out of 32 Builds: 0 failed, 4 passed out of 4 REGRESSION TEST WAS SUCCESSFUL diff --git a/log/report-wcoss_dell_p3-log/build_fv3.exe.log b/log/report-wcoss_dell_p3-log/build_fv3.exe.log index de886b8574..01529b75b7 100644 --- a/log/report-wcoss_dell_p3-log/build_fv3.exe.log +++ b/log/report-wcoss_dell_p3-log/build_fv3.exe.log @@ -1,13 +1,13 @@ + [[ fv3.exe == fv3_ww3.exe ]] + [[ fv3.exe == fv3.exe ]] -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe -+ modules=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3 ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe ++ modules=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3 + BUILD_NR= -+ fv3=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe ++ fv3=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe + MAKE_OPTS=' ' -+ md5=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe.md5 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3 ++ md5=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe.md5 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/ ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3 + which aprun which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/emc-utils-1.0.0/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/dell3/usrx/local/dev/emc_rocoto/ruby-2.5.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin) + [[ wcoss_dell_p3 == hera* ]] @@ -16,14 +16,13 @@ which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/us + [[ wcoss_dell_p3 == *jet* ]] ++ echo wcoss_dell_p3 ++ sed 's,\.,_,g' -+ ./compile.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 wcoss_dell_p3 ++ ./compile.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 wcoss_dell_p3 + SECONDS=0 + [[ 2 -lt 2 ]] -+ readonly PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 + readonly BUILD_TARGET=wcoss_dell_p3 + BUILD_TARGET=wcoss_dell_p3 -+ readonly MAKE_OPT= + MAKE_OPT= + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -47,7 +46,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Consider reducing $MAKE_THREADS if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ '' == *\C\C\P\P\=\Y* ]] + [[ '' == *\W\W\3\=\Y* ]] @@ -59,176 +58,178 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT= NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT= NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3" ++ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3 +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake all Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -237,10 +238,10 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -267,6 +268,7 @@ Using allocatable derived type array members. Using cray pointers. mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -275,7 +277,6 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../affinity/affinity.c -o ../affinity/affinity.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o @@ -353,11 +354,11 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL6 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -384,16 +385,15 @@ Using pure routines. Using allocatable derived type array members. Using cray pointers. mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o Using 8-byte addressing @@ -401,6 +401,7 @@ Using pure routines. Using allocatable derived type array members. Using cray pointers. mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o Using 8-byte addressing @@ -531,22 +532,22 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -555,195 +556,195 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -898,49 +899,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -953,66 +954,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1059,50 +1060,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1121,8 +1123,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1134,14 +1134,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1149,39 +1152,39 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -1190,10 +1193,10 @@ Currently Loaded Modules: -build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" @@ -1202,204 +1205,205 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:47:57 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:43:11 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe" ++ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT= NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=1036 -+ echo 'Elapsed time 1036 seconds. Compiling finished' -Elapsed time 1036 seconds. Compiling finished -+ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include -+ cp -fp ./fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe -+ cp -fp ./modules.fv3 /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3 +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ elapsed=1049 ++ echo 'Elapsed time 1049 seconds. Compiling finished' +Elapsed time 1049 seconds. Compiling finished ++ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include ++ cp -fp ./fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe ++ cp -fp ./modules.fv3 /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3 + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1408,43 +1412,43 @@ Elapsed time 1036 seconds. Compiling finished + unset md5 + set -xe + set -xe -+ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe -+ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3.exe ++ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe ++ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3.exe ------------------------------------------------------------ Sender: LSF System -Subject: Job 20303540: in cluster Done +Subject: Job 21666447: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:31:15 2020 -Job was executed on host(s) , in queue , as user in cluster at Fri Apr 10 05:31:16 2020 +Job was submitted from host by user in cluster at Mon May 4 20:26:17 2020 +Job was executed on host(s) , in queue , as user in cluster at Mon May 4 20:26:18 2020 was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:31:16 2020 -Terminated at Fri Apr 10 05:48:34 2020 -Results reported at Fri Apr 10 05:48:34 2020 + was used as the working directory. +Started at Mon May 4 20:26:18 2020 +Terminated at Mon May 4 20:43:48 2020 +Results reported at Mon May 4 20:43:48 2020 Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/src ; ./install.sh fv3.exe" +/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/src ; ./install.sh fv3.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 1536.52 sec. - Max Memory : 5277 MB - Average Memory : 883.14 MB + CPU time : 1552.39 sec. + Max Memory : 5034 MB + Average Memory : 913.31 MB Total Requested Memory : 6144.00 MB - Delta Memory : 867.00 MB + Delta Memory : 1110.00 MB Max Swap : - Max Processes : 33 Max Threads : 42 - Run time : 1044 sec. - Turnaround time : 1039 sec. + Run time : 1061 sec. + Turnaround time : 1051 sec. The output (if any) is above this job summary. -[Fri Apr 10 05:48:34 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.20303540 file not found or empty. Job is not eligible for ecflow abort notification. +[Mon May 4 20:43:48 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.21666447 file not found or empty. Job is not eligible for ecflow abort notification. diff --git a/log/report-wcoss_dell_p3-log/build_fv3_32bit.exe.log b/log/report-wcoss_dell_p3-log/build_fv3_32bit.exe.log index fbda896cb7..67862abc42 100644 --- a/log/report-wcoss_dell_p3-log/build_fv3_32bit.exe.log +++ b/log/report-wcoss_dell_p3-log/build_fv3_32bit.exe.log @@ -1,14 +1,14 @@ + [[ fv3_32bit.exe == fv3_ww3.exe ]] + [[ fv3_32bit.exe == fv3.exe ]] + [[ fv3_32bit.exe == fv3_32bit.exe ]] -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe -+ modules=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3_32bit ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe ++ modules=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3_32bit + BUILD_NR= -+ fv3=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe ++ fv3=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe + MAKE_OPTS=32BIT=Y -+ md5=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe.md5 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/ -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3_32bit ++ md5=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe.md5 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/ ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3_32bit + which aprun which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/emc-utils-1.0.0/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/dell3/usrx/local/dev/emc_rocoto/ruby-2.5.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin) + [[ wcoss_dell_p3 == hera* ]] @@ -17,14 +17,13 @@ which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/us + [[ wcoss_dell_p3 == *jet* ]] ++ echo wcoss_dell_p3 ++ sed 's,\.,_,g' -+ ./compile.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 wcoss_dell_p3 32BIT=Y ++ ./compile.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 wcoss_dell_p3 32BIT=Y + SECONDS=0 + [[ 3 -lt 2 ]] -+ readonly PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ++ readonly PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 + readonly BUILD_TARGET=wcoss_dell_p3 + BUILD_TARGET=wcoss_dell_p3 -+ readonly MAKE_OPT=32BIT=Y + MAKE_OPT=32BIT=Y + readonly BUILD_NAME=fv3 + BUILD_NAME=fv3 @@ -33,7 +32,7 @@ which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/us + readonly clean_after=YES + clean_after=YES + hostname -v71e8 +v71e5 + echo 'Compiling 32BIT=Y into fv3.exe on wcoss_dell_p3' Compiling 32BIT=Y into fv3.exe on wcoss_dell_p3 + gnu_make=gmake @@ -48,7 +47,7 @@ Using $MAKE_THREADS=8 threads to build FV3 and FMS. + echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. Consider reducing $MAKE_THREADS if you hit memory or process limits. + gnu_make='gmake -j 8' -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../NEMS ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../NEMS + COMPONENTS=FMS,FV3 + [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] + [[ 32BIT=Y == *\W\W\3\=\Y* ]] @@ -60,13 +59,14 @@ Consider reducing $MAKE_THREADS if you hit memory or process limits. + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= distclean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -77,184 +77,185 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= build Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3" -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/modules.fv3 -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -gmake -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3" ++ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/modules.fv3 +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y all Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -263,10 +264,10 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o @@ -292,16 +293,16 @@ Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../affinity/affinity.c -o ../affinity/affinity.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../memutils/memuse.c -o ../memutils/memuse.o mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -xHOST -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o @@ -404,12 +405,12 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL6 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o Using 8-byte addressing Using pure routines. @@ -419,8 +420,8 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL6 mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -429,11 +430,11 @@ mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL6 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o Using 8-byte addressing @@ -557,22 +558,22 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling 32BIT=Y into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall +mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling 32BIT=Y into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=Y nemsinstall Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -581,195 +582,195 @@ Currently Loaded Modules: -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -gmake -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -924,49 +925,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -gmake -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +gmake -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -gmake -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +gmake -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -979,66 +980,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1085,50 +1086,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -gmake -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1147,8 +1149,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1160,14 +1160,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -gmake libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1175,39 +1178,39 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -gmake esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +gmake esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ gmake nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -1216,10 +1219,10 @@ Currently Loaded Modules: -build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" @@ -1228,204 +1231,205 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && gmake stub -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:07:22 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:01:06 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe" -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/fv3.exe +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +set -xe ; cp "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe" ++ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/tests/fv3.exe + '[' YES = YES ']' + gmake -j 8 -k COMPONENTS=FMS,FV3 TEST_BUILD_NAME=fv3 BUILD_ENV=wcoss_dell_p3 FV3_MAKEOPT=32BIT=Y NEMS_BUILDOPT= clean Will copy modules.nems and NEMS.x as fv3 under tests/ NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec gmake 32BIT=Y -f makefile.temp.clean clean -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ ls -1 */*.a */*.o */*.mod */depend \ | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ rm -rf FMS_INSTALL || true -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec gmake \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec gmake \ -k cleanall FMS_DIR=/dev/null -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; gmake "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; gmake clean -gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ elapsed=1051 -+ echo 'Elapsed time 1051 seconds. Compiling 32BIT=Y finished' -Elapsed time 1051 seconds. Compiling 32BIT=Y finished -+ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include -+ cp -fp ./fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe -+ cp -fp ./modules.fv3 /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules.fv3_32bit +gmake[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ elapsed=1070 ++ echo 'Elapsed time 1070 seconds. Compiling 32BIT=Y finished' +Elapsed time 1070 seconds. Compiling 32BIT=Y finished ++ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include ++ cp -fp ./fv3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe ++ cp -fp ./modules.fv3 /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules.fv3_32bit + md5sum ./fv3.exe + unset modules + unset BUILD_NR @@ -1434,43 +1438,43 @@ Elapsed time 1051 seconds. Compiling 32BIT=Y finished + unset md5 + set -xe + set -xe -+ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe -+ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_32bit.exe ++ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe ++ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_32bit.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 20304217: in cluster Done +Sender: LSF System +Subject: Job 21666960: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:50:20 2020 -Job was executed on host(s) , in queue , as user in cluster at Fri Apr 10 05:50:28 2020 +Job was submitted from host by user in cluster at Mon May 4 20:43:53 2020 +Job was executed on host(s) , in queue , as user in cluster at Mon May 4 20:43:54 2020 was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:50:28 2020 -Terminated at Fri Apr 10 06:08:00 2020 -Results reported at Fri Apr 10 06:08:00 2020 + was used as the working directory. +Started at Mon May 4 20:43:54 2020 +Terminated at Mon May 4 21:01:46 2020 +Results reported at Mon May 4 21:01:46 2020 Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/src ; ./install.sh fv3_32bit.exe" +/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/src ; ./install.sh fv3_32bit.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 1538.58 sec. - Max Memory : 5276 MB - Average Memory : 886.47 MB + CPU time : 1574.96 sec. + Max Memory : 5197 MB + Average Memory : 1106.09 MB Total Requested Memory : 6144.00 MB - Delta Memory : 868.00 MB + Delta Memory : 947.00 MB Max Swap : - Max Processes : 33 Max Threads : 42 - Run time : 1057 sec. - Turnaround time : 1060 sec. + Run time : 1074 sec. + Turnaround time : 1073 sec. The output (if any) is above this job summary. -[Fri Apr 10 06:08:00 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.20304217 file not found or empty. Job is not eligible for ecflow abort notification. +[Mon May 4 21:01:46 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.21666960 file not found or empty. Job is not eligible for ecflow abort notification. diff --git a/log/report-wcoss_dell_p3-log/build_fv3_appbuilder.exe.log b/log/report-wcoss_dell_p3-log/build_fv3_appbuilder.exe.log index 68d989cf5e..310182fa1b 100644 --- a/log/report-wcoss_dell_p3-log/build_fv3_appbuilder.exe.log +++ b/log/report-wcoss_dell_p3-log/build_fv3_appbuilder.exe.log @@ -2,27 +2,28 @@ + [[ fv3_appbuilder.exe == fv3.exe ]] + [[ fv3_appbuilder.exe == fv3_32bit.exe ]] + [[ fv3_appbuilder.exe == fv3_appbuilder.exe ]] -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe -+ md5sum=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe.md5 ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe ++ md5sum=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe.md5 + OPTS=app=standaloneFV3 -+ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules_appbuilder.fv3 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules_appbuilder.fv3 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model + which aprun which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/emc-utils-1.0.0/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/dell3/usrx/local/dev/emc_rocoto/ruby-2.5.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin) + ./NEMS/NEMSAppBuilder rebuild app=standaloneFV3 ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=standaloneFV3 distclean -Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder +...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -33,176 +34,177 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk -GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing rm -f -f *.tmp.f90 *.lst *.o *.mod lm map cd ENS_Cpl ; make clean -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=standaloneFV3 build -Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder -...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/standaloneFV3.appBuilder.mk -echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder +...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/standaloneFV3.appBuilder.mk +echo 'FMS FV3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -211,10 +213,10 @@ Currently Loaded Modules: -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -505,22 +507,22 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -529,195 +531,195 @@ Currently Loaded Modules: -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -872,49 +874,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -927,66 +929,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1033,50 +1035,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1095,8 +1098,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1108,14 +1109,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1123,39 +1127,39 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ +for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk ; \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3" \ - FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -1164,10 +1168,10 @@ Currently Loaded Modules: -build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk Components in linker order: FV3 FMS -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" @@ -1176,110 +1180,110 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 06:28:36 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 21:22:41 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe -+ cp -fp conf/modules.nems /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules_appbuilder.fv3 -+ md5sum /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe ++ cp -fp conf/modules.nems /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules_appbuilder.fv3 ++ md5sum /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe -+ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe ++ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe ++ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 20304942: in cluster Done +Sender: LSF System +Subject: Job 21667868: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 06:09:34 2020 -Job was executed on host(s) , in queue , as user in cluster at Fri Apr 10 06:09:36 2020 +Job was submitted from host by user in cluster at Mon May 4 21:03:22 2020 +Job was executed on host(s) , in queue , as user in cluster at Mon May 4 21:03:23 2020 was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 06:09:36 2020 -Terminated at Fri Apr 10 06:29:13 2020 -Results reported at Fri Apr 10 06:29:13 2020 + was used as the working directory. +Started at Mon May 4 21:03:23 2020 +Terminated at Mon May 4 21:23:19 2020 +Results reported at Mon May 4 21:23:19 2020 Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/src ; ./install.sh fv3_appbuilder.exe" +/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/src ; ./install.sh fv3_appbuilder.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 1141.93 sec. - Max Memory : 5275 MB - Average Memory : 696.55 MB + CPU time : 1152.26 sec. + Max Memory : 5036 MB + Average Memory : 681.40 MB Total Requested Memory : 6144.00 MB - Delta Memory : 869.00 MB + Delta Memory : 1108.00 MB Max Swap : - Max Processes : 13 Max Threads : 14 - Run time : 1177 sec. - Turnaround time : 1179 sec. + Run time : 1206 sec. + Turnaround time : 1197 sec. The output (if any) is above this job summary. -[Fri Apr 10 06:29:13 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.20304942 file not found or empty. Job is not eligible for ecflow abort notification. +[Mon May 4 21:23:19 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.21667868 file not found or empty. Job is not eligible for ecflow abort notification. diff --git a/log/report-wcoss_dell_p3-log/build_fv3_ww3.exe.log b/log/report-wcoss_dell_p3-log/build_fv3_ww3.exe.log index 0a39fe301e..96d6225dc1 100644 --- a/log/report-wcoss_dell_p3-log/build_fv3_ww3.exe.log +++ b/log/report-wcoss_dell_p3-log/build_fv3_ww3.exe.log @@ -1,25 +1,26 @@ + [[ fv3_ww3.exe == fv3_ww3.exe ]] -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe -+ md5sum=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe.md5 ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe ++ md5sum=/gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe.md5 + OPTS=app=coupledFV3_WW3 -+ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include -+ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules_fv3_ww3 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model ++ mkdir -p /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include ++ rm -f /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules_fv3_ww3 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model + which aprun which: no aprun in (/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/emc-utils-1.0.0/bin:/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/dell3/usrx/local/dev/emc_rocoto/ruby-2.5.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin) + ./NEMS/NEMSAppBuilder rebuild app=coupledFV3_WW3 ls: cannot access ../conf/component_*.mk: No such file or directory NEMSAppBuilder: make app=coupledFV3_WW3 distclean -Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ - > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +cat /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make -f makefile.temp.clean clean -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Cleaning fms ... cd .. ; \ @@ -30,118 +31,118 @@ ls: cannot access */*.a: No such file or directory ls: cannot access */*.o: No such file or directory ls: cannot access */*.mod: No such file or directory ls: cannot access */depend: No such file or directory -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; exec make \ +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs/makefile.temp.clean +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; exec make \ -k cleanall FMS_DIR=/dev/null -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Cleaning ... (cd gfsphysics && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Cleaning gfsphysics ... rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' (cd ccpp/driver && make clean) Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' makefile:67: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Build CCPP layer ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' Cleaning CCPP_layer ... rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/driver' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ccpp/driver' (cd ipd && make clean) Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Cleaning ipd ... rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' (cd ../stochastic_physics && make clean) Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory cc -E four_to_grid_stochy.F > four_to_grid_stochy.f Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Cleaning stochastic_physics ... rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' (cd io && make clean) Build standalone FV3 io ... $ESMF_INC is [] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Cleaning io ... rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' (cd atmos_cubed_sphere && make clean) Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Cleaning fv3core ... rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' (cd cpl && make clean) Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Cleaning io ... rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend rm -f -rf nems_dir fv3.mk FV3_INSTALL rm -f -f conf/modules.fv3 rm -f -f conf/configure.fv3 -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/configure.fv3 \ - /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/conf/modules.fv3 -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ -export COMP_SRCDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_dell_p3" ; \ +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +rm -rf nems_dir FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/configure.fv3 \ + /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/conf/modules.fv3 +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ; \ +export COMP_SRCDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_dell_p3" ; \ export ESMFMKFILE=/dev/null ; \ exec make distclean Lmod has detected the following error: The following module(s) are unknown: @@ -158,49 +159,49 @@ Also make sure that all modulefiles written in TCL start with the string No modules loaded which: no nc-config in (/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin) -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_clean -c +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_multi_esmf *.o *.mod +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_clean -c ***************************** *** WAVEWATCH III clean *** ***************************** - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_SEQ - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_HYB - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_SEQ - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin - Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/exe - Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/../regtests -\rm -fr /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp -\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -cd "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" ; \ + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_SEQ + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_HYB + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_SEQ + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin + Remove /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe + Clean up /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/../regtests +\rm -fr /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp +\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +cd "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" ; \ rm -rf exe mod* obj* tmp ftn/makefile ftn/makefile_DIST \ ftn/makefile_SHRD esmf/wwatch3.env aux/makefile \ bin/link bin/comp ; \ find . -name '*.o' -o -name '*.mod' -o -name '*.a' \ | xargs rm -f -rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ - cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ +rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +if ! test -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ delete_nuopc=yes ; \ fi ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; make "COMPONENTS=FMS FV3 WW3" \ INCLUDES_ARE_OPTIONAL=YES clean ; \ if [ "$delete_nuopc" = yes ] ; then \ - rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ + rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC ; \ fi -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -GNUmakefile:16: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +GNUmakefile:16: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory Components in linker order: WW3 FV3 FMS WW3: include GNUmakefile:70: : component WW3 makefile fragment is missing @@ -208,48 +209,49 @@ FV3: include GNUmakefile:70: : component FV3 makefile fragment is missing FMS: include GNUmakefile:70: : component FMS makefile fragment is missing -make[1]: *** No rule to make target `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk'. Stop. -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk -rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test_results.mk +make[1]: *** No rule to make target `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk'. Stop. +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk +rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test_results.mk NEMSAppBuilder: make app=coupledFV3_WW3 build -Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder -...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/coupledFV3_WW3.appBuilder.mk -echo 'FMS FV3 WW3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/components.mk" +Convert /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder +...into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +Include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/coupledFV3_WW3.appBuilder.mk +echo 'FMS FV3 WW3' > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS Adding FV3 makeopts to FMS makeopts -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems -cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/externals.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ESMFVersionDefine.h -( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.sh" -( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ -echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf' ; \ -echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems.csh" -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory -make -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/incmake/tests.mk \ - MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ - TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/conf/configure.fv3.wcoss_dell_p3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems +cat /dev/null > /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/externals.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ESMFVersionDefine.h +( echo '. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.sh" +( echo 'source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems.csh" +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/configure_rules.mk:3: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk: No such file or directory +make -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" TEST +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' if [ -f "/modules.nems" ] ; then \ - . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ + . /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=unlimited ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ fi ; \ ( \ echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ echo "CASELESS_FILESYSTEM=NO" ; \ if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ -) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/test-results.mk" -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS' -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs ; \ +) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/test-results.mk" +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS' +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs ; \ exec make all Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -258,10 +260,10 @@ Currently Loaded Modules: -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' Building dependencies ... -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o Using 8-byte addressing Using pure routines. @@ -552,22 +554,22 @@ a - ../mosaic/mosaic_util.o a - ../mosaic/read_mosaic.o a - ../mpp/nsclock.o a - ../mpp/threadloc.o -mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL" -mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/." -cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL"/. -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/fv3gfs' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL on wcoss -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/configure.fv3 -cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/modules.nems \ - "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3"/conf/modules.fv3 -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 ; \ - exec make COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL nemsinstall +mkdir -p "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL" +mv fms.mk "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL"/. +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/fv3gfs' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +Compiling into /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL on wcoss +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/configure.fv3 +cp -fp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/modules.nems \ + "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3"/conf/modules.fv3 +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 ; \ + exec make COMP=FV3 COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL MACHINE_ID=wcoss FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL nemsinstall Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -576,195 +578,195 @@ Currently Loaded Modules: -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' Building dependencies ... -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make -C cpl FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' Build standalone FV3 io ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o ar: creating libfv3cpl.a a - module_cplfields.o a - module_cap_cpl.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl' -make -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl' +make -C gfsphysics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -makefile:278: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +makefile:269: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/machine.F -o physics/machine.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cnvc90.f -o physics/cnvc90.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/co2hc.f -o physics/co2hc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/date_def.f -o physics/date_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.f -o physics/dcyc2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/dcyc2.pre.rad.f -o physics/dcyc2.pre.rad.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/efield.f -o physics/efield.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tracer_const_h.f -o physics/tracer_const_h.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs.f -o physics/get_prs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gocart_tracer_config_stub.f -o physics/gocart_tracer_config_stub.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/funcphys.f90 -o physics/funcphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscond.f -o physics/gscond.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gscondp.f -o physics/gscondp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdc.f -o physics/gwdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gwdps.f -o physics/gwdps.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_initialize.F90 -o physics/cires_ugwp_initialize.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_module.F90 -o physics/cires_ugwp_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ugwp_driver_v0.f -o physics/ugwp_driver_v0.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_orowam2017.f -o physics/cires_orowam2017.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2o_def.f -o physics/h2o_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2oc.f -o physics/h2oc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ohdc.f -o physics/h2ohdc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ophys.f -o physics/h2ophys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ideaca.f -o physics/ideaca.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_composition.f -o physics/idea_composition.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_co2.f -o physics/idea_co2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_dissipation.f -o physics/idea_dissipation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_h2o.f -o physics/idea_h2o.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wam_f107_kp_mod.f90 -o physics/wam_f107_kp_mod.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_ion.f -o physics/idea_ion.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_o2_o3.f -o physics/idea_o2_o3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_phys.f -o physics/idea_phys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_solar_heating.f -o physics/idea_solar_heating.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/idea_tracer.f -o physics/idea_tracer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iounitdef.f -o physics/iounitdef.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/lrgsclr.f -o physics/lrgsclr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbl.f -o physics/mfpbl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpblt.f -o physics/mfpblt.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfpbltq.f -o physics/mfpbltq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscu.f -o physics/mfscu.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mfscuq.f -o physics/mfscuq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_bfmicrophysics.f -o physics/module_bfmicrophysics.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf.f -o physics/moninedmf.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninedmf_hafs.f -o physics/moninedmf_hafs.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp.f -o physics/moninp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninp1.f -o physics/moninp1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq.f -o physics/moninq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninq1.f -o physics/moninq1.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/moninshoc.f -o physics/moninshoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadb.f -o physics/mstadb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn.f -o physics/mstadbtn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstadbtn2.f -o physics/mstadbtn2.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/mstcnv.f -o physics/mstcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozne_def.f -o physics/ozne_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccn_def.f -o physics/iccn_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerclm_def.f -o physics/aerclm_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys.f -o physics/ozphys.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozphys_2015.f -o physics/ozphys_2015.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd.f -o physics/precpd.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpd_shoc.f -o physics/precpd_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/precpdp.f -o physics/precpdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progtm_module.f -o physics/progtm_module.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/progt2.f -o physics/progt2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/surface_perturbation.F90 -o physics/surface_perturbation.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_param.f -o physics/radlw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_datatb.f -o physics/radlw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radlw_main.f -o physics/radlw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_param.f -o physics/radsw_param.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rascnvv2.f -o physics/rascnvv2.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_typedefs.F90 -o GFS_layer/GFS_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX-I -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_aerosols.f -o physics/radiation_aerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_astronomy.f -o physics/radiation_astronomy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_surface.f -o physics/radiation_surface.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_datatb.f -o physics/radsw_datatb.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radsw_main.f -o physics/radsw_main.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_gases.f -o physics/radiation_gases.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/radiation_clouds.f -o physics/radiation_clouds.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_radiation_driver.F90 > GFS_layer/GFS_radiation_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_radiation_driver.tmp.f90 -o GFS_layer/GFS_radiation_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rad_initialize.f -o physics/rad_initialize.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp.f -o physics/rayleigh_damp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/rayleigh_damp_mesopause.f -o physics/rayleigh_damp_mesopause.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfaerosols.f -o physics/samfaerosols.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfdeepcnv.f -o physics/samfdeepcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/samfshalcnv.f -o physics/samfshalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnv.f -o physics/sascnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sascnvn.f -o physics/sascnvn.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdif.f -o physics/satmedmfvdif.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/satmedmfvdifq.f -o physics/satmedmfvdifq.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_cice.f -o physics/sfc_cice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diag.f -o physics/sfc_diag.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_diff.f -o physics/sfc_diff.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_drv.f -o physics/sfc_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_wrf_utl.f90 -o physics/module_wrf_utl.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmp_glacier.f90 -o physics/module_sf_noahmp_glacier.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_sf_noahmplsm.f90 -o physics/module_sf_noahmplsm.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_noahmp_drv.f -o physics/sfc_noahmp_drv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_parameters.f90 -o physics/module_nst_parameters.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_water_prop.f90 -o physics/module_nst_water_prop.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_nst_model.f90 -o physics/module_nst_model.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_nst.f -o physics/sfc_nst.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_ocean.f -o physics/sfc_ocean.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfc_sice.f -o physics/sfc_sice.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sflx.f -o physics/sflx.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcnv.f -o physics/shalcnv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv.f -o physics/shalcv.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_1lyr.f -o physics/shalcv_1lyr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_fixdp.f -o physics/shalcv_fixdp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/shalcv_opr.f -o physics/shalcv_opr.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/tridi2t3.f -o physics/tridi2t3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/calpreciptype.f90 -o physics/calpreciptype.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcm_shoc.f90 -o physics/gcm_shoc.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/get_prs_fv3.f90 -o physics/get_prs_fv3.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/h2ointerp.f90 -o physics/h2ointerp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/ozinterp.f90 -o physics/ozinterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/iccninterp.f90 -o physics/iccninterp.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aerinterp.f90 -o physics/aerinterp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/aer_cloud.F -o physics/aer_cloud.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/wv_saturation.F -o physics/wv_saturation.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldmacro.F -o physics/cldmacro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cldwat2m_micro.F -o physics/cldwat2m_micro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfs_phy_tracer_config.F -o physics/gfs_phy_tracer_config.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/num_parthds.F -o physics/num_parthds.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/sfcsub.F -o physics/sfcsub.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gcycle.F90 -o physics/gcycle.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_utils.F90 -o physics/cires_ugwp_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_triggers.F90 -o physics/cires_ugwp_triggers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_ugwp_solvers.F90 -o physics/cires_ugwp_solvers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_lsatdis.F90 -o physics/cires_vert_lsatdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_orodis.F90 -o physics/cires_vert_orodis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cires_vert_wmsdis.F90 -o physics/cires_vert_wmsdis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_radar.F90 -o physics/module_mp_radar.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/gfdl_cloud_microphys.F90 -o physics/gfdl_cloud_microphys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg_utils.F90 -o physics/micro_mg_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg2_0.F90 -o physics/micro_mg2_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/micro_mg3_0.F90 -o physics/micro_mg3_0.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/m_micro_driver.F90 -o physics/m_micro_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/cs_conv.F90 -o physics/cs_conv.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/GFS_debug.F90 -o physics/GFS_debug.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_thompson_gfs.F90 -o physics/module_mp_thompson_gfs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c physics/module_mp_wsm6_fv3.F90 -o physics/module_mp_wsm6_fv3.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_physics_driver.F90 > GFS_layer/GFS_physics_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_physics_driver.tmp.f90 -o GFS_layer/GFS_physics_driver.o mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o ar rv libgfsphys.a physics/cnvc90.o physics/co2hc.o physics/date_def.o physics/dcyc2.o physics/dcyc2.pre.rad.o physics/efield.o physics/get_prs.o physics/gocart_tracer_config_stub.o physics/gscond.o physics/gscondp.o physics/gwdc.o physics/gwdps.o physics/ugwp_driver_v0.o physics/cires_orowam2017.o physics/h2o_def.o physics/h2oc.o physics/h2ohdc.o physics/h2ophys.o physics/ideaca.o physics/idea_co2.o physics/idea_composition.o physics/idea_dissipation.o physics/idea_h2o.o physics/idea_ion.o physics/idea_o2_o3.o physics/idea_phys.o physics/idea_solar_heating.o physics/idea_tracer.o physics/iounitdef.o physics/lrgsclr.o physics/mersenne_twister.o physics/mfpbl.o physics/mfpblt.o physics/mfpbltq.o physics/mfscu.o physics/mfscuq.o physics/module_bfmicrophysics.o physics/moninedmf.o physics/moninedmf_hafs.o physics/moninp.o physics/moninp1.o physics/moninq.o physics/moninq1.o physics/moninshoc.o physics/mstadb.o physics/mstadbtn.o physics/mstadbtn2.o physics/mstcnv.o physics/namelist_soilveg.o physics/ozne_def.o physics/iccn_def.o physics/aerclm_def.o physics/ozphys.o physics/ozphys_2015.o physics/physparam.o physics/precpd.o physics/precpd_shoc.o physics/precpdp.o physics/progt2.o physics/progtm_module.o physics/rad_initialize.o physics/radiation_aerosols.o physics/radiation_astronomy.o physics/radiation_clouds.o physics/radiation_gases.o physics/radiation_surface.o physics/radlw_datatb.o physics/radlw_main.o physics/radlw_param.o physics/radsw_datatb.o physics/radsw_main.o physics/radsw_param.o physics/rascnvv2.o physics/rayleigh_damp.o physics/rayleigh_damp_mesopause.o physics/samfaerosols.o physics/samfdeepcnv.o physics/samfshalcnv.o physics/sascnv.o physics/sascnvn.o physics/satmedmfvdif.o physics/satmedmfvdifq.o physics/set_soilveg.o physics/sfc_cice.o physics/sfc_diag.o physics/sfc_diff.o physics/sfc_drv.o physics/sfc_noahmp_drv.o physics/sfc_nst.o physics/sfc_ocean.o physics/sfc_sice.o physics/sflx.o physics/shalcnv.o physics/shalcv.o physics/shalcv_1lyr.o physics/shalcv_fixdp.o physics/shalcv_opr.o physics/tracer_const_h.o physics/tridi2t3.o physics/calpreciptype.o physics/funcphys.o physics/gcm_shoc.o physics/get_prs_fv3.o physics/h2ointerp.o physics/module_nst_model.o physics/module_nst_parameters.o physics/module_nst_water_prop.o physics/ozinterp.o physics/module_wrf_utl.o physics/noahmp_tables.o physics/module_sf_noahmplsm.o physics/module_sf_noahmp_glacier.o physics/iccninterp.o physics/aerinterp.o physics/wam_f107_kp_mod.o physics/aer_cloud.o physics/cldmacro.o physics/cldwat2m_micro.o physics/gfs_phy_tracer_config.o physics/machine.o physics/num_parthds.o physics/sfcsub.o physics/wv_saturation.o physics/GFDL_parse_tracers.o physics/gcycle.o physics/cires_ugwp_initialize.o physics/cires_ugwp_module.o physics/cires_ugwp_utils.o physics/cires_ugwp_triggers.o physics/cires_ugwp_solvers.o physics/cires_vert_lsatdis.o physics/cires_vert_orodis.o physics/cires_vert_wmsdis.o physics/gfdl_cloud_microphys.o physics/micro_mg_utils.o physics/micro_mg2_0.o physics/micro_mg3_0.o physics/m_micro_driver.o physics/cs_conv.o physics/GFS_debug.o physics/module_mp_radar.o physics/module_mp_thompson_gfs.o physics/module_mp_wsm6_fv3.o physics/physcons.o physics/surface_perturbation.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_physics_driver.o GFS_layer/GFS_radiation_driver.o GFS_layer/GFS_restart.o GFS_layer/GFS_typedefs.o ar: creating libgfsphys.a a - physics/cnvc90.o @@ -919,49 +921,49 @@ a - GFS_layer/GFS_physics_driver.o a - GFS_layer/GFS_radiation_driver.o a - GFS_layer/GFS_restart.o a - GFS_layer/GFS_typedefs.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics' -make -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics' +make -C ipd FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' makefile:54: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' Build standalone FV3 gfsphysics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../namphysics -c IPD_driver.F90 -o IPD_driver.o ar rv libipd.a IPD_driver.o IPD_typedefs.o ar: creating libipd.a a - IPD_driver.o a - IPD_typedefs.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd' -make -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd' +make -C io FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' Build standalone FV3 io ... $ESMF_INC is [-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include] -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_gfs.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -c post_nems_routines.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -c module_fv3_io_def.F90 -o module_fv3_io_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o ar: creating libfv3io.a a - ffsync.o @@ -974,66 +976,66 @@ a - module_write_netcdf_parallel.o a - module_fv3_io_def.o a - module_write_internal_state.o a - module_wrt_grid_comp.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io' -make -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io' +make -C atmos_cubed_sphere FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' Build standalone FV3 fv3core ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_arrays.F90 -o model/fv_arrays.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. Using cray pointers. -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_cmp.F90 -o model/fv_cmp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I../namphysics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o Using 8-byte addressing Using pure routines. Using allocatable derived type array members. @@ -1080,50 +1082,51 @@ a - tools/test_cases.o a - driver/fvGFS/DYCORE_typedefs.o a - driver/fvGFS/fv_nggps_diag.o a - driver/fvGFS/atmosphere.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere' -make -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere' +make -C ../stochastic_physics FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -makefile:86: depend: No such file or directory +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +makefile:87: depend: No such file or directory Building dependencies ... -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' Build standalone FV3 stochastic_physics ... -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.f90 -o update_ca.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata.f90 -o cellular_automata.o -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o -ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o cellular_automata.o update_ca.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c spectral_layout.F90 -o spectral_layout.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c glats_stochy.f -o glats_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c num_parthds_stochy.f -o num_parthds_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c stochastic_physics.F90 -o stochastic_physics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -I../FV3/namphysics -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o num_parthds_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o ar: creating libstochastic_physics.a a - stochy_gg_def.o a - stochy_resol_def.o @@ -1142,8 +1145,6 @@ a - getcon_lag_stochy.o a - pln2eo_stochy.o a - dozeuv_stochy.o a - dezouv_stochy.o -a - cellular_automata.o -a - update_ca.o a - plumes.o a - spectral_layout.o a - getcon_spectral.o @@ -1155,14 +1156,17 @@ a - stochy_patterngenerator.o a - stochy_data_mod.o a - get_stochy_pattern.o a - initialize_spectral_mod.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/stochastic_physics' -make libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 -mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/stochastic_physics' +make libfv3cap.a FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o ar: creating libfv3cap.a a - atmos_model.o @@ -1170,26 +1174,26 @@ a - module_fv3_config.o a - module_fcst_grid_comp.o a - time_utils.o a - fv3_cap.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -make esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +make esmf_make_fragment FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' # additional include files needed for PGI -#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/nems_dir" >> fv3.mk +#@echo "ESMF_DEP_INCPATH = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/nems_dir" >> fv3.mk Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL" complete! +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +Installation into "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL" complete! -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3' -test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf ; \ -export COMP_SRCDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_dell_p3" ; \ +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3' +test -d /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; set -x ; cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ; \ +export COMP_SRCDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model" COMP_BINDIR="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" WW3_COMP="wcoss_dell_p3" ; \ exec make -j 1 WW3_COMP="wcoss_dell_p3" ww3_nems Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -1198,26 +1202,26 @@ Currently Loaded Modules: -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf -+ export COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=wcoss_dell_p3 -+ COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -+ COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf ++ export COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL WW3_COMP=wcoss_dell_p3 ++ COMP_SRCDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model ++ COMP_BINDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL + WW3_COMP=wcoss_dell_p3 + exec make -j 1 WW3_COMP=wcoss_dell_p3 ww3_nems -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' ***************************** *** WAVEWATCH III setup *** ***************************** -[INFO] local env file wwatch3.env found in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env - Setup file /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/wwatch3.env found +[INFO] local env file wwatch3.env found in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env + Setup file /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/wwatch3.env found Printer (listings) : auxiliary FORTRAN compiler : gfortran auxiliary C compiler : gcc - Source directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model - Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp + Source directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model + Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source code : yes Save listings : yes @@ -1225,31 +1229,31 @@ make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG Compile auxiliary programs -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' -gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3adc w3adc.f -gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3list w3list.f -gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f -gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3split w3split.f -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/aux' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux' +gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3adc w3adc.f +gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3list w3list.f +gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3prnt w3prnt.f +gfortran -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3split w3split.f +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/aux' Setup comp & link files - sed /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp.tmpl => /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/comp - sed /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link.tmpl => /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/link + sed /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/comp.tmpl => /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/comp + sed /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/link.tmpl => /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/link Create required model subdirectories Finished setting up WAVEWATCH III -\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grid +\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/tempswitch +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_grid ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1261,12 +1265,12 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch Checking all subroutines for modules (this may take a while) ... Processing ww3_grid --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing w3servmd ad3 : processing w3arrymd @@ -1274,34 +1278,34 @@ ad3 : processing w3gsrumd ad3 : processing w3gdatmd ad3 : processing w3idatmd ad3 : processing w3odatmd +ad3 : processing w3nmlgridmd +ad3 : processing w3adatmd ad3 : processing w3dispmd ad3 : processing w3timemd -ad3 : processing w3adatmd -ad3 : processing w3nmlgridmd ad3 : processing wmmdatmd ad3 : processing w3src4md ad3 : processing w3triamd ad3 : processing w3snl1md ad3 : processing w3parall -ad3 : processing w3iogrmd ad3 : processing w3wdatmd +ad3 : processing w3iogrmd ad3 : processing ww3_grid Linking ww3_grid -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outf +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_outf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1310,27 +1314,27 @@ Shared Object : No Processing ww3_outf --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3sbt1md +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3sdb1md ad3 : processing w3iogomd +ad3 : processing w3sbt1md ad3 : processing ww3_outf Linking ww3_outf -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_outp +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_outp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1339,28 +1343,28 @@ Shared Object : No Processing ww3_outp --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3partmd -ad3 : processing w3iopomd +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3bullmd +ad3 : processing w3iopomd +ad3 : processing w3partmd ad3 : processing w3flx1md ad3 : processing ww3_outp Linking ww3_outp -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prep +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_prep ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1369,25 +1373,25 @@ Shared Object : No Processing ww3_prep --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3fldsmd ad3 : processing ww3_prep Linking ww3_prep -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_gint +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_gint ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1396,111 +1400,111 @@ Shared Object : No Processing ww3_gint --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_gint Linking ww3_gint -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_prnc ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_prnc -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_prnc --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlprncmd ad3 : processing ww3_prnc Linking ww3_prnc -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_ounf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_ounf -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_ounf --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' -ad3 : processing w3iorsmd +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlounfmd +ad3 : processing w3iorsmd ad3 : processing w3initmd ad3 : processing ww3_ounf Linking ww3_ounf -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_ounp ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_ounp -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_ounp --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing w3nmlounpmd ad3 : processing ww3_ounp Linking ww3_ounp -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/tempswitch -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_grib +\rm -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/tempswitch +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_grib ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No @@ -1512,56 +1516,59 @@ Making makefile ... *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch new GRIB package Checking all subroutines for modules (this may take a while) ... Processing ww3_grib --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_grib Linking ww3_grib -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf +\rm -rf /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +\mkdir -p /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +\cp -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_* /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_multi_esmf ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_multi_esmf -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Making makefile ... ***************************** *** WAVEWATCH III makefile *** ***************************** -switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/switch +switch = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/switch new shared / distributed memory new message passing protocol Checking all subroutines for modules (this may take a while) ... Processing ww3_multi_esmf --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing constants ad3 : processing scrip_kindsmod [no w3adc] ad3 : processing w3uqckmd +ad3 : processing scrip_constants [no w3adc] ad3 : processing scrip_iounitsmod [no w3adc] ad3 : processing scrip_timers [no w3adc] -ad3 : processing scrip_constants [no w3adc] ad3 : processing w3servmd ad3 : processing scrip_errormod [no w3adc] ad3 : processing scrip_netcdfmod [no w3adc] @@ -1571,9 +1578,9 @@ ad3 : processing w3arrymd ad3 : processing w3cspcmd ad3 : processing wmunitmd ad3 : processing scrip_remap_vars [no w3adc] -ad3 : processing scrip_remap_conservative [no w3adc] -ad3 : processing scrip_remap_write [no w3adc] ad3 : processing scrip_remap_read [no w3adc] +ad3 : processing scrip_remap_write [no w3adc] +ad3 : processing scrip_remap_conservative [no w3adc] ad3 : processing scrip_interface ad3 : processing w3gdatmd ad3 : processing w3odatmd @@ -1581,19 +1588,19 @@ ad3 : processing w3sbt1md ad3 : processing wmscrpmd ad3 : processing w3idatmd ad3 : processing w3dispmd -ad3 : processing w3timemd ad3 : processing wmmdatmd -ad3 : processing w3adatmd -ad3 : processing w3src4md +ad3 : processing w3timemd ad3 : processing w3fldsmd +ad3 : processing w3adatmd ad3 : processing w3sdb1md ad3 : processing w3flx1md -ad3 : processing w3partmd ad3 : processing w3nmlmultimd +ad3 : processing w3partmd +ad3 : processing w3src4md ad3 : processing wmfinlmd ad3 : processing w3triamd -ad3 : processing w3snl1md ad3 : processing w3parall +ad3 : processing w3snl1md ad3 : processing w3wdatmd ad3 : processing w3iogrmd ad3 : processing wmupdtmd @@ -1677,64 +1684,65 @@ a - wmscrpmd.o a - scrip_netcdfmod.o a - scrip_remap_write.o a - scrip_remap_read.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make ww3_multi +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make ww3_multi ***************************** *** WAVEWATCH III make *** ***************************** -Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model -Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/tmp +Main directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model +Scratch directory : /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/tmp Save source codes : yes Save listings : yes Shared Object : No [INFO] list of the programs selected : ww3_multi -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/bin/w3_make: line 392: [: 474-development: integer expression expected Processing ww3_multi --------------------- -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ad3 : processing ww3_multi Linking ww3_multi -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/ftn' +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/ftn' ********************** *** end of compilation *** ********************** -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf' -mkdir -p /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL -cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/nuopc.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/. -test -d "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL" +\cp -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/exe/ww3_multi /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/exec +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/esmf' +mkdir -p /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL +cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/nuopc.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/. +test -d "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL" ( \ echo "# Do not edit this file. It is automatically generated." ; \ -echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ -echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" -. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +echo "# Edit the component list or /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk" ; echo fv3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk" ; echo ww3_mk="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk" ; ) > "/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/configure.nems.NUOPC" +. /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ set -e ; \ -for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ +for m in /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; do \ test -s $m ; \ done ; \ -echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ -cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src ; \ +echo build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk ; \ +cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ; \ make nems \ COMPONENTS="FMS FV3 WW3" \ - FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x" ; \ -test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x + FMS_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL FV3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL WW3_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL TARGET="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x" ; \ +test -x /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x Currently Loaded Modules: 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 + 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.6 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF @@ -1743,11 +1751,11 @@ Currently Loaded Modules: -build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +build NEMS after /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk Components in linker order: WW3 FV3 FMS -WW3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk -FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk -FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/fms.mk +WW3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/WW3_INSTALL/nuopc.mk +FV3: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/fv3.mk +FMS: include /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/fms.mk CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" CPPFLAGS += ESMF_VERSION_MAJOR="8" CPPFLAGS += ESMF_VERSION_REVISION="0" @@ -1756,110 +1764,110 @@ CPPFLAGS += ESMF_VERSION_MINOR="0" CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" CPPFLAGS += ESMF_VERSION_STRING="8.0.0" CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" -make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' +make[1]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' cd ENS_Cpl && make stub -make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' +make[2]: Entering directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o ar: creating ENS_Cpl.a a - ENS_CplComp_ESMFMod_STUB.o -make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/ENS_Cpl' -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +make[2]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o ‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o ‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o ‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o ‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o ‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o ‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o ‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o ‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o ‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ mpiicc -c nems_c_rusage.c -mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Fri Apr 10 05:29:07 UTC 2020 r6a4254b071a8 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=101' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 -mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mpiicc -E -traditional -DFRONT_WW3=WMESMFMD -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Dusan.Jovic) Mon May 4 20:24:24 UTC 2020 r82138ff90192 https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=125' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xHOST -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include -I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/mod_HYB -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3 -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/atmos_cubed_sphere -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/io -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/gfsphysics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/cpl -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/ipd -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/../stochastic_physics -I/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o ‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ echo libgocart is libgocart is -echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf -mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +echo extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +extlibs is /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf +mpiifort -o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/WW3/model/obj_HYB/libww3_multi_esmf.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cap.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3core.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3io.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libipd.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libgfsphys.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libfv3cpl.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FV3/FV3_INSTALL/libstochastic_physics.a /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.6_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a /gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a /usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a /gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a /usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a /usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -qopenmp -lnetcdf /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': /usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/exe/NEMS.x is created. -make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src' -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src -+ cp -fp ../exe/NEMS.x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe -+ cp -fp conf/modules.nems /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/include/modules_fv3_ww3 -+ md5sum /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe +/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/exe/NEMS.x is created. +make[1]: Leaving directory `/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src' ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/CA_develop/ufs-weather-model/NEMS/src ++ cp -fp ../exe/NEMS.x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe ++ cp -fp conf/modules.nems /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/include/modules_fv3_ww3 ++ md5sum /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe + unset md5sum + unset OPTS + set -xe + set -xe -+ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe -+ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe ++ test -s /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe ++ test -x /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe ------------------------------------------------------------ -Sender: LSF System -Subject: Job 20302759: in cluster Done +Sender: LSF System +Subject: Job 21665359: in cluster Done -Job was submitted from host by user in cluster at Fri Apr 10 05:01:45 2020 -Job was executed on host(s) , in queue , as user in cluster at Fri Apr 10 05:01:46 2020 +Job was submitted from host by user in cluster at Mon May 4 19:56:20 2020 +Job was executed on host(s) , in queue , as user in cluster at Mon May 4 19:56:22 2020 was used as the home directory. - was used as the working directory. -Started at Fri Apr 10 05:01:46 2020 -Terminated at Fri Apr 10 05:29:43 2020 -Results reported at Fri Apr 10 05:29:43 2020 + was used as the working directory. +Started at Mon May 4 19:56:22 2020 +Terminated at Mon May 4 20:25:01 2020 +Results reported at Mon May 4 20:25:01 2020 Your job looked like: ------------------------------------------------------------ # LSBATCH: User input -/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/src ; ./install.sh fv3_ww3.exe" +/gpfs/dell3/usrx/local/dev/emc_rocoto/rocoto-1.3.0rc2/sbin/lsfwrapper.sh sh -c "cd /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/src ; ./install.sh fv3_ww3.exe" ------------------------------------------------------------ Successfully completed. Resource usage summary: - CPU time : 1818.69 sec. - Max Memory : 5275 MB - Average Memory : 689.09 MB + CPU time : 1832.10 sec. + Max Memory : 5036 MB + Average Memory : 552.06 MB Total Requested Memory : 6144.00 MB - Delta Memory : 869.00 MB + Delta Memory : 1108.00 MB Max Swap : - - Max Processes : 28 - Max Threads : 32 - Run time : 1680 sec. - Turnaround time : 1678 sec. + Max Processes : 30 + Max Threads : 35 + Run time : 1722 sec. + Turnaround time : 1721 sec. The output (if any) is above this job summary. -[Fri Apr 10 05:29:43 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.20302759 file not found or empty. Job is not eligible for ecflow abort notification. +[Mon May 4 20:25:01 UTC 2020] /usrx/local/lsf/conf/scripts/ncep_post_exec_shared_ecflow.ksh: /var/lsf/ecflow_post_in.Dusan.Jovic.21665359 file not found or empty. Job is not eligible for ecflow abort notification. diff --git a/log/report-wcoss_dell_p3-log/rtreport.txt b/log/report-wcoss_dell_p3-log/rtreport.txt index a5c9fdfd97..29b01c39b6 100755 --- a/log/report-wcoss_dell_p3-log/rtreport.txt +++ b/log/report-wcoss_dell_p3-log/rtreport.txt @@ -1,13 +1,12 @@ Run rocotostat... Generate report... -WORKFLOW STARTED AT Fri Apr 10 05:01:41 2020 (+1586494901) +WORKFLOW STARTED AT Mon May 4 19:56:16 2020 (+1588622176) Repository information: REPO TOP: -MG3_rv1 af2aa9d [origin/MG3_rv1] Update FV3 submodule -Fetch URL: https://github.com/AnningCheng-NOAA/ufs-weather-model - M FV3 +CA_develop d6102d2 [origin/CA_develop: behind 1] updated submodule pointers for FV3 and stochastic physics +Fetch URL: https://github.com/lisa-bengtsson/ufs-weather-model M log/report-wcoss_dell_p3-log/build_fv3.exe.log M log/report-wcoss_dell_p3-log/build_fv3_32bit.exe.log M log/report-wcoss_dell_p3-log/build_fv3_appbuilder.exe.log @@ -22,8 +21,7 @@ Fetch URL: https://github.com/NOAA-GFDL/FMS Entering 'FV3' age: git [--version] [--help] [-c name=value] -Fetch URL: https://github.com/AnningCheng-NOAA/fv3atm - M ccpp/physics +Fetch URL: https://github.com/NOAA-EMC/fv3atm Entering 'NEMS' age: git [--version] [--help] [-c name=value] @@ -44,8 +42,8 @@ BUILD fv3_32bit.exe: SUCCEEDED BUILD fv3_appbuilder.exe: SUCCEEDED TEST #1: PASS - Test fv3_gfdlmprad_atmwav starting at Fri Apr 10 05:31:21 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) - Fri Apr 10 05:31:21 UTC 2020 + Test fv3_gfdlmprad_atmwav starting at Mon May 4 20:26:24 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with 2 way WW3 results with previous trunk version) + Mon May 4 20:26:24 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -90,14 +88,14 @@ TEST #1: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe - Expected md5sum: 3f415aeffb3214be555e0b830993cb67 - Actual md5sum: 3f415aeffb3214be555e0b830993cb67 - TEST PASSED AT Fri Apr 10 05:34:05 UTC 2020 + File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe + Expected md5sum: f9f17f021fccc31ad74fce3476dce5e7 + Actual md5sum: f9f17f021fccc31ad74fce3476dce5e7 + TEST PASSED AT Mon May 4 20:29:13 UTC 2020 TEST #2: PASS - Test fv3_lheatstrg starting at Fri Apr 10 05:51:47 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:51:47 UTC 2020 + Test fv3_lheatstrg starting at Mon May 4 20:43:59 UTC 2020 (Compare FV3 control with lheatstrg on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:43:59 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -142,13 +140,13 @@ TEST #2: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:52:57 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:45:10 UTC 2020 TEST #3: PASS - Test fv3_iau starting at Fri Apr 10 05:51:48 UTC 2020 (Compare FV3 IAU results with previous trunk version) - Fri Apr 10 05:51:48 UTC 2020 + Test fv3_iau starting at Mon May 4 20:43:59 UTC 2020 (Compare FV3 IAU results with previous trunk version) + Mon May 4 20:43:59 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -213,13 +211,13 @@ TEST #3: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:52:59 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:45:12 UTC 2020 TEST #4: PASS - Test fv3_stretched_nest_quilt starting at Fri Apr 10 06:09:57 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) - Fri Apr 10 06:09:57 UTC 2020 + Test fv3_stretched_nest_quilt starting at Mon May 4 21:06:27 UTC 2020 (Stretched grid with nest using quilting; compare against previous baseline) + Mon May 4 21:06:27 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -279,11 +277,11 @@ TEST #4: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:13:42 UTC 2020 + TEST PASSED AT Mon May 4 21:09:59 UTC 2020 TEST #5: PASS - Test fv3_stretched_nest starting at Fri Apr 10 06:10:28 UTC 2020 (Stretched grid with nest; compare against previous baseline) - Fri Apr 10 06:10:28 UTC 2020 + Test fv3_stretched_nest starting at Mon May 4 21:06:45 UTC 2020 (Stretched grid with nest; compare against previous baseline) + Mon May 4 21:06:45 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -345,11 +343,11 @@ TEST #5: PASS RESTART/fv_tracer.res.nest02.tile7.nc: bit-for-bit identical RESTART/phy_data.nest02.tile7.nc: bit-for-bit identical RESTART/sfc_data.nest02.tile7.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:15:10 UTC 2020 + TEST PASSED AT Mon May 4 21:10:53 UTC 2020 TEST #6: PASS - Test fv3_wrtGauss_nemsio starting at Fri Apr 10 05:52:04 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:52:04 UTC 2020 + Test fv3_wrtGauss_nemsio starting at Mon May 4 20:43:59 UTC 2020 (Compare FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:43:59 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -394,21 +392,21 @@ TEST #6: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:53:12 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:45:10 UTC 2020 TEST #7: PASS - Test fv3_regional_control starting at Fri Apr 10 06:09:43 UTC 2020 (Compare FV3 regional control results with previous trunk version) - Fri Apr 10 06:09:43 UTC 2020 + Test fv3_regional_control starting at Mon May 4 21:03:39 UTC 2020 (Compare FV3 regional control results with previous trunk version) + Mon May 4 21:03:39 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:12:27 UTC 2020 + TEST PASSED AT Mon May 4 21:06:23 UTC 2020 TEST #8: PASS - Test fv3_wrtGauss_netcdf starting at Fri Apr 10 05:52:22 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Fri Apr 10 05:52:22 UTC 2020 + Test fv3_wrtGauss_netcdf starting at Mon May 4 20:44:07 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 20:44:07 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -453,13 +451,13 @@ TEST #8: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:53:31 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:45:14 UTC 2020 TEST #9: PASS - Test fv3_gfdlmprad_gwd starting at Fri Apr 10 05:52:33 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) - Fri Apr 10 05:52:33 UTC 2020 + Test fv3_gfdlmprad_gwd starting at Mon May 4 20:44:56 UTC 2020 (Compare FV3 GFDL radiation interaction option and gravity wve drag results with previous trunk version) + Mon May 4 20:44:56 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -504,13 +502,13 @@ TEST #9: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:53:53 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:46:16 UTC 2020 TEST #10: PASS - Test fv3_stochy starting at Fri Apr 10 05:53:06 UTC 2020 (Compare FV3 stochy results with previous trunk version) - Fri Apr 10 05:53:06 UTC 2020 + Test fv3_stochy starting at Mon May 4 20:45:18 UTC 2020 (Compare FV3 stochy results with previous trunk version) + Mon May 4 20:45:18 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -575,21 +573,21 @@ TEST #10: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:54:32 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:46:42 UTC 2020 TEST #11: PASS - Test fv3_regional_c768 starting at Fri Apr 10 09:59:48 UTC 2020 (Compare FV3 regional c768 results with previous trunk version) - Fri Apr 10 09:59:48 UTC 2020 + Test fv3_regional_c768 starting at Mon May 4 21:11:08 UTC 2020 (Compare FV3 regional c768 results with previous trunk version) + Mon May 4 21:11:08 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 10:04:49 UTC 2020 + TEST PASSED AT Mon May 4 21:16:04 UTC 2020 TEST #12: PASS - Test fv3_gfdlmprad starting at Fri Apr 10 05:31:21 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) - Fri Apr 10 05:31:21 UTC 2020 + Test fv3_gfdlmprad starting at Mon May 4 20:26:31 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with WW3 results with previous trunk version) + Mon May 4 20:26:31 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -634,14 +632,14 @@ TEST #12: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical out_grd.glo_30m: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_ww3.exe - Expected md5sum: 3f415aeffb3214be555e0b830993cb67 - Actual md5sum: 3f415aeffb3214be555e0b830993cb67 - TEST PASSED AT Fri Apr 10 05:33:29 UTC 2020 + File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_ww3.exe + Expected md5sum: f9f17f021fccc31ad74fce3476dce5e7 + Actual md5sum: f9f17f021fccc31ad74fce3476dce5e7 + TEST PASSED AT Mon May 4 20:28:29 UTC 2020 TEST #13: PASS - Test fv3_appbuilder starting at Fri Apr 10 06:37:36 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) - Fri Apr 10 06:37:36 UTC 2020 + Test fv3_appbuilder starting at Mon May 4 21:28:51 UTC 2020 (Compare FV3 with the NEMSAppBuilder against the previous trunk version) + Mon May 4 21:28:51 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -705,14 +703,14 @@ TEST #13: PASS RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: - File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.98750/exec/fv3_appbuilder.exe - Expected md5sum: e839222fec8408e37307cf8ae900b8c3 - Actual md5sum: e839222fec8408e37307cf8ae900b8c3 - TEST PASSED AT Fri Apr 10 06:38:43 UTC 2020 + File: /gpfs/dell3/ptmp/Dusan.Jovic/rtgen.13298/exec/fv3_appbuilder.exe + Expected md5sum: 04fae5ab114343dd8710a4fba277203d + Actual md5sum: 04fae5ab114343dd8710a4fba277203d + TEST PASSED AT Mon May 4 21:30:02 UTC 2020 TEST #14: PASS - Test fv3_restart starting at Fri Apr 10 05:53:08 UTC 2020 (Compare FV3 restart results with previous trunk version) - Fri Apr 10 05:53:08 UTC 2020 + Test fv3_restart starting at Mon May 4 20:45:19 UTC 2020 (Compare FV3 restart results with previous trunk version) + Mon May 4 20:45:19 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -777,21 +775,21 @@ TEST #14: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:54:17 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:46:30 UTC 2020 TEST #15: PASS - Test fv3_regional_restart starting at Fri Apr 10 06:13:40 UTC 2020 (Compare FV3 regional restart results with previous trunk version) - Fri Apr 10 06:13:40 UTC 2020 + Test fv3_regional_restart starting at Mon May 4 21:07:00 UTC 2020 (Compare FV3 regional restart results with previous trunk version) + Mon May 4 21:07:00 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical fv3_history2d.nc: bit-for-bit identical fv3_history.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:15:15 UTC 2020 + TEST PASSED AT Mon May 4 21:08:25 UTC 2020 TEST #16: PASS - Test fv3_decomp starting at Fri Apr 10 05:53:14 UTC 2020 (Compare FV3 decomp results with previous trunk version) - Fri Apr 10 05:53:14 UTC 2020 + Test fv3_decomp starting at Mon May 4 20:45:21 UTC 2020 (Compare FV3 decomp results with previous trunk version) + Mon May 4 20:45:21 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -856,23 +854,23 @@ TEST #16: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:54:26 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:46:31 UTC 2020 TEST #17: PASS - Test fv3_regional_quilt starting at Fri Apr 10 06:09:43 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) - Fri Apr 10 06:09:43 UTC 2020 + Test fv3_regional_quilt starting at Mon May 4 21:03:46 UTC 2020 (Compare FV3 regional quilt results with previous trunk version) + Mon May 4 21:03:46 UTC 2020 atmos_4xdaily.nc: bit-for-bit identical dynf000.nc: bit-for-bit identical dynf024.nc: bit-for-bit identical phyf000.nc: bit-for-bit identical phyf024.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:12:25 UTC 2020 + TEST PASSED AT Mon May 4 21:06:27 UTC 2020 TEST #18: PASS - Test fv3_csawmgshoc starting at Fri Apr 10 05:53:21 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) - Fri Apr 10 05:53:21 UTC 2020 + Test fv3_csawmgshoc starting at Mon May 4 20:45:22 UTC 2020 (Compare FV3 with CSAW MG2 and SHOC results with previous trunk version) + Mon May 4 20:45:22 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -917,13 +915,13 @@ TEST #18: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:56:04 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:48:04 UTC 2020 TEST #19: PASS - Test fv3_control_32bit starting at Fri Apr 10 06:09:56 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) - Fri Apr 10 06:09:56 UTC 2020 + Test fv3_control_32bit starting at Mon May 4 21:05:45 UTC 2020 (Compare FV3 32bit compile results with previous trunk version) + Mon May 4 21:05:46 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -986,11 +984,11 @@ TEST #19: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:11:10 UTC 2020 + TEST PASSED AT Mon May 4 21:06:51 UTC 2020 TEST #20: PASS - Test fv3_gfdlmprad_32bit_post starting at Fri Apr 10 06:09:58 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) - Fri Apr 10 06:09:58 UTC 2020 + Test fv3_gfdlmprad_32bit_post starting at Mon May 4 21:05:48 UTC 2020 (Compare FV3 GFDL mircrophysics radiation change with inline post results with previous trunk version) + Mon May 4 21:05:48 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1037,11 +1035,11 @@ TEST #20: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:11:39 UTC 2020 + TEST PASSED AT Mon May 4 21:07:24 UTC 2020 TEST #21: PASS - Test fv3_csawmg3shoc127 starting at Fri Apr 10 05:53:36 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) - Fri Apr 10 05:53:36 UTC 2020 + Test fv3_csawmg3shoc127 starting at Mon May 4 20:46:27 UTC 2020 (Compare 127 L FV3 with CSAW MG3 and SHOC results with previous trunk version) + Mon May 4 20:46:27 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1086,13 +1084,13 @@ TEST #21: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:59:27 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:52:35 UTC 2020 TEST #22: PASS - Test fv3_read_inc starting at Fri Apr 10 05:57:31 UTC 2020 (Compare FV3 read_inc results with previous trunk version) - Fri Apr 10 05:57:31 UTC 2020 + Test fv3_read_inc starting at Mon May 4 20:46:24 UTC 2020 (Compare FV3 read_inc results with previous trunk version) + Mon May 4 20:46:24 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1157,13 +1155,13 @@ TEST #22: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 05:58:40 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:47:36 UTC 2020 TEST #23: PASS - Test fv3_satmedmf starting at Fri Apr 10 05:58:50 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 05:58:50 UTC 2020 + Test fv3_satmedmf starting at Mon May 4 20:46:51 UTC 2020 (Compare FV3 control with satmedmf on Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:46:51 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1208,13 +1206,13 @@ TEST #23: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:00:00 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:48:11 UTC 2020 TEST #24: PASS - Test fv3_control starting at Fri Apr 10 05:59:37 UTC 2020 (Compare FV3 control results with previous trunk version) - Fri Apr 10 05:59:37 UTC 2020 + Test fv3_control starting at Mon May 4 20:47:00 UTC 2020 (Compare FV3 control results with previous trunk version) + Mon May 4 20:47:00 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1279,13 +1277,13 @@ TEST #24: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:00:47 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:48:09 UTC 2020 TEST #25: PASS - Test fv3_gfdlmp starting at Fri Apr 10 06:00:07 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Fri Apr 10 06:00:07 UTC 2020 + Test fv3_gfdlmp starting at Mon May 4 20:47:46 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 20:47:46 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1330,13 +1328,13 @@ TEST #25: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:01:27 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:49:04 UTC 2020 TEST #26: PASS - Test fv3_gfdlmprad_noahmp starting at Fri Apr 10 06:01:35 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) - Fri Apr 10 06:01:35 UTC 2020 + Test fv3_gfdlmprad_noahmp starting at Mon May 4 20:48:45 UTC 2020 (Compare FV3 GFDL radiation interaction option and Noah MP results with previous trunk version) + Mon May 4 20:48:45 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1381,13 +1379,13 @@ TEST #26: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:02:57 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:50:04 UTC 2020 TEST #27: PASS - Test fv3_2threads starting at Fri Apr 10 06:02:07 UTC 2020 (Compare FV3 2 threads results with previous trunk version) - Fri Apr 10 06:02:07 UTC 2020 + Test fv3_2threads starting at Mon May 4 20:49:02 UTC 2020 (Compare FV3 2 threads results with previous trunk version) + Mon May 4 20:49:02 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1452,13 +1450,13 @@ TEST #27: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:03:17 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:50:07 UTC 2020 TEST #28: PASS - Test fv3_wrtGauss_netcdf_esmf starting at Fri Apr 10 06:03:30 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) - Fri Apr 10 06:03:30 UTC 2020 + Test fv3_wrtGauss_netcdf_esmf starting at Mon May 4 20:49:07 UTC 2020 (Compare FV3 Gaussian grid netcdf output results with previous trunk version) + Mon May 4 20:49:07 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1503,13 +1501,13 @@ TEST #28: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:06:57 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:53:31 UTC 2020 TEST #29: PASS - Test fv3_csawmg starting at Fri Apr 10 06:03:42 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) - Fri Apr 10 06:03:42 UTC 2020 + Test fv3_csawmg starting at Mon May 4 20:49:13 UTC 2020 (Compare FV3 with CSAW and MG2 results with previous trunk version) + Mon May 4 20:49:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1554,13 +1552,13 @@ TEST #29: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:06:24 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:51:56 UTC 2020 TEST #30: PASS - Test fv3_wsm6 starting at Fri Apr 10 06:05:24 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) - Fri Apr 10 06:05:24 UTC 2020 + Test fv3_wsm6 starting at Mon May 4 20:49:19 UTC 2020 (Compare FV3 GFDL mircrophysics results with previous trunk version) + Mon May 4 20:49:19 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1625,13 +1623,13 @@ TEST #30: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:07:18 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:51:08 UTC 2020 TEST #31: PASS - Test fv3_stretched starting at Fri Apr 10 06:10:13 UTC 2020 (Stretched grid; compare against previous baseline) - Fri Apr 10 06:10:13 UTC 2020 + Test fv3_stretched starting at Mon May 4 21:06:08 UTC 2020 (Stretched grid; compare against previous baseline) + Mon May 4 21:06:08 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1682,11 +1680,11 @@ TEST #31: PASS RESTART/sfc_data.tile4.nc: bit-for-bit identical RESTART/sfc_data.tile5.nc: bit-for-bit identical RESTART/sfc_data.tile6.nc: bit-for-bit identical - TEST PASSED AT Fri Apr 10 06:13:59 UTC 2020 + TEST PASSED AT Mon May 4 21:09:35 UTC 2020 TEST #32: PASS - Test fv3_wrtGauss_nemsio_c192 starting at Fri Apr 10 06:05:46 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) - Fri Apr 10 06:05:46 UTC 2020 + Test fv3_wrtGauss_nemsio_c192 starting at Mon May 4 20:50:13 UTC 2020 (Compare c192 FV3 Gaussian grid nemsio output results with previous trunk version) + Mon May 4 20:50:13 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1731,13 +1729,13 @@ TEST #32: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:08:48 UTC 2020 + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:53:26 UTC 2020 TEST #33: PASS - Test fv3_rasmgshoc starting at Fri Apr 10 06:05:31 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) - Fri Apr 10 06:05:31 UTC 2020 + Test fv3_rasmgshoc starting at Mon May 4 20:49:22 UTC 2020 (Compare FV3 with RAS MG2 and SHOC results with previous trunk version) + Mon May 4 20:49:22 UTC 2020 atmos_4xdaily.tile1.nc: bit-for-bit identical atmos_4xdaily.tile2.nc: bit-for-bit identical atmos_4xdaily.tile3.nc: bit-for-bit identical @@ -1782,10 +1780,10 @@ TEST #33: PASS RESTART/sfc_data.tile6.nc: bit-for-bit identical Executable did not change during test suite: File: ./fv3.exe - Expected md5sum: c0149ff1c731524248a0368604969067 - Actual md5sum: c0149ff1c731524248a0368604969067 - TEST PASSED AT Fri Apr 10 06:08:23 UTC 2020 -WORKFLOW REPORT AT Fri Apr 10 10:06:06 2020 (+1586513166) + Expected md5sum: 608b362097ca1ff01d9c33eccd60230f + Actual md5sum: 608b362097ca1ff01d9c33eccd60230f + TEST PASSED AT Mon May 4 20:52:18 UTC 2020 +WORKFLOW REPORT AT Mon May 4 21:31:25 2020 (+1588627885) Tests: 0 failed, 33 passed out of 33 Builds: 0 failed, 4 passed out of 4 REGRESSION TEST WAS SUCCESSFUL diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/cheyenne.gnu/fv3 index 5dfa2e778f..ae7cc83c78 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/cheyenne.gnu/fv3 @@ -39,8 +39,9 @@ module load NCEPlibs/9.9.9 module load SIONlib/1.7.4 ## -## set cmake compilers +## load cmake ## +module load cmake/3.16.4 setenv CMAKE_C_COMPILER mpicc setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 diff --git a/modulefiles/cheyenne.intel-impi/fv3 b/modulefiles/cheyenne.intel-impi/fv3 index e0160b61dc..6813a383e3 100644 --- a/modulefiles/cheyenne.intel-impi/fv3 +++ b/modulefiles/cheyenne.intel-impi/fv3 @@ -39,8 +39,9 @@ module load NCEPlibs/9.9.9 module load SIONlib/1.7.4 ## -## set cmake compilers +## load cmake ## +module load cmake/3.16.4 setenv CMAKE_C_COMPILER mpicc setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/cheyenne.intel/fv3 index f009c137d1..8abc6c1b69 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/cheyenne.intel/fv3 @@ -39,8 +39,9 @@ module load NCEPlibs/9.9.9 module load SIONlib/1.7.4 ## -## set cmake compilers +## load cmake ## +module load cmake/3.16.4 setenv CMAKE_C_COMPILER mpicc setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 diff --git a/modulefiles/cheyenne.pgi/fv3 b/modulefiles/cheyenne.pgi/fv3 deleted file mode 100644 index c02e509b67..0000000000 --- a/modulefiles/cheyenne.pgi/fv3 +++ /dev/null @@ -1,48 +0,0 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Cheyenne/PGI - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Cheyenne/PGI" -} - -module-whatis "loads NEMS FV3 prerequisites for Cheyenne/PGI" - -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## -module load ncarenv/1.2 -module load pgi/17.9 -module load mpt/2.19 -module load ncarcompilers/0.4.1 -module load netcdf/4.4.1.1 - -## -## use pre-compiled EMSF library for pgi-17.9 and mpt-2.15f, because -## building it with mpt-2.19 was a hopeless undertaking -## -set ESMF_DIR /glade/p/ral/jntp/GMTB/tools/esmf-7.1.0r/pgi-17.9/mpt-2.15f -setenv ESMF_DIR ${ESMF_DIR} -setenv ESMF_INC ${ESMF_DIR}/include -setenv ESMF_BIN ${ESMF_DIR}/bin/binO/Linux.pgi.64.mpi.default -setenv ESMF_LIB ${ESMF_DIR}/lib/libO/Linux.pgi.64.mpi.default -setenv ESMF_MOD ${ESMF_DIR}/mod/modO/Linux.pgi.64.mpi.default -setenv ESMFMKFILE ${ESMF_DIR}/lib/libO/Linux.pgi.64.mpi.default/esmf.mk -prepend-path PATH ${ESMF_DIR}/bin/binO/Linux.pgi.64.mpi.default -prepend-path LD_LIBRARY_PATH ${ESMF_DIR}/lib/libO/Linux.pgi.64.mpi.default - -## -## NCEP libraries (download and build manually for the time being; https://github.com/NCAR/NCEPlibs) -## -set NCEPLIBS_DIR /glade/p/ral/jntp/GMTB/tools/NCEPlibs/20190307/pgi-17.9/mpt-2.19 -setenv NCEPLIBS_DIR ${NCEPLIBS_DIR} -setenv NEMSIO_INC ${NCEPLIBS_DIR}/include -setenv NEMSIO_LIB ${NCEPLIBS_DIR}/lib/libnemsio_d.a -setenv BACIO_LIB4 ${NCEPLIBS_DIR}/lib/libbacio_4.a -setenv SP_LIBd ${NCEPLIBS_DIR}/lib/libsp_v2.0.2_d.a -setenv W3EMC_LIBd ${NCEPLIBS_DIR}/lib/libw3emc_d.a -setenv W3NCO_LIBd ${NCEPLIBS_DIR}/lib/libw3nco_d.a diff --git a/modulefiles/gaea.intel/fv3.intel-16.0.3.210 b/modulefiles/gaea.intel/fv3.intel-16.0.3.210 deleted file mode 100644 index 483054b687..0000000000 --- a/modulefiles/gaea.intel/fv3.intel-16.0.3.210 +++ /dev/null @@ -1,54 +0,0 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Gaea/Intel - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Gaea/Intel" -} - -module-whatis "loads NEMS FV3 prerequisites for Gaea/Intel" - -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## -module load PrgEnv-intel/6.0.3 -module rm intel -module load intel/16.0.3.210 -module load cray-netcdf -setenv NETCDF /opt/cray/pe/netcdf/4.4.0/INTEL/15.0 -setenv HDF5 /opt/cray/pe/hdf5/1.8.16/INTEL/15.0 - -module use -a /lustre/f2/pdata/esrl/gsd/ufs/modules/modulefiles/intel-16.0.3.210 - -## -## Libxml2 - compiled manually because of issues with linking the code -## -module load libxml2/2.9.9 - -## -## NCEP libraries (download and build manually for the time being; https://github.com/NCAR/NCEPlibs) -## -module load NCEPlibs/9.9.9 - -## -## use pre-compiled EMSF library for above compiler / MPI combination -## -module load esmf/8.0.0 - -# Needed at runtime: -module load alps - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv F77 mpif77 -setenv F90 mpif90 - -setenv CMAKE_C_COMPILER mpicc -setenv CMAKE_CXX_COMPILER mpic++ -setenv CMAKE_Fortran_COMPILER mpif90 -setenv CMAKE_Platform gaea.intel diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/hera.gnu/fv3 index ec7a2d5aae..4e60e56f0b 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/hera.gnu/fv3 @@ -15,7 +15,8 @@ setenv NCEPLIBS /scratch2/NCEPDEV/nwprod/NCEPLIBS ## load contrib environment ## load slurm utils (arbitrary.pl layout.pl) ## -module load contrib sutils +module use -a /contrib/sutils/modulefiles +module load sutils ## ## load programming environment @@ -34,8 +35,7 @@ module load NCEPlibs/1.0.0 ## ## load cmake ## -module use -a /scratch1/BMC/gmtb/software/modulefiles/generic -module load cmake/3.16.3 +module load cmake/3.16.1 setenv CMAKE_C_COMPILER mpicc setenv CMAKE_CXX_COMPILER mpicxx setenv CMAKE_Fortran_COMPILER mpif90 diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/hera.intel/fv3 index 29bba6e327..afa4e4f90d 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/hera.intel/fv3 @@ -8,14 +8,12 @@ proc ModulesHelp {} { module-whatis "loads NEMS FV3 prerequisites for Hera/Intel" -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. -setenv NCEPLIBS /scratch2/NCEPDEV/nwprod/NCEPLIBS ## ## load contrib environment ## load slurm utils (arbitrary.pl layout.pl) ## -module load contrib sutils +module use -a /contrib/sutils/modulefiles +module load sutils ## ## load programming environment @@ -41,7 +39,7 @@ module load jasper/1.900.1 module load png/1.2.44 module load z/1.2.11 ## load modules for nceppost grib -module load post/8.0.5 +module load post/8.0.6 ## ## load ESMF library for above compiler / MPI combination @@ -55,8 +53,7 @@ module load esmf/8.0.0_ParallelNetCDF ## ## load cmake ## -module use /contrib/modulefiles -module load cmake/3.9.0 +module load cmake/3.16.1 setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/jet.intel/fv3 index 9cdc8b20d6..0150fc8d82 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/jet.intel/fv3 @@ -13,14 +13,15 @@ module purge ## load contrib environment ## load slurm utils (arbitrary.pl layout.pl) ## -module load contrib sutils +module use -a /contrib/sutils/modulefiles +module load sutils module load intel/18.0.5.274 module load impi/2018.4.274 module load hdf5/1.10.4 module load netcdf/4.6.1 -module use -a /lfs3/projects/hfv3gfs/GMTB/modulefiles/intel-18.0.5.274 +module use -a /lfs4/HFIP/hfv3gfs/software/modulefiles/intel-18.0.5.274/impi-2018.4.274 ## ### NCEP libraries (download and build manually for the time being; https://github.com/NCAR/NCEPlibs) @@ -35,7 +36,8 @@ module load esmf/8.0.0 ## ## load cmake ## +module load cmake/3.16.1 setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort -setenv CMAKE_Platform jet +setenv CMAKE_Platform jet.intel diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/orion.intel/fv3 new file mode 100644 index 0000000000..afecfeae3b --- /dev/null +++ b/modulefiles/orion.intel/fv3 @@ -0,0 +1,61 @@ +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: Orion/Intel + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on Orion/Intel" +} + +module-whatis "loads NEMS FV3 prerequisites for Orion/Intel" + +## +## load contrib environment +## load noaatools (slurm utils (arbitrary.pl layout.pl)) +## +module load contrib noaatools + +## +## load programming environment +## this typically includes compiler, MPI and job scheduler +## +module load intel/2018 +module load impi/2018 + +## +## NCEP libraries (temporary version to match the CCPP requirements) +## +module use /apps/contrib/NCEPLIBS/orion/modulefiles +module load bacio/2.0.3 +module load ip/3.0.2 +module load nemsio/2.2.4 +module load sp/2.0.3 +module load w3emc/2.4.0 +module load w3nco/2.0.7 +module load g2/3.1.1 +module load g2tmpl/1.6.0 +module load crtm/2.3.0 +module load jasper/1.900.2 +module load png/1.2.44 +module load z/1.2.6 + +## +## load ESMF library for above compiler / MPI combination +## use pre-compiled EMSF library for above compiler / MPI combination +## +module use /apps/contrib/NCEPLIBS/lib/modulefiles +module load netcdfp/4.7.4 +module load esmflocal/8.0.0.para +module load post-intel-sandybridge/8.0.5 + +### +### load Python 3 +#module load python/3.7.5 + +## +## load cmake +## +module load cmake/3.15.4 +setenv CMAKE_C_COMPILER mpiicc +setenv CMAKE_CXX_COMPILER mpiicpc +setenv CMAKE_Fortran_COMPILER mpiifort +setenv CMAKE_Platform orion.intel diff --git a/modulefiles/s4.intel/fv3 b/modulefiles/s4.intel/fv3 new file mode 100644 index 0000000000..9c7973bbd4 --- /dev/null +++ b/modulefiles/s4.intel/fv3 @@ -0,0 +1,41 @@ +#%Module###################################################################### +## +## NEMS FV3 Prerequisites: S4 + +proc ModulesHelp {} { + puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on S4" +} + +module-whatis "loads NEMS FV3 prerequisites for S4" + +# NOTE: the "module purge" and loading of the module command are +# handled by the module-setup.sh (or .csh) script. + +## +## load programming environment +## this typically includes compiler, MPI and job scheduler +## +module load license_intel/S4 +module load intel/18.0.3 +module load hdf/4.2.14 +module load hdf5/1.8.21 +module load netcdf4/4.6.2 + +## +## load nwprod libraries +## +module use -a /data/prod/ncep_libs/intel/18.0.3/modulefiles +module load bacio/v2.0.2 +module load sp/v2.0.2 +module load ip/v3.0.0 +module load w3nco/v2.0.6 +module load w3emc/v2.3.0 +module load nemsio/v2.2.3 +module load g2/v3.1.0 +module load g2tmpl/v1.5.0 +module load crtm/v2.3.0 +module load jasper/v1.900.1 +module load png/v1.2.44 +module load z/v1.2.6 + +module load esmf/v8.0.0 diff --git a/modulefiles/stampede.intel/fv3 b/modulefiles/stampede.intel/fv3 index cc2fa9e88a..21fda14b51 100644 --- a/modulefiles/stampede.intel/fv3 +++ b/modulefiles/stampede.intel/fv3 @@ -15,36 +15,24 @@ module-whatis "loads NEMS FV3 prerequisites for Stampede/Intel" ## load programming environment ## this typically includes compiler, MPI and job scheduler ## -module load intel/17.0.4 -module load impi/17.0.3 -module load netcdf/4.3.3.1 -module load hdf5/1.8.16 -module load pnetcdf/1.8.1 -setenv NETCDF /opt/apps/intel17/netcdf/4.3.3.1/x86_64 +module load intel/18.0.2 +module load impi/18.0.2 +module load python2/2.7.15 +module load parallel-netcdf/4.6.2 +setenv NETCDF /opt/apps/intel18/impi18_0/parallel-netcdf/4.6.2/x86_64 ## -## use pre-compiled EMSF library for above compiler / MPI combination +## use pre-compiled EMSF and NCEP libraries from MRW public release above compiler / MPI combination ## # DH* todo - shared directory -set ESMF_DIR /home1/05294/tg845932/softwares/esmf_7_1_0r -setenv ESMF_DIR ${ESMF_DIR} -setenv ESMF_INC ${ESMF_DIR}/include -setenv ESMF_BIN ${ESMF_DIR}/bin/bin0/Linux.intel.64.intelmpi.default -setenv ESMF_LIB ${ESMF_DIR}/lib/lib0/Linux.intel.64.intelmpi.default -setenv ESMF_MOD ${ESMF_DIR}/mod/mod0/Linux.intel.64.intelmpi.default -setenv ESMFMKFILE ${ESMF_DIR}/lib/lib0/Linux.intel.64.intelmpi.default/esmf.mk -prepend-path PATH ${ESMF_DIR}/bin/bin0/Linux.intel.64.intelmpi.default -prepend-path LD_LIBRARY_PATH ${ESMF_DIR}/lib/lib0/Linux.intel.64.intelmpi.default +module use -a /work/06146/tg854455/stampede2/NCEPLIBS-ufs-v1.0.0/modules +module load NCEPLIBS/1.0.0 ## -## NCEP libraries (download and build manually for the time being; https://github.com/climbfuji/NCEPlibs) +## load cmake ## -# DH* todo - shared directory -set NCEPLIBS_DIR /home1/05294/tg845932/softwares/NCEPlibs -setenv NCEPLIBS_DIR ${NCEPLIBS_DIR} -setenv NEMSIO_INC ${NCEPLIBS_DIR}/include -setenv NEMSIO_LIB ${NCEPLIBS_DIR}/lib/libnemsio_d.a -setenv BACIO_LIB4 ${NCEPLIBS_DIR}/lib/libbacio_4.a -setenv SP_LIBd ${NCEPLIBS_DIR}/lib/libsp_v2.0.2_d.a -setenv W3EMC_LIBd ${NCEPLIBS_DIR}/lib/libw3emc_d.a -setenv W3NCO_LIBd ${NCEPLIBS_DIR}/lib/libw3nco_d.a +module load cmake/3.16.1 +setenv CMAKE_C_COMPILER mpiicc +setenv CMAKE_CXX_COMPILER mpiicpc +setenv CMAKE_Fortran_COMPILER mpiifort +setenv CMAKE_Platform stampede.intel diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/wcoss_cray/fv3 index 4b362723e5..8df226d4c4 100644 --- a/modulefiles/wcoss_cray/fv3 +++ b/modulefiles/wcoss_cray/fv3 @@ -47,7 +47,7 @@ module load w3emc/2.3.1 module load nemsio/2.2.4 #post lib -module load post/8.0.5 +module load post/8.0.6 ## WCOSS Cray execution prereqs: module load rca diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/wcoss_dell_p3/fv3 index 37e7b4c837..74a57b00a6 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/wcoss_dell_p3/fv3 @@ -18,8 +18,9 @@ module-whatis "loads NEMS FV3 prerequisites on Venus and Mars" module load ips/18.0.1.163 module load impi/18.0.1 module load lsf/10.1 -module load cmake/3.10.0 -module load lsf/10.1 +module load cmake/3.16.2 +# module load python/3.6.3 +module load python/2.7.14 module use -a /usrx/local/nceplibs/dev/NCEPLIBS/modulefiles @@ -40,17 +41,16 @@ module load libpng/1.2.59 module load zlib/1.2.11 # load post lib -module load post/8.0.5 +module load post/8.0.6 module use /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles module load hdf5_parallel/1.10.6 -module load netcdf_parallel/4.7.4 +module load netcdf_parallel/4.7.4 module load esmf/8.0.0_ParallelNetCDF ## ## load cmake ## -module load cmake/3.10.0 setenv CMAKE_C_COMPILER mpiicc setenv CMAKE_CXX_COMPILER mpiicpc setenv CMAKE_Fortran_COMPILER mpiifort diff --git a/parm/NAM_phys.nml.IN b/parm/ccpp_ca.nml.IN similarity index 73% rename from parm/NAM_phys.nml.IN rename to parm/ccpp_ca.nml.IN index c09289e1a5..e47e01f9a3 100644 --- a/parm/NAM_phys.nml.IN +++ b/parm/ccpp_ca.nml.IN @@ -12,6 +12,7 @@ chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml @@ -64,7 +65,7 @@ p_fac = 0.1 k_split = 2 n_split = 6 - nwat = 6 + nwat = 2 na_init = @[NA_INIT] d_ext = 0.0 dnats = 0 @@ -131,19 +132,18 @@ nst_anl = .true. use_ufo = .true. pre_rad = .false. - ncld = 2 - imp_physics = 8 - lradar = .false. + ncld = 1 + imp_physics = 99 pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = 2 - iems = 0 - IAER = 11 - ico2 = 1 - isubc_sw = 0 - isubc_lw = 0 - isol = 0 + ialb = 1 + iems = 1 + IAER = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 lwhtr = .true. swhtr = .true. cnvgwd = .true. @@ -151,80 +151,67 @@ cal_pre = .true. redrag = .true. dspheat = .true. - hybedmf = .true. + hybedmf = @[HYBEDMF] + satmedmf = @[SATMEDMF] + lheatstrg = @[LHEATSTRG] random_clds = .true. - trans_trac = .true. + trans_trac = .false. cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 + isatmedmf = @[ISATMEDMF] cdmbgwd = 3.5,0.25 prslrd0 = 0. ivegsrc = 1 isot = 1 + lsm = 1 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 debug = .false. + oz_phys = @[OZ_PHYS_OLD] + oz_phys_2015 = @[OZ_PHYS_NEW] + h2o_phys = @[H2O_PHYS] nstf_name = @[NSTF_NAME] + cplflx = @[CPLFLX] + cplwav = @[CPLWAV] iau_delthrs = 6 iaufhrs = 30 iau_inc_files = @[IAU_INC_FILES] -/ - -&nam_physics_nml - MINUTES_HISTORY = 60 - gwdflg = .false. - CDMB = 0.1 - CLEFF = 1.0 - SIGFAC = 0.0 - factop = 0.50 - rlolev = 500. - dpmin = 5.00 - LONGWAVE = 'rrtm' - SHORTWAVE = 'rrtm' - CONVECTION = 'bmj' - MICROPHYSICS = 'fer_hires' - TURBULENCE = 'myj' - SFC_LAYER = 'myj' - LAND_SURFACE = 'noah' - CLDFRACTION = 'default' - RHGRD = 0.98 - SPEC_ADV = .false. - UCMCALL = 0 - FRES = 1.00 - FR = 1.00 - FSL = 0.85 - FSS = 0.85 - ENTRAIN = .false. - NEWALL = .false. - NEWSWAP = .false. - NEWUPUP = .false. - NODEEP = .false. - NPHS = 1 - NRADS = 2 - NRADL = 2 - NPRECIP = 1 - AVGMAXLEN = 3600 - NHRS_PREC = 3 - NHRS_CLOD = 3 - NHRS_HEAT = 3 - NHRS_RDLW = 3 - NHRS_RDSW = 3 - NHRS_SRFC = 3 - NP3D = 3 - CO2TF = 1 - sas_pgcon = 0.55 - sas_shal_pgcon = -1 - sas_shalconv = 1 - sas_mass_flux = 9e9 - sas_mommix = 1.0 - var_ric = 1.0 - coef_ric_l = 0.16 - coef_ric_s = 0.16 - ALPHA = 0.7 - SFENTH = 0.0 - DISHEAT = .true. - ICLIQ_SW = 1 - ICICE_SW = 3 - ICLIQ_LW = 1 - ICICE_LW = 1 + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + do_sfcperts = @[DO_SFCPERTS] + do_ca = @[DO_CA] + ca_sgs = @[CA_SGS] + ca_global = @[CA_GLOBAL] + nca = 1 + ncells = 5 + nlives = 24 + nseed = 100 + nfracseed = 0.5 + nthresh = 8 + ca_trigger = .True. + ca_entr = .False. + ca_closure = .False. + nca_g = 1 + ncells_g = 1 + nlives_g = 100 + nseed_g = 100 + ca_smooth = .True. + nspinup = 100 + iseed_ca = 12345 + nsmooth = 100 + ca_amplitude = 0.35 / &interpolator_nml diff --git a/parm/ccpp_control.nml.IN b/parm/ccpp_control.nml.IN index 2ef266c559..c69a242fdf 100644 --- a/parm/ccpp_control.nml.IN +++ b/parm/ccpp_control.nml.IN @@ -193,19 +193,27 @@ do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] do_sfcperts = @[DO_SFCPERTS] + do_ca = .false. + ca_sgs = .false. nca = 1 ncells = 5 - nfracseed = 0.5 nlives = 30 - nthresh = 0.5 - nseed = 100000 - do_ca = .false. + nseed = 1000000 + nfracseed = 0.5 + nthresh = 0. + ca_trigger = .true. + ca_entr = .false. + ca_closure = .false. ca_global = .false. - ca_sgs = .true. + nca_g = 1 + ncells_g = 1 + nlives_g = 100 + nseed_g = 100 ca_smooth = .false. - nspinup = 1000 - iseed_ca = 0 - isppt_deep = .false. + nspinup = 100 + iseed_ca = 1 + nsmooth = 1 + ca_amplitude = 0.5 do_RRTMGP = @[DO_RRTMGP] active_gases = 'h2o_co2_o3_n2o_ch4_o2' ngases = 6 diff --git a/parm/ccpp_gfdlmp.nml.IN b/parm/ccpp_gfdlmp.nml.IN index 6cf8a3bbcc..1260b12e49 100644 --- a/parm/ccpp_gfdlmp.nml.IN +++ b/parm/ccpp_gfdlmp.nml.IN @@ -155,7 +155,9 @@ trans_trac = .false. cnvcld = .true. imfshalcnv = @[IMFSHALCNV] + hwrf_samfshal = @[HWRF_SAMFSHAL] imfdeepcnv = @[IMFDEEPCNV] + hwrf_samfdeep = @[HWRF_SAMFDEEP] cdmbgwd = 3.5,0.25 prslrd0 = 0. ivegsrc = 1 diff --git a/parm/ccpp_gsd_sar_v1.nml.IN b/parm/ccpp_gsd_sar_v1.nml.IN new file mode 100644 index 0000000000..5494d40b5e --- /dev/null +++ b/parm/ccpp_gsd_sar_v1.nml.IN @@ -0,0 +1,310 @@ +&amip_interp_nml + interp_oi_sst = .true. + use_ncep_sst = .true. + use_ncep_ice = .false. + no_anom_sst = .false. + data_set = 'reynolds_oi', + date_out_of_range = 'climo', +/ + +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + fdiag = 3 + ccpp_suite = 'FV3_GSD_SAR_v1' +/ + +&diag_manager_nml + prepend_date = .F. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100, + max_files_w = 100, +/ + +&fms_nml + clock_grain = 'ROUTINE', + domains_stack_size = 2000200, + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + + &fv_core_nml + layout = 34,24 + io_layout = 1,1 + npx = 1735 + npy = 1009 + ntiles = 1, + npz = 64 + !grid_type = -1 + make_nh = .T. + fv_debug = .T. + range_warn = .T. + reset_eta = .F. + n_sponge = 24 + nudge_qv = .F. + tau = 5. + rf_cutoff = 20.e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.04 + kord_tm = -11 + kord_mt = 11 + kord_wz = 11 + kord_tr = 11 + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 4 + n_split = 5 + nwat = 6 + na_init = 1 + d_ext = 0.0 + dnats = 0 + fv_sg_adj = 300 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.12 + vtdm4 = 0.02 + ke_bg = 0. + do_vort_damp = .true. + external_ic = .T. + external_eta = .T. + gfs_phil = .false. + nggps_ic = .T. + mountain = .F. + ncep_ic = .F. + d_con = 1.0 + delt_max = 0.002 + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = -6 + hord_tr = 8 + adjust_dry_mass = .F. + consv_te = 0. + do_sat_adj = .F. + consv_am = .F. + fill = .T. + dwind_2d = .F. + print_freq = 6 + warm_start = .F. + no_dycore = .false. + z_tracer = .T. + read_increment = .F. + res_latlon_dynamics = "fv3_increment.nc" + + do_schmidt = .true. + target_lat = 38.5 + target_lon = -97.5 + stretch_fac = 0.999 +!! nord_zs_filter = 4 + n_zs_filter = 0 + regional = .true. + bc_update_interval = 3 + + full_zs_filter = .F. !unreleased feature + + nord_zs_filter = 4 + n_zs_filter = 0 ! safety +/ + +&surf_map_nml + zero_ocean = .F. + cd4 = 0.12 + cd2 = -1 + n_del2_strong = 0 + n_del2_weak = 2 + n_del4 = 1 + max_slope = 0.4 + peak_fac = 1. +/ + +&external_ic_nml + filtered_terrain = .true. + levp = 65 + gfs_dwinds = .true. + checker_tr = .F. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = 6. + h2o_phys = .true. + ldiag3d = .false. + fhcyc = 0 + nst_anl = .true. + use_ufo = .true. + pre_rad = .false. + ncld = 5 + imp_physics = 8 + ttendlim = 0.005 + ltaerosol = .T. + lradar = .T. + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .false. + shal_cnv = .false. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .F. + satmedmf = .false. + lheatstrg = .F. + do_mynnedmf = .T. + do_mynnsfclay = .false. + random_clds = .false. + trans_trac = .true. + cnvcld = .false. + imfshalcnv = 0 + imfdeepcnv = 0 + cdmbgwd = 3.5,0.25 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + debug = .false. + oz_phys = .false. + oz_phys_2015 = .true. + nstf_name = 2,1,1,0,5 + cplflx = .F. + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = '' + do_sppt = .F. + do_shum = .F. + do_skeb = .F. + do_sfcperts = .F. + lsm = 2 + lsoil = 4 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + icloud_bl = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp", + FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", + FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", + FNSMCC = "global_soilmgldas.t126.384.190.grb", + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", + LDEBUG =.false., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + FTSFS = 90 + FAISS = 99999 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999, + FAISL = 99999, + FVETL = 99999, + FSOTL = 99999, + FvmnL = 99999, + FvmxL = 99999, + FSLPL = 99999, + FABSL = 99999, + FSNOS = 99999, + FSICS = 99999, +/ +&nam_stochy + lon_s=768, + lat_s=384, + ntrunc=382, + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, +/ +&nam_sfcperts + NSFCPERT=6, + PERTZ0=-999., + PERTSHC=-999., + PERTZT=-999., + PERTLAI=-999., + PERTVEGF=-999., + PERTALB=-999., + SFC_TAU=21600, + SFC_LSCALE=500000, + ISEED_SFC=0, + SPPT_LAND=.FALSE., +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ diff --git a/parm/ccpp_regional.nml.IN b/parm/ccpp_regional.nml.IN index 05da2cf02b..ab669f4aa1 100644 --- a/parm/ccpp_regional.nml.IN +++ b/parm/ccpp_regional.nml.IN @@ -92,6 +92,7 @@ hord_tr = -8 adjust_dry_mass = .F. consv_te = 0. + do_sat_adj = .T. consv_am = .F. fill = .T. dwind_2d = .F. @@ -177,6 +178,7 @@ debug = .false. oz_phys = @[OZ_PHYS_OLD] oz_phys_2015 = @[OZ_PHYS_NEW] + h2o_phys = @[H2O_PHYS] nstf_name = 1,1,1,0,5 cplflx = .F. iau_delthrs = 6 diff --git a/parm/ccpp_regional_c768.nml.IN b/parm/ccpp_regional_c768.nml.IN index 74548b2d53..023ea52a9d 100644 --- a/parm/ccpp_regional_c768.nml.IN +++ b/parm/ccpp_regional_c768.nml.IN @@ -36,7 +36,7 @@ / &fv_core_nml - layout = 20,24 + layout = 24,20 io_layout = 1,1 npx = 1729 npy = 1441 @@ -92,6 +92,7 @@ hord_tr = 8 adjust_dry_mass = .F. consv_te = 0. + do_sat_adj = .T. consv_am = .F. fill = .T. dwind_2d = .F. @@ -174,6 +175,7 @@ debug = .false. oz_phys = @[OZ_PHYS_OLD] oz_phys_2015 = @[OZ_PHYS_NEW] + h2o_phys = @[H2O_PHYS] nstf_name = 1,1,1,0,5 cplflx = .F. iau_delthrs = 6 diff --git a/parm/ccpp_stretched-nest-input.nml.IN b/parm/ccpp_stretched-nest-input.nml.IN index 4e026df37d..7450874e4c 100644 --- a/parm/ccpp_stretched-nest-input.nml.IN +++ b/parm/ccpp_stretched-nest-input.nml.IN @@ -8,7 +8,7 @@ / &atmos_model_nml - blocksize = 32 + blocksize = 24 chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] diff --git a/parm/input.nml.IN b/parm/input.nml.IN index d4c72b8d0d..a2bb3f56d1 100644 --- a/parm/input.nml.IN +++ b/parm/input.nml.IN @@ -190,19 +190,27 @@ do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] do_sfcperts = @[DO_SFCPERTS] + do_ca = @[DO_CA] + ca_sgs = @[CA_SGS] + ca_global = @[CA_GLOBAL] nca = 1 ncells = 5 + nlives = 24 + nseed = 100 nfracseed = 0.5 - nlives = 30 - nthresh = 0.5 - nseed = 100000 - do_ca = .false. - ca_global = .false. - ca_sgs = .true. - ca_smooth = .false. - nspinup = 1000 - iseed_ca = 0 - isppt_deep = .false. + nthresh = 8 + ca_trigger = .True. + ca_entr = .False. + ca_closure = .False. + nca_g = 1 + ncells_g = 1 + nlives_g = 100 + nseed_g = 100 + ca_smooth = .True. + nspinup = 100 + iseed_ca = 12345 + nsmooth = 100 + ca_amplitude = 0.35 / &interpolator_nml diff --git a/parm/input_nest02.nml.IN b/parm/input_nest02.nml.IN index 8186d5b222..bb4471870c 100644 --- a/parm/input_nest02.nml.IN +++ b/parm/input_nest02.nml.IN @@ -8,7 +8,7 @@ / &atmos_model_nml - blocksize = 32 + blocksize = 24 chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] diff --git a/parm/model_configure.IN b/parm/model_configure.IN index 2a942dc2e6..6e851db3ae 100644 --- a/parm/model_configure.IN +++ b/parm/model_configure.IN @@ -18,7 +18,7 @@ memuse_verbose: .false. atmos_nthreads: @[THRD] use_hyper_thread: .false. ncores_per_node: 24 -restart_interval: 0 +restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. quilting: @[QUILTING] diff --git a/parm/regional_c768.nml.IN b/parm/regional_c768.nml.IN index 90b8995434..4301728653 100644 --- a/parm/regional_c768.nml.IN +++ b/parm/regional_c768.nml.IN @@ -35,7 +35,7 @@ / &fv_core_nml - layout = 20,24 + layout = 24,20 io_layout = 1,1 npx = 1729 npy = 1441 diff --git a/parm/stretched-nest-input.nml.IN b/parm/stretched-nest-input.nml.IN index 93111894ee..84868a9187 100644 --- a/parm/stretched-nest-input.nml.IN +++ b/parm/stretched-nest-input.nml.IN @@ -8,7 +8,7 @@ / &atmos_model_nml - blocksize = 32 + blocksize = 24 chksum_debug = .false. dycore_only = .false. fdiag = @[FDIAG] diff --git a/release/v0/exp/build.sh b/release/v0/exp/build.sh deleted file mode 100755 index 3cd2c2cc43..0000000000 --- a/release/v0/exp/build.sh +++ /dev/null @@ -1,105 +0,0 @@ -#!/bin/ksh - -set -e - -# DEBUG switch on (1) or off (0) -CLEAN=1 -# DEBUG switch on (1) or off (0) -DEBUG=0 -# OPENMP switch on (1) or off (0) -OPENMP=1 - -# List of valid/tested machines -valid_machines=(theia cheyenne macosx linux wcoss_cray wcoss_phase1 wcoss_phase2 jet gaea) -valid_compilers=(intel pgi gnu) - -function usage { - echo " " - echo "Usage: " - echo "build.sh machine compiler homedir" - echo " Where: machine [required] can be : ${valid_machines[@]}" - echo " compiler [required] can be : ${valid_compilers[@]}" - echo " (wcoss, jet, gaea: intel only)" - echo " homedir [optional] can be any valid directory with write permissions" - echo " " - echo "Further compile options are set at the top of build.sh: CLEAN, DEBUG, OPENMP" - echo " " - exit 1 -} - -if [[ $1 = "help" ]] ; then usage; fi - -# Always specify host and compiler -if [[ $# -lt 2 ]]; then usage; fi -machine=${1} -compiler=${2} -if [[ ${machine} == theia || ${machine} == cheyenne || ${machine} == macosx || ${machine} == linux ]]; then - arch=${machine}.${compiler} -elif [[ ${machine} == wcoss_cray || ${machine} == wcoss_phase1 || ${machine} == wcoss_phase2 || ${machine} == jet || ${machine} == gaea ]]; then - if [[ ${compiler} == intel ]]; then - arch=${machine} - else - usage - fi -fi - -set -x - -homedir=${3:-`pwd`/../../..} - -# Build the various FV3 binaries -cd $homedir/tests -# Set debug flag -if [ "$DEBUG" -eq 1 ]; then - debug_compile_option="DEBUG=Y" - mode="debug" -else - debug_compile_option="DEBUG=N" - mode="prod" -fi -# Set OpenMP flag -if [ "$OPENMP" -eq 1 ]; then - openmp_compile_option="OPENMP=Y" -else - openmp_compile_option="OPENMP=N" -fi - -# 32-bit non-hydrostatic -precision_option="32BIT=Y" -precision="32bit" -hydro_option="HYDRO=N" -hydro="nh" -compile_option="$debug_compile_option $openmp_compile_option $hydro_option $precision_option" -./compile.sh $homedir/FV3 $arch "$compile_option" 1 -cp $homedir/tests/fv3_1.exe ../NEMS/exe/fv3_gfs_${hydro}.${mode}.${precision}.${compiler}.x -rm $homedir/tests/fv3_1.exe - -# 32-bit hydrostatic -precision_option="32BIT=Y" -precision="32bit" -hydro_option="HYDRO=Y" -hydro="hydro" -compile_option="$debug_compile_option $openmp_compile_option $hydro_option $precision_option" -./compile.sh $homedir/FV3 $arch "$compile_option" 1 -cp $homedir/tests/fv3_1.exe ../NEMS/exe/fv3_gfs_${hydro}.${mode}.${precision}.${compiler}.x -rm $homedir/tests/fv3_1.exe - -# 64-bit non-hydrostatic -precision_option="32BIT=N" -precision="64bit" -hydro_option="HYDRO=N" -hydro="nh" -compile_option="$debug_compile_option $openmp_compile_option $hydro_option $precision_option" -./compile.sh $homedir/FV3 $arch "$compile_option" 1 -cp $homedir/tests/fv3_1.exe ../NEMS/exe/fv3_gfs_${hydro}.${mode}.${precision}.${compiler}.x -rm $homedir/tests/fv3_1.exe - -# 64-bit hydrostatic -precision_option="32BIT=N" -precision="64bit" -hydro_option="HYDRO=Y" -hydro="hydro" -compile_option="$debug_compile_option $openmp_compile_option $hydro_option $precision_option" -./compile.sh $homedir/FV3 $arch "$compile_option" 1 -cp $homedir/tests/fv3_1.exe ../NEMS/exe/fv3_gfs_${hydro}.${mode}.${precision}.${compiler}.x -rm $homedir/tests/fv3_1.exe diff --git a/release/v0/exp/diff_baseline.sh b/release/v0/exp/diff_baseline.sh deleted file mode 100755 index b1da5ea227..0000000000 --- a/release/v0/exp/diff_baseline.sh +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh -# -# compare test results wih baseline -# - -MACHINE=${1:-wcoss_cray} -COMPILER=${2:-intel} -CASE=${3:-C96} -if [ $MACHINE = "wcoss_cray" ]; then - dir1=/gpfs/hps/ptmp/$LOGNAME/fv3gfs/C96/gfs.20161003/00 - dir2=/gpfs/hps/emc/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/baseline/fv3gfs_nh_32bit/${CASE}/gfs.20161003/00 - nccmp=/gpfs/hps/emc/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/util/nccmp -elif [ $MACHINE = "theia" ]; then - dir1=/scratch4/BMC/gmtb/${LOGNAME}/${COMPILER}/fv3gfs/${CASE}/gfs.20161003/00 - dir2=/scratch4/BMC/gmtb/${LOGNAME}/reference/fv3gfs/${CASE}/gfs.20161003/00 - nccmp=/apps/nccmp/1.8.2-gcc/bin/nccmp -elif [ $MACHINE = "cheyenne" ]; then - dir1=/glade/scratch/${LOGNAME}/${COMPILER}/fv3gfs/C96/gfs.20161003/00 - dir2=/glade/scratch/${LOGNAME}/reference/fv3gfs/C96/gfs.20161003/00 - nccmp=/glade/p/ral/jnt/tools/nccmp-1.8.2.1/nccmp -else - echo "Platform are not supported!" - exit 0 -fi -logfile=`pwd`/log_$CASE -if [ -s $logfile ]; then rm $logfile; fi - -cd $dir2 -filelist=`ls` - -echo "compare files in $dir1 and $dir2" >$logfile -for fl in $filelist -do - - if [ -d $fl ]; then - filelistd=`ls $fl` - echo "compare files in subdirectory $fl" >> $logfile - for fld in $filelistd - do - ncfl=`ls $fl/$fld |grep -i ".nc" |wc -l` - if [ $ncfl -gt 0 ]; then - echo " $nccmp $fl/$fld $dir1/$fl/$fld " >>$logfile - $nccmp -d $fl/$fld $dir1/$fl/$fld |grep -i "diff" >>$logfile - else - echo " cmp $fl/$fld $dir1/$fl/$fld " >>$logfile - cmp $fl/$fld $dir1/$fl/$fld >>$logfile - fi - done - else - echo " $nccmp $fl $dir1/$fl " >>$logfile - $nccmp -d $fl $dir1/$fl |grep -i "diff" >>$logfile - fi - -done - -ndiff=0 -ndiff=`cat $logfile |grep -i diff | wc -l` -if [ $ndiff -gt 0 ]; then - echo "WARNING: test results are different from baseline!!! Please see the log file log_$CASE" - exit 8 -else - echo "Succeed! Test results are identical to baseline!" - exit 0 -fi - diff --git a/release/v0/exp/runjob_cheyenne_gnu.sh b/release/v0/exp/runjob_cheyenne_gnu.sh deleted file mode 100755 index 5d615d21dd..0000000000 --- a/release/v0/exp/runjob_cheyenne_gnu.sh +++ /dev/null @@ -1,137 +0,0 @@ -#!/bin/sh -l -#PBS -o out_ch -#PBS -e err_ch -#PBS -N fv3gfs -#PBS -A P48503002 -#PBS -q economy -#PBS -l select=8:ncpus=36:mpiprocs=36 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=gnu - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on cheyenne -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=cheyenne.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/glade/scratch/heinzell/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/glade/scratch/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/glade/scratch/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=8; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=1 # number of threads -export npe_node_f=36 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=64bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec="mpiexec_mpt" -export FCST_LAUNCHER="$mpiexec -np $tasks" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="$mpiexec" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/exp/runjob_cheyenne_intel.sh b/release/v0/exp/runjob_cheyenne_intel.sh deleted file mode 100755 index f0f24d39c6..0000000000 --- a/release/v0/exp/runjob_cheyenne_intel.sh +++ /dev/null @@ -1,137 +0,0 @@ -#!/bin/sh -l -#PBS -o out_ch -#PBS -e err_ch -#PBS -N fv3gfs -#PBS -A P48503002 -#PBS -q economy -#PBS -l select=8:ncpus=36:mpiprocs=36 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=intel - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on cheyenne -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=cheyenne.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/glade/scratch/heinzell/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/glade/scratch/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/glade/scratch/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=8; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=1 # number of threads -export npe_node_f=36 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=64bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec="mpiexec_mpt" -export FCST_LAUNCHER="$mpiexec -np $tasks" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="$mpiexec" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/exp/runjob_cheyenne_pgi.sh b/release/v0/exp/runjob_cheyenne_pgi.sh deleted file mode 100755 index 505e52c519..0000000000 --- a/release/v0/exp/runjob_cheyenne_pgi.sh +++ /dev/null @@ -1,137 +0,0 @@ -#!/bin/sh -l -#PBS -o out_ch -#PBS -e err_ch -#PBS -N fv3gfs -#PBS -A P48503002 -#PBS -q economy -#PBS -l select=8:ncpus=36:mpiprocs=36 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=pgi - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on cheyenne -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=cheyenne.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/glade/scratch/heinzell/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/glade/scratch/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/glade/scratch/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=8; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=1 # number of threads -export npe_node_f=36 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=64bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec="mpiexec_mpt" -export FCST_LAUNCHER="$mpiexec -np $tasks" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="$mpiexec" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/exp/runjob_cray.sh b/release/v0/exp/runjob_cray.sh deleted file mode 100755 index fd15fe730b..0000000000 --- a/release/v0/exp/runjob_cray.sh +++ /dev/null @@ -1,117 +0,0 @@ -#!/bin/sh --login -#BSUB -L /bin/sh -#BSUB -P GFS-DEV -#BSUB -e err_cray -#BSUB -o out_cray -#BSUB -J fv3gfs -#BSUB -q debug -#BSUB -M 256 -#BSUB -extsched 'CRAYLINUX[]' -#BSUB -W 00:30 -set -eux - -#-------------------------------------------- -#-------------------------------------------- -# Running NEMS FV3GFS on WCOSS CRAY -# Fanglin.Yang@noaa.gov, April 2017 -#-------------------------------------------- -#-------------------------------------------- - -export machine=WCOSS_C #WCOSS_C, THEIA, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016092900 #initial condition dates 2016092900 2016011812 2016081200 - -export BASE_DATA=/gpfs/hps/emc/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE # source directory -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/gpfs/hps/stmp/$LOGNAME/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/gpfs/hps/ptmp/$LOGNAME/$PSLOT/$CASE - -# NEMS FV3 directory, fv3 release directory and forecast excutable directory -export FV3DIR=`pwd`/../../.. -export FV3DIR_RELEASE=`pwd`/.. -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=4; export layout_y=8; export NODES=16; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=4; export layout_y=8; export NODES=16; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=8; export layout_y=16; export NODES=64; - export master_grid=0p5deg; export REMAP_TASKS=192 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=2 # number of threads -export npe_node_f=24 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks - - -export MODE=32bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi - -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.x - -#-------------------------------------------------------------------------- -. $MODULESHOME/init/sh 2>/dev/null -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -export IOBUF_PARAMS=${IOBUF_PARAMS:-'*:size=8M:verbose'} -export MPICH_GNI_COLL_OPT_OFF=${MPICH_GNI_COLL_OPT_OFF:-MPI_Alltoallv} -export MKL_CBWR=AVX2 -module list - -export FCST_LAUNCHER="aprun -n $tasks -N $task_per_node -d $nth_f $j_opt -cc depth" - -#--NSST optins -export nstf_name="2,0,1,0,5" - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -#export master_grid=0p25deg #1deg 0p5deg 0p25deg 0p125deg etc -export REMAP_LAUNCHER="aprun -n 48 -N 12 -j 1 -d 2 -cc depth" - -$REMAPSH - - -exit - diff --git a/release/v0/exp/runjob_macosx_gnu.sh b/release/v0/exp/runjob_macosx_gnu.sh deleted file mode 100755 index b66c98bed5..0000000000 --- a/release/v0/exp/runjob_macosx_gnu.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -l - -echo "Current, no runjob script for MacOSX/GNU exists. Run directory" -echo "must be created manually, the executable linked to it and the" -echo "run started from the command line (see TOP_DIR/doc/README_MACOSX.txt)" - -exit 1 diff --git a/release/v0/exp/runjob_theia_gnu.sh b/release/v0/exp/runjob_theia_gnu.sh deleted file mode 100755 index e41d2b267c..0000000000 --- a/release/v0/exp/runjob_theia_gnu.sh +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -l -#PBS -o out_theia -#PBS -e err_theia -#PBS -N fv3gfs -#PBS -A gmtb -#PBS -d . -#PBS -q debug -#PBS -l nodes=24:ppn=12 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=gnu - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on Theia -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=theia.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/scratch4/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=24; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=2 # number of threads -export npe_node_f=24 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=32bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec=`which mpirun` -export FCST_LAUNCHER="$mpiexec -prepend-rank -np $PBS_NP" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="mpirun -prepend-rank -np $REMAP_TASKS" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/exp/runjob_theia_intel.sh b/release/v0/exp/runjob_theia_intel.sh deleted file mode 100755 index 71621ce2aa..0000000000 --- a/release/v0/exp/runjob_theia_intel.sh +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -l -#PBS -o out_theia -#PBS -e err_theia -#PBS -N fv3gfs -#PBS -A gmtb -#PBS -d . -#PBS -q debug -#PBS -l nodes=24:ppn=12 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=intel - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on Theia -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=theia.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/scratch4/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=24; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=2 # number of threads -export npe_node_f=24 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=32bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec=`which mpirun` -export FCST_LAUNCHER="$mpiexec -prepend-rank -np $PBS_NP" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="mpirun -prepend-rank -np $REMAP_TASKS" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/exp/runjob_theia_pgi.sh b/release/v0/exp/runjob_theia_pgi.sh deleted file mode 100755 index 8692d52710..0000000000 --- a/release/v0/exp/runjob_theia_pgi.sh +++ /dev/null @@ -1,138 +0,0 @@ -#!/bin/sh -l -#PBS -o out_theia -#PBS -e err_theia -#PBS -N fv3gfs -#PBS -A gmtb -#PBS -d . -#PBS -q debug -#PBS -l nodes=24:ppn=12 -#PBS -l walltime=00:30:00 - -set -x -ulimit -c unlimited -COMPILER=pgi - -#------------------------------------------------------------------ -#------------------------------------------------------------------ -# Running NEMS FV3GFS on Theia -#------------------------------------------------------------------ -#notes: -# this job card is for C96 case. If you are running -# C384 or C768 cases, please make the following change: -# -# for C384, change line 8 and line 33 to: -# #PBS -l nodes=96:ppn=12 -# export CASE=C384 -# -# for C768, change line 8 and line 33 to: -# #PBS -l nodes=192:ppn=12 -# export CASE=C768 -# -#------------------------------------------------------------------ - -export machine=theia.${COMPILER} #WCOSS_C, theia, etc -export PSLOT=fv3gfs #user-defined experiment name -export CASE=C96 #resolution, C96, C384 or C768 -export CDATE=2016100300 #initial condition dates 2016100300 2016011812 2016081200 - -export BASE_DATA=/scratch4/BMC/gmtb/Dom.Heinzeller/NEMSfv3gfs_base_data -export FIX_FV3=$BASE_DATA/fix/fix_fv3 #model fixed fields -export IC_DIR=$BASE_DATA/ICs #forecast initial conditions - -# temporary running directory -export DATA=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${CASE}${PSLOT}${CDATE} -if [ -d $DATA ]; then rm -rf $DATA ; fi - -# directory to save output -export ROTDIR=/scratch4/BMC/gmtb/$LOGNAME/${COMPILER}/${PSLOT}/${CASE} - -# NEMS FV3GFS forecast executable directory -FV3DIR=${1:-`pwd`/../../..} -FV3DIR_RELEASE=${1:-`pwd`/..} -export FCSTEXECDIR=$FV3DIR/NEMS/exe - -export FHMAX=48 #maximum forecast hours -export FHOUT=3 #forecast output frequency in hours -#--------------------------------------------------------- -#--------------------------------------------------------- -case $CASE in - C96) export DELTIM=1800; export layout_x=6; export layout_y=8; export NODES=24; - export master_grid=1deg; export REMAP_TASKS=48 ;; - C384) export DELTIM=450 ; export layout_x=12; export layout_y=16; export NODES=96; - export master_grid=0p5deg; export REMAP_TASKS=96 ;; - C768) export DELTIM=225 ; export layout_x=16; export layout_y=24; export NODES=192; - export master_grid=0p25deg; export REMAP_TASKS=384 ;; - *) echo "grid $CASE not supported, exit" - exit ;; -esac - -export PARM_FV3DIAG=$FV3DIR_RELEASE/parm/parm_fv3diag -export FORECASTSH=$FV3DIR_RELEASE/scripts/exglobal_fcst_nemsfv3gfs.sh - -#---determine task configuration -export nth_f=2 # number of threads -export npe_node_f=24 # number of pes per node -export task_per_node=$((npe_node_f/nth_f)) -export tasks=$((NODES*task_per_node)) # number of tasks -export NTHREADS_REMAP=$nth_f - - -export MODE=32bit # dycore precision: 32bit, 64bit -export TYPE=nh # hydrostatic option: nh, hydro -export HYPT=off # hyperthreading: on, off -export COMP="prod" # compiling mode: debug, repro, prod -if [ ${HYPT} = on ]; then - export hyperthread=".true." - export j_opt="-j 2" -else - export hyperthread=".false." - export j_opt="-j 1" -fi -export FCSTEXEC=fv3_gfs_${TYPE}.${COMP}.${MODE}.${COMPILER}.x - -cp $FV3DIR/NEMS/src/conf/module-setup.sh.inc module-setup.sh -cp $FV3DIR/NEMS/src/conf/modules.nems modules.fv3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list - -export mpiexec=`which mpirun` -export FCST_LAUNCHER="$mpiexec -prepend-rank -np $PBS_NP" - -echo "Model started: " `date` -export MPI_TYPE_DEPTH=20 -export OMP_STACKSIZE=512M -export OMP_NUM_THREADS=$nth_f -export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 -#-------------------------------------------------------------------------- - -#--execute the forecast -$FORECASTSH -if [ $? != 0 ]; then echo "forecast failed, exit"; exit; fi - -echo "fcst job is done" - -echo "Skipping remap job" -exit 0 - -#------------------------------------------------------------------------- -#--convert 6-tile output to global arrary in netCDF format -ymd=`echo $CDATE |cut -c 1-8` -cyc=`echo $CDATE |cut -c 9-10` -export DATA=$ROTDIR/gfs.$ymd/$cyc -export IPD4=YES -export REMAPSH=$FV3DIR_RELEASE/ush/fv3gfs_remap.sh #remap 6-tile output to global array in netcdf -export REMAPEXE=$FV3DIR_RELEASE/exec/fregrid_parallel -export REMAP_LAUNCHER="mpirun -prepend-rank -np $REMAP_TASKS" - -cp $FV3DIR_RELEASE/modulefiles/fv3gfs/fre-nctools.${machine} module.fre-nctools -source ./module.fre-nctools -module list - -$REMAPSH - -echo "Remap job is done!" - -exit - diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.gnu b/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.gnu deleted file mode 100644 index 5ac0218025..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.gnu +++ /dev/null @@ -1,5 +0,0 @@ -module load ncarenv/1.2 -module load gnu/6.3.0 -module load mpt/2.15f -module load ncarcompilers/0.4.1 -module load netcdf/4.4.1.1 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.intel b/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.intel deleted file mode 100644 index 5fa965f1a3..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.intel +++ /dev/null @@ -1,5 +0,0 @@ -module load ncarenv/1.2 -module load intel/17.0.1 -module load mpt/2.15f -module load ncarcompilers/0.4.1 -module load netcdf/4.4.1.1 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.pgi b/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.pgi deleted file mode 100644 index 8887a15684..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.cheyenne.pgi +++ /dev/null @@ -1,5 +0,0 @@ -module load ncarenv/1.2 -module load pgi/17.9 -module load mpt/2.15f -module load ncarcompilers/0.4.1 -module load netcdf/4.4.1.1 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.gaea b/release/v0/modulefiles/fv3gfs/fre-nctools.gaea deleted file mode 100644 index 03fb845660..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.gaea +++ /dev/null @@ -1,7 +0,0 @@ - module rm PrgEnv-pgi PrgEnv-pathscale PrgEnv-intel PrgEnv-cray PrgEnv-gnu - module load PrgEnv-intel - module swap intel intel/15.0.2.164 - module load cray-hdf5 - module load cray-netcdf - #setenv LIBRARY_PATH ${LIBRARY_PATH}:${NETCDF_DIR}/lib:${HDF5}/lib - diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.gnu b/release/v0/modulefiles/fv3gfs/fre-nctools.theia.gnu deleted file mode 100644 index 316e428f55..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.gnu +++ /dev/null @@ -1,19 +0,0 @@ -module load gcc/6.2.0 - -# mvapich2-2.2, compiled with gnu/6.2.0 -prepend-path PATH /scratch4/BMC/gmtb/mvapich2-2.2/gnu-6.2.0/bin -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/mvapich2-2.2/gnu-6.2.0/lib -setenv MV2_ENABLE_AFFINITY 0 - -# netcdf-4.5.0, compiled with gnu/6.2.0 and mvapich2-2.2, and its dependencies -prepend-path PATH /scratch4/BMC/gmtb/zlib-1.2.11/gnu-6.2.0/bin -prepend-path PATH /scratch4/BMC/gmtb/szip-2.1.1/gnu-6.2.0/bin -prepend-path PATH /scratch4/BMC/gmtb/hdf5-1.8.20/gnu-6.2.0/mvapich2-2.2/bin -prepend-path PATH /scratch4/BMC/gmtb/parallel-netcdf-1.8.1/gnu-6.2.0/mvapich2-2.2/bin -prepend-path PATH /scratch4/BMC/gmtb/netcdf-4.5.0/gnu-6.2.0/mvapich2-2.2/bin -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/zlib-1.2.11/gnu-6.2.0/lib -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/szip-2.1.1/gnu-6.2.0/lib -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/hdf5-1.8.20/gnu-6.2.0/mvapich2-2.2/lib -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/parallel-netcdf-1.8.1/gnu-6.2.0/mvapich2-2.2/lib -prepend-path LD_LIBRARY_PATH /scratch4/BMC/gmtb/netcdf-4.5.0/gnu-6.2.0/mvapich2-2.2/lib -setenv NETCDF /scratch4/BMC/gmtb/netcdf-4.5.0/gnu-6.2.0/mvapich2-2.2 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.intel b/release/v0/modulefiles/fv3gfs/fre-nctools.theia.intel deleted file mode 100644 index afc6c2bf7c..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.intel +++ /dev/null @@ -1,3 +0,0 @@ -module load intel/18.1.163 -module load impi/5.1.2.150 -module load netcdf/4.3.0 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.pgi b/release/v0/modulefiles/fv3gfs/fre-nctools.theia.pgi deleted file mode 100644 index 04e63d4016..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.theia.pgi +++ /dev/null @@ -1,3 +0,0 @@ -module load pgi/17.7 -module load mvapich2/2.1a -module load netcdf/4.4.0 diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss b/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss deleted file mode 100644 index 1f85aed13c..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss +++ /dev/null @@ -1,5 +0,0 @@ - sh $MODULESHOME/init/sh - module purge - module load ics/16.0.3 - module load NetCDF - diff --git a/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss_cray b/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss_cray deleted file mode 100755 index 6a2d868227..0000000000 --- a/release/v0/modulefiles/fv3gfs/fre-nctools.wcoss_cray +++ /dev/null @@ -1,9 +0,0 @@ - module purge - module load PrgEnv-intel - module rm intel - module load intel/16.3.210 - module load craype-haswell - module load cray-netcdf - module load cray-hdf5 - #setenv LIBRARY_PATH ${LIBRARY_PATH}:${NETCDF_DIR}/lib:${HDF5}/lib - diff --git a/release/v0/parm/parm_fv3diag/data_table b/release/v0/parm/parm_fv3diag/data_table deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/release/v0/parm/parm_fv3diag/diag_table b/release/v0/parm/parm_fv3diag/diag_table deleted file mode 100644 index 998ae8604b..0000000000 --- a/release/v0/parm/parm_fv3diag/diag_table +++ /dev/null @@ -1,447 +0,0 @@ -#output files -"grid_spec", -1, "months", 1, "days", "time" -"atmos_4xdaily", 6, "hours", 1, "days", "time" -#"atmos_daily", 24, "hours", 1, "days", "time" -"atmos_static", -1, "hours", 1, "hours", "time" -#"atmos_sos", 60, "minutes", 1, "days", "time" -#NOTE: Using multiple gfs output files appears to cause OOM errors. -#"gfs_physics", 0, "hours", 1, "hours", "time" -#"gfs_surface", 0, "hours", 1, "hours", "time" -# files needed for NGGPS evaluation -"nggps3d", 0, "hours", 1, "hours", "time" -"nggps2d", 0, "hours", 1, "hours", "time" -#"atmos_8xdaily_instant", 3, "hours", 1, "days", "time" - -# -#output variables -# -# -#======================= -# ATMOSPHERE DIAGNOSTICS -#======================= -### -# grid_spec -### - "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, - "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, - "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, - "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, - "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, -### -# 4x daily output -### - "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "aam", "aam", "atmos_4xdaily", "all", .false., "none", 2 -### - "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 -### - "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 -#### - "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 -#### - "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 -#### -#"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 -#"dynamics", "w100", "w100", "atmos_4xdaily", "all", .false., "none", 2 -#"dynamics", "w50", "w50", "atmos_4xdaily", "all", .false., "none", 2 -#"dynamics", "w10", "w10", "atmos_4xdaily", "all", .false., "none", 2 -#### - "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 -#### - "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh100", "rh100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh50", "rh50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh10", "rh10", "atmos_4xdaily", "all", .false., "none", 2 -#### - "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 - "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 -### -# Daily averages: -### -#"dynamics", "u850", "u850", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "v850", "v850", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "u200", "u200", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "v200", "v200", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "t200", "t200", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "t100", "t100", "atmos_daily", "all", .true., "none", 2 -#"dynamics", "slp", "slp", "atmos_daily", "all", .true., "none", 2 -### -# gfs static data -### - "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 - "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 - "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 - "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 - "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 -############################################################################################# -### -# FV3 variabls needed for NGGPS evaluation -### - "gfs_dyn", "ucomp", "ucomp", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "vcomp", "vcomp", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "temp", "temp", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "delp", "delp", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "sphum", "sphum", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "o3mr", "o3mr", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "liq_wat", "clwmr", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "pfhy", "hypres", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "pfnh", "nhpres", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "w", "w", "nggps3d", "all", .false., "none", 2 - "gfs_dyn", "delz", "delz", "nggps3d", "all", .false., "none", 2 -### -# GFS variabls needed for NGGPS evaluation -### - "gfs_phys", "ALBDOsfc" "ALBDOsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "cnvprcp" "CPRATsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "totprcp" "PRATEsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "DLWRFsfc" "DLWRFsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "ULWRFsfc" "ULWRFsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "DSWRFsfc" "DSWRFsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "USWRFsfc" "USWRFsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "DSWRFtoa" "DSWRFtoa" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "USWRFtoa" "USWRFtoa" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "ULWRFtoa" "ULWRFtoa" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "gflux" "GFLUXsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "HGTsfc" "HGTsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "hpbl" "HPBLsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "fice" "ICECsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SLMSKsfc" "SLMSKsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dqsfc" "LHTFLsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dtsfc" "SHTFLsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "psurf" "PRESsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "pwat" "PWATclm" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "soilm" "SOILM" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILW1" "SOILW1" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILW2" "SOILW2" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILW3" "SOILW3" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILW4" "SOILW4" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "q2m" "SPFH2m" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "TCDCclm" "TCDCclm" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "TCDChcl" "TCDChcl" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "TCDClcl" "TCDClcl" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "TCDCmcl" "TCDCmcl" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILT1" "SOILT1" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILT2" "SOILT2" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILT3" "SOILT3" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "SOILT4" "SOILT4" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "t2m" "TMP2m" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "tsfc" "TMPsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dugwd" "UGWDsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dvgwd" "VGWDsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dusfc" "UFLXsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "dvsfc" "VFLXsfc" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "u10m" "UGRD10m" "nggps2d", "all", .false., "none", 2 - "gfs_phys", "v10m" "VGRD10m" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "weasd" "WEASDsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "snowd" "SNODsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "ZORLsfc" "ZORLsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "VFRACsfc" "VFRACsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "f10m" "F10Msfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "vtype" "VTYPEsfc" "nggps2d", "all", .false., "none", 2 - "gfs_sfc", "stype" "STYPEsfc" "nggps2d", "all", .false., "none", 2 - -############################################################################################# -### -# gfs physics data -### -#"gfs_phys", "fluxr_01" "fluxr_01" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_02" "fluxr_02" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_03" "fluxr_03" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_04" "fluxr_04" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_05" "fluxr_05" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_06" "fluxr_06" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_07" "fluxr_07" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_08" "fluxr_08" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_09" "fluxr_09" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_10" "fluxr_10" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_11" "fluxr_11" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_12" "fluxr_12" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_13" "fluxr_13" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_14" "fluxr_14" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_15" "fluxr_15" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_16" "fluxr_16" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_17" "fluxr_17" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_18" "fluxr_18" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_19" "fluxr_19" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_20" "fluxr_20" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_21" "fluxr_21" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_22" "fluxr_22" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_23" "fluxr_23" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_24" "fluxr_24" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_25" "fluxr_25" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_26" "fluxr_26" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_27" "fluxr_27" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_28" "fluxr_28" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_29" "fluxr_29" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_30" "fluxr_30" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_31" "fluxr_31" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_32" "fluxr_32" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_33" "fluxr_33" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_34" "fluxr_34" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_35" "fluxr_35" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_36" "fluxr_36" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_37" "fluxr_37" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_38" "fluxr_38" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "fluxr_39" "fluxr_39" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dswcmp_1" "dswcmp_1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dswcmp_2" "dswcmp_2" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dswcmp_3" "dswcmp_3" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dswcmp_4" "dswcmp_4" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "uswcmp_1" "uswcmp_1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "uswcmp_2" "uswcmp_2" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "uswcmp_3" "uswcmp_3" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "uswcmp_4" "uswcmp_4" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "sw_upfxc" "sw_upfxc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "sw_dnfxc" "sw_dnfxc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "sw_upfx0" "sw_upfx0" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "lw_upfxc" "lw_upfxc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "lw_upfx0" "lw_upfx0" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "srunoff" "srunoff" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "evbsa" "evbsa" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "evcwa" "evcwa" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "snohfa" "snohfa" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "transa" "transa" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "sbsnoa" "sbsnoa" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "snowca" "snowca" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "soilm" "soilm" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "tmpmin" "tmpmin" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "tmpmax" "tmpmax" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dusfc" "dusfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dvsfc" "dvsfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dtsfc" "dtsfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dqsfc" "dqsfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "totprcp" "totprcp" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "gflux" "gflux" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dlwsfc" "dlwsfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "ulwsfc" "ulwsfc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "suntim" "suntim" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "runoff" "runoff" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "ep" "ep" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "cldwrk" "cldwrk" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dugwd" "dugwd" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dvgwd" "dvgwd" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "psmean" "psmean" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "cnvprcp" "cnvprcp" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "spfhmin" "spfhmin" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "spfhmax" "spfhmax" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "rain" "rain" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "rainc" "rainc" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "u10m" "u10m" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "v10m" "v10m" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "zlvl" "zlvl" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "psurf" "psurf" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "hpbl" "hpbl" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "pwat" "pwat" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "t1" "t1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "q1" "q1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "u1" "u1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "v1" "v1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "chh" "chh" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "cmm" "cmm" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dlwsfci" "dlwsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "ulwsfci" "ulwsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dswsfci" "dswsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "uswsfci" "uswsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dusfci" "dusfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dvsfci" "dvsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dtsfci" "dtsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "dqsfci" "dqsfci" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "gfluxi" "gfluxi" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "epi" "epi" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "smcwlt2" "smcwlt2" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "smcref2" "smcref2" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "wet1" "wet1" "gfs_physics", "all", .false., "none", 2 -#"gfs_phys", "sr" "sr" "gfs_physics", "all", .false., "none", 2 -### -# gfs surface data -### -#"gfs_sfc", "alnsf" "alnsf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "alnwf" "alnwf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "alvsf" "alvsf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "alvwf" "alvwf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "canopy" "canopy" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "f10m" "f10m" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "facsf" "facsf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "facwf" "facwf" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "ffhh" "ffhh" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "ffmm" "ffmm" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "fice" "fice" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "hice" "hice" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "snoalb" "snoalb" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "shdmax" "shdmax" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "shdmin" "shdmin" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "snowd" "snowd" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "stype" "stype" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "q2m" "q2m" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "t2m" "t2m" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "tsfc" "tsfc" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "tg3" "tg3" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "tisfc" "tisfc" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "tprcp" "tprcp" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "vtype" "vtype" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "weasd" "weasd" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "slc_1" "slc_1" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "slc_2" "slc_2" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "slc_3" "slc_3" "gfs_surface", "all", .false., "none", 2 -#"gfs_sfc", "slc_4" "slc_4" "gfs_surface", "all", .false., "none", 2 -### -#"gfs_phys", "dt3dt_1" "dt3dt_1" "gfs_physics1", "all", .false., "none", 2 -#"gfs_phys", "dt3dt_2" "dt3dt_2" "gfs_physics1", "all", .false., "none", 2 -#"gfs_phys", "dt3dt_3" "dt3dt_3" "gfs_physics1", "all", .false., "none", 2 -#"gfs_phys", "dt3dt_4" "dt3dt_4" "gfs_physics1", "all", .false., "none", 2 -#"gfs_phys", "dt3dt_5" "dt3dt_5" "gfs_physics1", "all", .false., "none", 2 -#"gfs_phys", "dt3dt_6" "dt3dt_6" "gfs_physics1", "all", .false., "none", 2 -### -#"gfs_phys", "dq3dt_1" "dq3dt_1" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_2" "dq3dt_2" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_3" "dq3dt_3" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_4" "dq3dt_4" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_5" "dq3dt_5" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_6" "dq3dt_6" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_7" "dq3dt_7" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_8" "dq3dt_8" "gfs_physics2", "all", .false., "none", 2 -#"gfs_phys", "dq3dt_9" "dq3dt_9" "gfs_physics2", "all", .false., "none", 2 -### -#"gfs_phys", "du3dt_1" "du3dt_1" "gfs_physics3", "all", .false., "none", 2 -#"gfs_phys", "du3dt_2" "du3dt_2" "gfs_physics3", "all", .false., "none", 2 -#"gfs_phys", "du3dt_3" "du3dt_3" "gfs_physics3", "all", .false., "none", 2 -#"gfs_phys", "du3dt_4" "du3dt_4" "gfs_physics3", "all", .false., "none", 2 -### -#"gfs_phys", "dv3dt_1" "dv3dt_1" "gfs_physics4", "all", .false., "none", 2 -#"gfs_phys", "dv3dt_2" "dv3dt_2" "gfs_physics4", "all", .false., "none", 2 -#"gfs_phys", "dv3dt_3" "dv3dt_3" "gfs_physics4", "all", .false., "none", 2 -#"gfs_phys", "dv3dt_4" "dv3dt_4" "gfs_physics4", "all", .false., "none", 2 -### -#"gfs_phys", "dtemp_dt" "dtemp_dt" "gfs_physics5", "all", .false., "none", 2 -#"gfs_phys", "du_dt" "du_dt" "gfs_physics5", "all", .false., "none", 2 -#"gfs_phys", "dv_dt" "dv_dt" "gfs_physics5", "all", .false., "none", 2 -#"gfs_phys", "dsphum_dt" "dsphum_dt" "gfs_physics5", "all", .false., "none", 2 -### -#"gfs_phys", "dclwmr_dt" "dclwmr_dt" "gfs_physics6", "all", .false., "none", 2 -#"gfs_phys", "do3mr_dt" "do3mr_dt" "gfs_physics6", "all", .false., "none", 2 -#"gfs_phys", "dqdt_v" "dqdt_v" "gfs_physics6", "all", .false., "none", 2 -#### -## SOS high-frequency -#### -#"dynamics", "tq", "tq", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "lw", "lw", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "tb", "tb", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "ps", "ps", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "us", "us", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "vs", "vs", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "slp", "slp", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "vort850", "vort850", "atmos_sos", "all", .false., "none", 2 -#"dynamics", "w850", "w850", "atmos_sos", "all", .false., "none", 2 -#### -## Monthly averages: -#### -# "dynamics", "zsurf", "zsurf", "atmos_month", "all", .false., "none", 2 -# "dynamics", "bk", "bk", "atmos_month", "all", .false., "none", 2 -# "dynamics", "pk", "pk", "atmos_month", "all", .false., "none", 2 -# "dynamics", "ps", "ps", "atmos_month", "all", .true., "none", 2 -# "dynamics", "slp", "slp", "atmos_month", "all", .true., "none", 2 -# "dynamics", "tm", "tm", "atmos_month", "all", .true., "none", 2 -# "dynamics", "cld_amt", "cld_amt", "atmos_month", "all", .true., "none", 2 -# "dynamics", "liq_wat", "liq_wat", "atmos_month", "all", .true., "none", 2 -# "dynamics", "ice_wat", "ice_wat", "atmos_month", "all", .true., "none", 2 -# "dynamics", "snowwat", "snowwat", "atmos_month", "all", .true., "none", 2 -# "dynamics", "rainwat", "rainwat", "atmos_month", "all", .true., "none", 2 -# "dynamics", "graupel", "graupel", "atmos_month", "all", .true., "none", 2 -# "dynamics", "iw", "iw", "atmos_month", "all", .true., "none", 2 -# "dynamics", "lw", "lw", "atmos_month", "all", .true., "none", 2 -# "dynamics", "aam", "aam", "atmos_month", "all", .true., "none", 2 -# "dynamics", "amdt", "amdt", "atmos_month", "all", .true., "none", 2 -# "dynamics", "z500", "z500", "atmos_month", "all", .true., "none", 2 -# "dynamics", "temp", "temp", "atmos_month", "all", .true., "none", 2 -# "dynamics", "ucomp", "ucomp", "atmos_month", "all", .true., "none", 2 -# "dynamics", "vcomp", "vcomp", "atmos_month", "all", .true., "none", 2 -# "dynamics", "sphum", "sphum", "atmos_month", "all", .true., "none", 2 -# "dynamics", "omega", "omega", "atmos_month", "all", .true., "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/release/v0/parm/parm_fv3diag/field_table b/release/v0/parm/parm_fv3diag/field_table deleted file mode 100644 index b04c75ad2f..0000000000 --- a/release/v0/parm/parm_fv3diag/field_table +++ /dev/null @@ -1,16 +0,0 @@ -# added by FRE: sphum must be present in atmos -# specific humidity for moist runs - "TRACER", "atmos_mod", "sphum" - "longname", "specific humidity" - "units", "kg/kg" - "profile_type", "fixed", "surface_value=3.e-6" / -# prognostic cloud water mixing ratio - "TRACER", "atmos_mod", "liq_wat" - "longname", "cloud water mixing ratio" - "units", "kg/kg" - "profile_type", "fixed", "surface_value=1.e30" / -# prognostic ozone mixing ratio tracer - "TRACER", "atmos_mod", "o3mr" - "longname", "ozone mixing ratio" - "units", "kg/kg" - "profile_type", "fixed", "surface_value=1.e30" / diff --git a/release/v0/readme.txt b/release/v0/readme.txt deleted file mode 100644 index ea4bbe74e2..0000000000 --- a/release/v0/readme.txt +++ /dev/null @@ -1,228 +0,0 @@ ---------------------------------------------------------------------- -Instructions for Building and Running FV3GFS v0 release Forecast Experiments ---------------------------------------------------------------------- - -Section 1: How to get code, compile and run experiment -====================================================== - -Note: The workflow has only been tested on WCOSS Cray, theia and jet. - -1. Check out release version at: --------------------------------- - https://svnemc.ncep.noaa.gov/projects/nems/apps/NEMSfv3gfs/tags/fv3gfs.v0release - - % svn co https://svnemc.ncep.noaa.gov/projects/nems/apps/NEMSfv3gfs/tags/fv3gfs.v0release - % cd fv3gfs.v0release - - Code is also accessible via git at NCEP's VLab. - - Initiate VLab account creation using your noaa.gov credentials via - https://vlab.ncep.noaa.gov/redmine/ - - To request access to the fv3gfs git repo, fill in the web form located here - https://vlab.ncep.noaa.gov/group/fv3gfs/home - - Clone the fv3gfs repo - % git clone https://user.name@vlab.ncep.noaa.gov/git/comfv3 - % cd comfv3 - % git submodule init - % git submodule update - - -2. Compile source code: ------------------------- - a) compile the nems fv3 forecast model. - - % cd release/v0/exp - % ./build.sh machine_name(wcoss_cray, theia, or jet) - Four executable files will be created under fv3gfs.v0release/NEMS/exe: - fv3_gfs_hydro.prod.32bit.x* - fv3_gfs_hydro.prod.64bit.x* - fv3_gfs_nh.prod.32bit.x* - fv3_gfs_nh.prod.64bit.x - It will take about one hour to finish compiling. - - b) compile remap source code - - % cd ../sorc/fre-nctools.fd - now the current directory is: fv3gfs.v0release/release/v0/sorc/fre-nctools.fd - % ./BUILD_TOOLS.csh machine_name (wcoss_cray, theia or jet) - Six executables will be located under: fv3gfs.v0release/release/v0/exec - filter_topo - fregrid - fregrid_parallel - make_hgrid - make_hgrid_parallel - make_solo_mosaic - -3. Run a default experiment: ----------------------------- - The default setting is to run an experiment with non-hydrostatic 32-bit fv3 dycore - (executable fv3_gfs_nh.prod.32bit.x with C96 resolution, output are on 6 tile cubed-sphere grid, - the outputs are then remapped to 1 degree global lat-lon grid in netcdf format) - - % cd ../../exp - now the current directory is: fv3gfs.v0release/release/v0/exp - - on wcoss cray: - % bsub < runjob_cray.sh - job error file: err_cray, output print file: out_cray - run directory is at: /gpfs/hps/stmp/$LOGNAME/C96fv3gfs2016092900 - results are saved at: /gpfs/hps/ptmp/$LOGNAME/fv3gfs/C96/gfs.20160929/00 - - on theia: - If you do not belong to nems group, please change the job account from nems to your account, - change runjob_theia.sh line 5: - - #PBS -A nems - - to find your account on theia, please issue following command in any of your local directory: - % account_params - If you are Non-NCEPDEV people, please change directories DATA and ROTDIR to an area they can write to - change runjob_theia.sh line 41 and 45: - export DATA=/scratch4/NCEPDEV/stmp3/$LOGNAME/${CASE}${PSLOT}${CDATE} - export ROTDIR=/scratch4/NCEPDEV/stmp3/$LOGNAME/$PSLOT/$CASE - - - to submit a job on theia: - % qsub runjob_theia.sh - job error file: err_theia, output print file: out_theia - run directory is at: /scratch4/NCEPDEV/stmp3/$LOGNAME/C96fv3gfs2016092900 - results are saved at: /scratch4/NCEPDEV/stmp3/$LOGNAME/fv3gfs/C96/gfs.20160929/00 - -4. Compare with baseline: -------------------------- - A baseline for default experiment is set up on supported platforms. To compare with baseline: - - % cd . - current directory is now: fv3gfs.v0release/release/v0/exp - % ./diff_baseline.sh machine_name(wcoss_cray, theia, or jet) case(C96, C384, C768) - default: ./diff_baseline.sh will compare results on wcoss_cray for C96 - - on theia: - If you are Non-NCEPDEV people, please change directory dir1 to location of their output - change diff_baseline.sh line 13 - dir1=/scratch4/NCEPDEV/stmp3/${LOGNAME}/fv3gfs/${CASE}/gfs.20160929/00 - - A message will be given at the end of the script. - - on wcoss cray, the baseline is at: - /gpfs/hps/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/baseline/fv3gfs_nh_32bit/${CASE}/gfs.20160929/00 - - on theia, the baseline is at: - /scratch4/NCEPDEV/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/baseline/fv3gfs_nh_32bit/${CASE}/gfs.20160929/00 - - -Section 2: Questions and Answers: -================================= - -Q1: Where are the fix files? -A1: The fix files (binary files) are located on WCOSS Surge/Luna, Theia and Jet - a) wcoss_cray: - /gpfs/hps/emc/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/fix - b) theia: - /scratch4/NCEPDEV/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/fix - -Q2: Where are the initial conditions: -A2: Initial conditions from WCOSS Surge are in a fixed location on WCOSS Surge/Luna, Theia and Jet - a) wcoss_cray: - /gpfs/hps/emc/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/ICs - b) theia: - /scratch4/NCEPDEV/nems/noscrub/emc.nemspara/FV3GFS_V0_RELEASE/ICs - - The initial conditions contain cold start initial conditions for the following three cases. - 2016092900 Hurricane Matthew - 2016011812 Winter East Coast Blizzard - 2016081200 Louisiana Flooding - They are converted from gfs analysese of Q3FY17 NEMS GFS retrospective parallels. - -Q3: How to run a non-default experiment? -A4: First view the job card to see how to submit forecast batch jobs on WCOSS Cray. - https://svnemc.ncep.noaa.gov/projects/nems/apps/NEMSfv3gfs/tags/fv3gfs.v0release/release/v0/exp - runjob_cray.sh runjob_theia.sh runjob_jet.sh - - a) run different resolution: - export CASE=C96 # resolution: C96 (~100km), C384 (~25km) or C768 (~13km) - change CASE to C384 or C768 - on wcoss_cray, only CASE needs to be changed. - on Theia, please add change line 8 in runjob_theia.sh: - for C384, change line 8 to: - #PBS -l nodes=96:ppn=12 - for C768, change line 8 to: - #PBS -l nodes=192:ppn=12 - - b) run different case: - export CDATE=2016092900 # initial condition dates: 2016092900 2016011812 2016081200 - change default CDATE from 2016092900 to 2016011812 or 2016081200 - - - c) Run different executable: - export MODE=32bit # dycore precision: 32bit, 64bit - export TYPE=nh # hydrostatic option: nh, hydro - change MODE to 64bit or TYPE to hydro, you will get different forecast executable, please see section 2a. - - - d) Remap to different global lat-lon resolution: - export master_grid=1deg # 1deg 0p5deg 0p25deg 0p125deg - - e) run with different thread number - export nth_f=2 # number of threads: 1, 2, 4 - On theia, if number of thread is changed, please also change line 8, - the value of ppn needs to be equal to task_per_node - - f) run with different nodes - export NODES=16 # number of nodes for forecast job - export REMAP_TASKS=32 # number of mpi tasks for remap job - If change forecast job node, please follow: NODES*task_per_node = layout_x*layout_y*6 - If change remap tasks, REMAP_TASKS must be less than the number of latitude - - After changes are made to runjobs_${machine}.sh, please following example in section 3 to submit a job. - -Q4. Is there Any other variable that can be changed in the run script? - - Following variables in the job script runjobs_${machine}.sh can be modified: - - a) temporary running directory - export DATA=/gpfs/hps/stmp/$LOGNAME/${CASE}${PSLOT}${CDATE} - - b) directory to save output - export ROTDIR=/gpfs/hps/ptmp/$LOGNAME/$PSLOT/$CASE - - c) NEMS FV3GFS forecast executable directory(if forecast executable is moved to a different location, - the FCSTEXECDIR needs to point to that location) - export FCSTEXECDIR=/gpfs/hps/emc/global/noscrub/Fanglin.Yang/svn/fv3gfs/NEMSfv3gfs/trunk/NEMS/exe - - Please check runjob_${machine}.sh to see other options. Inline documentations are included. - -Q5. What nceplibs libraries are used and how to get these libraries? -A5: Following nceplibs libraries are used in this release: - - bacio-intel/2.0.1 - ip-intel/2.0.0 - sp-intel/2.0.2 - w3nco-intel/2.0.6 - w3emc-intel/2.2.0 - - nceplibs source code can be found at: https://svnemc.ncep.noaa.gov/trac/nceplibs - - -Q6. What other external libraries are used? -A6: External libraries used in this release include: - - a) intel/mpi - Intel 14-15 - - b) netcdf4.3.2 - download and installation: http://www.unidata.ucar.edu/blogs/news/entry/netcdf_4_3_2 - questions: support@unidata.ucar.edu - - c) ESMF7.0.0: - download and installation: https://www.earthsystemcog.org/news/detail/126/ - questions: esmf_support@list.woc.noaa.gov - -Q7: Where to get help for fv3 dycore questions? -A7: GFDL fv3 team at: oar.gfdl.fvgfs_support@noaa.gov - -Q8: Where to get help for gfs physics questions? -A8: GFS physics team - diff --git a/release/v0/scripts/exglobal_fcst_nemsfv3gfs.sh b/release/v0/scripts/exglobal_fcst_nemsfv3gfs.sh deleted file mode 100755 index 4e71607996..0000000000 --- a/release/v0/scripts/exglobal_fcst_nemsfv3gfs.sh +++ /dev/null @@ -1,687 +0,0 @@ -#!/bin/ksh -################################################################################ -# UNIX Script Documentation Block -# Script name: exglobal_fcst_fv3gfs.sh.ecf -# Script description: Runs a global FV3GFS model forecast -# -# Author: Fanglin Yang Org: NCEP/EMC Date: 2016-11-15 -# Abstract: This script runs a single GFS forecast with FV3 dynamical core. -# This script is created based on a C-shell script that GFDL wrote -# for the NGGPS Phase-II Dycore Comparison Project. -# -# Script history log: -# 2016-11-15 Fanglin Yang First Version. -# 2017-02-09 Rahul Mahajan Added warm start and restructured the code. -# 2017-03-10 Fanglin Yang Updated for running forecast on Cray. -# 2017-03-24 Fanglin Yang Updated to use NEMS FV3GFS with IPD4 -# -# Attributes: -# Language: Portable Operating System Interface (POSIX) Shell -# Machine: WCOSS-CRAY, Theia -################################################################################ - -# Set environment. -export VERBOSE=${VERBOSE:-"YES"} -if [ $VERBOSE = YES ] ; then - echo $(date) EXECUTING $0 $* >&2 - set -x -fi - -# Cycling and forecast hour specific parameters -export PSLOT=${PSLOT:-fv3gfs} -export CASE=${CASE:-C768} -export CDATE=${CDATE:-2017032500} -export CDUMP=${CDUMP:-gfs} -export FHMIN=${FHMIN:-0} -export FHMAX=${FHMAX:-240} -export FHOUT=${FHOUT:-3} -export FHZER=${FHZER:-6} -export FHCYC=${FHCYC:-24} - -# Directories. -export PTMP=${PTMP:-/gpfs/hps/ptmp} -export STMP=${STMP:-/gpfs/hps/stmp} -export NWPROD=${NWPROD:-${NWROOT:-/nwprod}} -export BASE_DATA=${BASE_DATA:-$NWPROD} -export FIX_DIR=${FIX_DIR:-$BASE_DATA/fix} -export FIX_AM=${FIX_AM:-$FIX_DIR/fix_am} -export FIX_FV3=${FIX_FV3:-$FIX_DIR/fix_fv3} -export DATA=${DATA:-$STMP/$LOGNAME/pr${PSLOT}${CASE}_${CDATE}} #temporary running directory -export ROTDIR=${ROTDIR:-$PTMP/$LOGNAME/pr${PSLOT}} #rorating archive directory -export IC_DIR=${IC_DIR:-$PTMP/$LOGNAME/ICs} #cold start initial conditions - -# Model resolution specific parameters -export DELTIM=${DELTIM:-225} -export layout_x=${layout_x:-8} -export layout_y=${layout_y:-16} -export LEVS=${LEVS:-65} - -# Utilities -export NCP=${NCP:-"/bin/cp -p"} -export NLN=${NLN:-"/bin/ln -sf"} -export SEND=${SEND:-"YES"} #move final result to rotating directory -export ERRSCRIPT=${ERRSCRIPT:-'eval [[ $err = 0 ]]'} -export NDATE=${NDATE:-$NWPROD/util/exec/ndate} - -# Other options -export MEMBER=${MEMBER:-"-1"} # -1: control, 0: ensemble mean, >0: ensemble member $MEMBER -export ENS_NUM=${ENS_NUM:-1} - -# Model specific stuff -export FCSTEXECDIR=${FCSTEXECDIR:-${EXECDIR:-$BASE_DATA/sorc/fv3gfs.fd/BUILD/bin}} -export FCSTEXEC=${FCSTEXEC:-fv3_gfs.x} -export PARM_FV3DIAG=${PARM_FV3DIAG:-$FV3DIR_RELREASE/parm/parm_fv3diag} - -# Model config options -export FCST_LAUNCHER=${FCST_LAUNCHER:-${APRUN:-""}} -export tasks=${tasks:-$((6*layout_x*layout_y))} -export nthreads=${nthreads:-${nth_f:-1}} -export cores_per_node=${cores_per_node:-${task_per_node:-24}} -export ntiles=${ntiles:-6} -export TYPE=${TYPE:-nh} # choices: nh, hydro -export MONO=${MONO:-non-mono} # choices: mono, non-mono -export use_hyper_thread=${hyperthread:-".false."} - -#------------------------------------------------------- -if [ ! -d $ROTDIR ]; then mkdir -p $ROTDIR; fi -if [ ! -d $DATA ]; then mkdir -p $DATA ;fi -mkdir -p $DATA/RESTART $DATA/INPUT -cd $DATA || exit 8 - -#------------------------------------------------------- -# member directory -if [ $MEMBER -lt 0 ]; then - PREINP=$CDUMP - MEMCHAR="" -else - PREINP=enkf.$CDUMP - MEMCHAR=mem`printf %03i $MEMBER` -fi -yyyymmdd=`echo $CDATE | cut -c1-8` -hh=`echo $CDATE | cut -c9-10` -MEMDIR=$ROTDIR/${PREINP}.$yyyymmdd/$hh/$MEMCHAR -if [ ! -d $MEMDIR ]; then mkdir -p $MEMDIR; fi - -#------------------------------------------------------- -# initial conditions -export warm_start=${warm_start:-".false."} -if [ $warm_start = ".false." ]; then - if [ -d $IC_DIR/${CASE}_$CDATE ]; then - $NCP $IC_DIR/${CASE}_$CDATE/* $DATA/INPUT/. - else - for file in $MEMDIR/INPUT/*.nc; do - file2=$(echo $(basename $file)) - fsuf=`echo $file2 | cut -c1-3` - if [ $fsuf = "gfs" -o $fsuf = "sfc" ]; then - $NLN $file $DATA/INPUT/$file2 - fi - done - fi -else - for file in $MEMDIR/RESTART/*.nc; do - file2=$(echo $(basename $file)) - $NLN $file $DATA/INPUT/$file2 - done - $NLN $MEMDIR/RESTART/coupler.res $DATA/INPUT/coupler.res - export read_increment=${read_increment:-".false."} - if [ $read_increment == ".true." ]; then - if [ -f $MEMDIR/$increment_file ]; then - $NLN $MEMDIR/$increment_file $DATA/INPUT/$increment_file - else - export read_increment=".false." - fi - fi -fi -nfiles=`ls -1 $DATA/INPUT/* | wc -l` -if [ $nfiles -lt 0 ]; then - echo "Initial conditions must exist in $DATA/INPUT, ABORT!" - exit 1 -fi - -#-------------------------------------------------------------------------- -# Grid and orography data -for n in `seq 1 $ntiles`; do - $NLN $FIX_FV3/$CASE/${CASE}_grid.tile${n}.nc $DATA/INPUT/${CASE}_grid.tile${n}.nc - $NLN $FIX_FV3/$CASE/${CASE}_oro_data.tile${n}.nc $DATA/INPUT/oro_data.tile${n}.nc -done -$NLN $FIX_FV3/$CASE/${CASE}_mosaic.nc $DATA/INPUT/grid_spec.nc - -# GFS standard input data -export iems=${iems:-1} -export isol=${isol:-2} -export iaer=${iaer:-111} -export ico2=${ico2:-2} - -$NLN $FIX_AM/global_solarconstant_noaa_an.txt $DATA/solarconstant_noaa_an.txt -$NLN $FIX_AM/global_o3prdlos.f77 $DATA/INPUT/global_o3prdlos.f77 -$NLN $FIX_AM/global_sfc_emissivity_idx.txt $DATA/sfc_emissivity_idx.txt - -$NLN $FIX_AM/global_co2historicaldata_glob.txt $DATA/co2historicaldata_glob.txt -$NLN $FIX_AM/co2monthlycyc.txt $DATA/co2monthlycyc.txt -if [ $ico2 -gt 0 ]; then - for file in `ls $FIX_AM/fix_co2_proj/global_co2historicaldata* ` ; do - $NLN $file $DATA/$(echo $(basename $file) | sed -e "s/global_//g") - done -fi -$NLN $FIX_AM/co2historicaldata_????.txt $DATA/ - -$NLN $FIX_AM/global_climaeropac_global.txt $DATA/aerosol.dat -if [ $iaer -gt 0 ] ; then - for file in `ls $FIX_AM/global_volcanic_aerosols* ` ; do - $NLN $file $DATA/$(echo $(basename $file) | sed -e "s/global_//g") - done -fi - -export FNGLAC=${FNGLAC:-"$FIX_AM/global_glacier.2x2.grb"} -export FNMXIC=${FNMXIC:-"$FIX_AM/global_maxice.2x2.grb"} -export FNTSFC=${FNTSFC:-"$FIX_AM/RTGSST.1982.2012.monthly.clim.grb"} -export FNSNOC=${FNSNOC:-"$FIX_AM/global_snoclim.1.875.grb"} -export FNZORC=${FNZORC:-"igbp"} -export FNALBC=${FNALBC:-"$FIX_AM/global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb"} -export FNALBC2=${FNALBC2:-"$FIX_AM/global_albedo4.1x1.grb"} -export FNAISC=${FNAISC:-"$FIX_AM/CFSR.SEAICE.1982.2012.monthly.clim.grb"} -export FNTG3C=${FNTG3C:-"$FIX_AM/global_tg3clim.2.6x1.5.grb"} -export FNVEGC=${FNVEGC:-"$FIX_AM/global_vegfrac.0.144.decpercent.grb"} -export FNVETC=${FNVETC:-"$FIX_AM/global_vegtype.igbp.t1534.3072.1536.rg.grb"} -export FNSOTC=${FNSOTC:-"$FIX_AM/global_soiltype.statsgo.t1534.3072.1536.rg.grb"} -export FNSMCC=${FNSMCC:-"$FIX_AM/global_soilmgldas.t1534.3072.1536.grb"} -export FNMSKH=${FNMSKH:-"$FIX_AM/seaice_newland.grb"} -export FNVMNC=${FNVMNC:-"$FIX_AM/global_shdmin.0.144x0.144.grb"} -export FNVMXC=${FNVMXC:-"$FIX_AM/global_shdmax.0.144x0.144.grb"} -export FNSLPC=${FNSLPC:-"$FIX_AM/global_slope.1x1.grb"} -export FNABSC=${FNABSC:-"$FIX_AM/global_mxsnoalb.uariz.t1534.3072.1536.rg.grb"} - -# nstf_name contains the NSST related parameters -# nstf_name(1) : 0 = NSSTM off, 1 = NSSTM on but uncoupled, 2 = NSSTM on and coupled -# nstf_name(2) : 1 = NSSTM spin up on, 0 = NSSTM spin up off -# nstf_name(3) : 1 = NSST analysis on, 0 = NSSTM analysis off -# nstf_name(4) : zsea1 in mm -# nstf_name(5) : zsea2 in mm -# nst_anl : .true. or .false., NSST analysis over lake -export nstf_name=${nstf_name:-"0,0,1,0,5"} - - -#------------------------------------------------------------------ -# changeable parameters -# dycore definitions -res=`echo $CASE |cut -c2-5` -resp=`expr $res + 1 ` -export npx=$resp -export npy=$resp -export npz=`expr $LEVS - 1 ` -export io_layout="1,1" -#export ncols=$(( (${npx}- 1)*(${npy}-1)*3/2 )) - -# blocking factor used for threading and general physics performance -#export nyblocks=`expr \( $npy - 1 \) \/ $layout_y ` -#export nxblocks=`expr \( $npx - 1 \) \/ $layout_x \/ 32` -#if [ $nxblocks -le 0 ]; then export nxblocks=1 ; fi -export blocksize=${blocksize:-32} - -# export the pre-conditioning of the solution -# =0 implies no pre-conditioning -# >0 means new adiabatic pre-conditioning -# <0 means older adiabatic pre-conditioning -export na_init=${na_init:-1} - -# variables for controlling initialization of NCEP/NGGPS ICs -export filtered_terrain=${filtered_terrain:-".true."} -export gfs_dwinds=${gfs_dwinds:-".true."} - -# determines whether FV3 or GFS physics calculate geopotential -export gfs_phil=${gfs_phil:-".false."} - -# determine whether ozone production occurs in GFS physics -export ozcalc=${ozcalc:-".true."} - -# export various debug options -export no_dycore=${no_dycore:-".false."} -export dycore_only=${adiabatic:-".false."} -export chksum_debug=${chksum_debug:-".false."} -export print_freq=${print_freq:-6} - -if [ ${TYPE} = "nh" ]; then - # non-hydrostatic options - export make_nh=".true." - export hydrostatic=".false." - export phys_hydrostatic=".false." # can be tested - export use_hydro_pressure=".false." # can be tested - export consv_te="1." -else - # hydrostatic options - export make_nh=".false." - export hydrostatic=".true." - export phys_hydrostatic=".false." # will be ignored in hydro mode - export use_hydro_pressure=".true." # have to be .true. in hydro mode - export consv_te="0." -fi - -# time step parameters in FV3 -export k_split=2 -export n_split=6 - -if [ ${MONO} = "mono" -o ${MONO} = "monotonic" ]; then - # monotonic options - export d_con="1." - export do_vort_damp=".false." - if [ ${TYPE} = "nh" ]; then - # non-hydrostatic - export hord_mt="10" - export hord_xx="10" - else - # hydrostatic - export hord_mt="10" - export hord_xx="10" - fi -else - # non-monotonic options - export d_con="1." - export do_vort_damp=".true." - if [ ${TYPE} = "nh" ]; then - # non-hydrostatic - export hord_mt="6" - export hord_xx="6" - else - # hydrostatic - export hord_mt="10" - export hord_xx="10" - fi -fi - -if [ ${MONO} = "non-mono" -a ${TYPE} = "nh" ]; then - export vtdm4="0.02" -else - export vtdm4="0.05" -fi - -if [ $warm_start = ".false." ]; then # CHGRES'd GFS analyses - export external_ic=".true." - export external_eta=".true." - export mountain=".false." - export read_increment=".false." - export res_latlon_dynamics='""' -else # warm start from restart file - export external_ic=".false." - export external_eta=".false." - export mountain=".true." - export make_nh=".false." - export na_init=0 - if [ $read_increment = ".true." ]; then # add increments on the fly to the restarts - export res_latlon_dynamics="$increment_file" - else - export res_latlon_dynamics='""' - fi -fi - -# build the date for curr_date and diag_table from CDATE -export SYEAR=`echo $CDATE | cut -c1-4` -export SMONTH=`echo $CDATE | cut -c5-6` -export SDAY=`echo $CDATE | cut -c7-8` -export SHOUR=`echo $CDATE | cut -c9-10` -export curr_date="${SYEAR},${SMONTH},${SDAY},${SHOUR},0,0" -export restart_secs=${restart_secs:-0} - -# copy over the tables -export DIAG_TABLE=${DIAG_TABLE:-$PARM_FV3DIAG/diag_table} -export DATA_TABLE=${DATA_TABLE:-$PARM_FV3DIAG/data_table} -export FIELD_TABLE=${FIELD_TABLE:-$PARM_FV3DIAG/field_table} - -# build the diag_table with the experiment name and date stamp -cat > diag_table << EOF -FV3 Forecast -$SYEAR $SMONTH $SDAY $SHOUR 0 0 -EOF -cat $DIAG_TABLE >> diag_table - -$NCP $DATA_TABLE data_table -$NCP $FIELD_TABLE field_table - -#------------------------------------------------------------------ -cat > nems.configure < model_configure < input.nml <> input.nml -if [ $MEMBER -gt 0 ]; then - if [ "${SET_STP_SEED:-"NO"}" = "YES" ] ; then - ISEED_SKEB=$((CDATE*1000 + MEMBER*10 + 1)) - ISEED_SHUM=$((CDATE*1000 + MEMBER*10 + 2)) - ISEED_SPPT=$((CDATE*1000 + MEMBER*10 + 3)) - ISEED_VC=$((CDATE*1000 + MEMBER*10 + 4)) - fi - cat >> input.nml << EOF -&nam_stochy - ntrunc = ${JCAP:-$((`echo $CASE | cut -c 2-`*2-2))} - lon_s = ${LONB:-$((`echo $CASE | cut -c 2-`*4))} - lat_s = ${LATB:-$((`echo $CASE | cut -c 2-`*2))} - skeb = ${SKEB:-"-999."} - shum = ${SHUM:-"-999."} - sppt = ${SPPT:-"-999."} - vcamp = ${VCAMP:-"-999."} - iseed_skeb = ${ISEED_SKEB:-${ISEED:-"0"}} - iseed_shum = ${ISEED_SHUM:-${ISEED:-"0"}} - iseed_sppt = ${ISEED_SPPT:-${ISEED:-"0"}} - iseed_vc = ${ISEED_VC:-${ISEED:-"0"}} - skeb_tau = ${SKEB_TSCALE:-"-999."} - shum_tau = ${SHUM_TSCALE:-"-999."} - sppt_tau = ${SPPT_TSCALE:-"-999."} - vc_tau = ${VC_TSCALE:-"-999."} - skeb_lscale = ${SKEB_LSCALE:-"-999."} - shum_lscale = ${SHUM_LSCALE:-"-999."} - sppt_lscale = ${SPPT_LSCALE:-"-999."} - vc_lscale = ${VC_LSCALE:-"-999."} - sppt_logit = ${SPPT_LOGIT:-".true."} - sppt_sfclimit = ${SPPT_SFCLIMIT:-".true."} - vc = ${VC:-"0."} -/ -EOF -else -cat >> input.nml << EOF -&nam_stochy -/ -EOF -fi - -#------------------------------------------------------------------ -# run the executable -cd $DATA -$NCP $FCSTEXECDIR/$FCSTEXEC $DATA/. -$FCST_LAUNCHER ./$FCSTEXEC 1>&1 2>&2 - -export ERR=$? -export err=$ERR -$ERRSCRIPT || exit 2 - -#------------------------------------------------------------------ -if [ $SEND = "YES" ]; then - # Copy model output files - cd $DATA - for n in `seq 1 $ntiles`; do - for file in $DATA/*.tile${n}.nc; do - $NCP $file $MEMDIR/. - done - done - - # Copy model restart files - cd $DATA/RESTART - if [ $restart_secs -gt 0 ]; then - restart_hrs=`echo "$restart_secs / 3600" | bc` - RDATE=`$NDATE +$restart_hrs $CDATE` - ryyyymmdd=`echo $RDATE | cut -c1-8` - rhh=`echo $RDATE | cut -c9-10` - RMEMDIR=$ROTDIR/${PREINP}.$ryyyymmdd/$rhh/$MEMCHAR - mkdir -p $RMEMDIR/RESTART - for file in ${ryyyymmdd}.${rhh}0000.* ; do - file2=$(echo $(basename $file) | sed -e "s/${ryyyymmdd}.${rhh}0000.//g") - $NCP $file $RMEMDIR/RESTART/$file2 - done - else - mkdir -p $MEMDIR/RESTART - for file in * ; do - $NCP $file $MEMDIR/RESTART/$file - done - fi -fi - -#------------------------------------------------------------------ -# Clean up before leaving -if [ ${KEEPDATA:-YES} = NO ]; then rm -rf $DATA; fi - -#------------------------------------------------------------------ -set +x -if [ "$VERBOSE" = "YES" ] ; then - echo $(date) EXITING $0 with return code $err >&2 -fi -exit $err diff --git a/release/v0/sorc/fre-nctools.fd/BUILD_TOOLS.csh b/release/v0/sorc/fre-nctools.fd/BUILD_TOOLS.csh deleted file mode 100755 index 2bb927b945..0000000000 --- a/release/v0/sorc/fre-nctools.fd/BUILD_TOOLS.csh +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/tcsh -f -# -# $Id: fre-nctools-chaco-test,v 1.2 2015/01/16 21:47:07 fms Exp $ -# ------------------------------------------------------------------------------ -# FMS/FRE Project: Program to Create the fre-nctools Package -# ------------------------------------------------------------------------------ -# Copyright (C) NOAA Geophysical Fluid Dynamics Laboratory, 2009-2012 -# Designed and written by V Balaji, Amy Langenhorst and Aleksey Yakovlev -# -set pkgName = fre-nctools -set home_dir = `pwd`/../.. - -#set pkgVersion = $1 -#echo $pkgVersion - -#Loop though these directories to build the tools there. -set freNCToolsSrc = 'tools/{make_hgrid,make_solo_mosaic,fregrid}' - -# This first run assumes you are in the git directory -set srcDir = `pwd` - -#Build in a temporary directory. -set tmpDir = `pwd`/build #$HOME/tmp.$$ -mkdir -p $tmpDir -if ( $status ) then - echo "Error during mkdir '$tmpDir'..." - exit 1 -endif -pushd $tmpDir - -echo "////////////////////////////////////////////////////////////////////////////////" -echo "//////////////////////////////////////////////////////// Environment Settings //" -echo "////////////////////////////////////////////////////////////////////////////////" - -#Original setup is for cray so for now require input only on a different platform. -set system_site = ${1} -if ( "$system_site" == "" ) then - echo "Usage: BUILD_TOOLS.csh wcoss_cray or theia" - exit 1 -else - -source $MODULESHOME/init/tcsh -#source ${PWD}/../../../IC_scripts/ENV.GAEA -#setenv FRE_SYSTEM_SITE gaea -source ${PWD}/../../../modulefiles/fv3gfs/fre-nctools.${system_site} -setenv FRE_SYSTEM_SITE ${system_site} - -setenv MPICH_UNEX_BUFFER_SIZE 256m -setenv MPICH_MAX_SHORT_MSG_SIZE 64000 -setenv MPICH_PTL_UNEX_EVENTS 160k -setenv KMP_STACKSIZE 2g -setenv F_UFMTENDIAN big -if ( ${system_site} == theia ) then - setenv HDF5_DIR $HDF5 - setenv NETCDF_DIR $NETCDF -endif -alias make make HDF5_HOME=${HDF5_DIR} NETCDF_HOME=${NETCDF_DIR} NC_BLKSZ=64K SITE=${FRE_SYSTEM_SITE} -f fre-nctools.mk - -module list - -echo "////////////////////////////////////////////////////////////////////////////////" -echo "//////////////////////////////////////////////////////////// Directory Layout //" -echo "////////////////////////////////////////////////////////////////////////////////" - -mkdir -p share/src -cp -r ${srcDir}/{shared,tools} share/src -mkdir -p $FRE_SYSTEM_SITE/bin -mkdir -p share/bin - -echo "Done..." - -foreach freNCToolsDir ( $freNCToolsSrc ) - echo "////////////////////////////////////////////////////////////////////////////////" - echo "////////////////////////////////////////////////////////////////// $freNCToolsDir:t" - echo "////////////////////////////////////////////////////////////////////////////////" - - pushd share/src/$freNCToolsDir - cp fre-nctools.mk_${system_site} fre-nctools.mk - set targets=` grep "TARGETS :=" fre-nctools.mk | cut -f2 -d'=' ` - if ( $?NOPARALLEL ) then - set targets=` grep "TARGETS :=" fre-nctools.mk | cut -f2 -d'=' | sed 's/ \S*_parallel/ /'` - endif - echo "Making $targets" - - make clean - make - if ( $status ) then - echo "Error: make failed for $targets" - exit 1 - endif - - foreach target ( $targets ) - if ( -f $target ) then - #mv $target $tmpDir/$FRE_SYSTEM_SITE/bin - mv $target $home_dir/exec - else - echo "Error during '$target' build" - exit 1 - endif - end - make clean - popd -end - -echo "////////////////////////////////////////////////////////////////////////////////" -echo "///////////////////////////////////////////////////////////////// filter_topo //" -echo "////////////////////////////////////////////////////////////////////////////////" - -cd ../tools/filter_topo -./make.csh_${system_site} -mv filter_topo $home_dir/exec/. - -echo "\n////////// CLEANING UP TEMPORARY BUILD AREA //////////\n" -rm -fr $tmpDir - diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/COPYING b/release/v0/sorc/fre-nctools.fd/shared/mosaic/COPYING deleted file mode 100644 index 93a221957b..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/COPYING +++ /dev/null @@ -1,159 +0,0 @@ -TERMS AND CONDITIONS -0. Definitions. - -“This License” refers to version 3 of the GNU General Public License. - -“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. - -To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. - -A “covered work” means either the unmodified Program or a work based on the Program. - -To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. - -A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. - -A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Use with the GNU Affero General Public License. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/constant.h b/release/v0/sorc/fre-nctools.fd/shared/mosaic/constant.h deleted file mode 100644 index 619ae075b1..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/constant.h +++ /dev/null @@ -1,2 +0,0 @@ -#define RADIUS (6371000.) -#define STRING 255 diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/create_xgrid.c b/release/v0/sorc/fre-nctools.fd/shared/mosaic/create_xgrid.c deleted file mode 100644 index 9844d89e43..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/create_xgrid.c +++ /dev/null @@ -1,2800 +0,0 @@ -#include -#include -#include -#include "mosaic_util.h" -#include "create_xgrid.h" -#include "constant.h" - -#define AREA_RATIO_THRESH (1.e-6) -#define MASK_THRESH (0.5) -#define EPSLN8 (1.e-8) -#define EPSLN30 (1.0e-30) -#define EPSLN10 (1.0e-10) -#define R2D (180/M_PI) -#define TPI (2.0*M_PI) -double grid_box_radius(const double *x, const double *y, const double *z, int n); -double dist_between_boxes(const double *x1, const double *y1, const double *z1, int n1, - const double *x2, const double *y2, const double *z2, int n2); -int inside_edge(double x0, double y0, double x1, double y1, double x, double y); -int line_intersect_2D_3D(double *a1, double *a2, double *q1, double *q2, double *q3, - double *intersect, double *u_a, double *u_q, int *inbound); - - -/******************************************************************************* - int get_maxxgrid - return constants MAXXGRID. -*******************************************************************************/ -int get_maxxgrid(void) -{ - return MAXXGRID; -} - -int get_maxxgrid_(void) -{ - return get_maxxgrid(); -} - -/******************************************************************************* -void get_grid_area(const int *nlon, const int *nlat, const double *lon, const double *lat, const double *area) - return the grid area. -*******************************************************************************/ -#ifndef __AIX -void get_grid_area_(const int *nlon, const int *nlat, const double *lon, const double *lat, double *area) -{ - get_grid_area(nlon, nlat, lon, lat, area); -} -#endif - -void get_grid_area(const int *nlon, const int *nlat, const double *lon, const double *lat, double *area) -{ - int nx, ny, nxp, i, j, n_in; - double x_in[20], y_in[20]; - - nx = *nlon; - ny = *nlat; - nxp = nx + 1; - - for(j=0; j 1) - get_grid_area(nlon_in, nlat_in, tmpx, tmpy, area_in); - else - get_grid_area_no_adjust(nlon_in, nlat_in, tmpx, tmpy, area_in); - - get_grid_area(nlon_out, nlat_out, lon_out, lat_out, area_out); - free(tmpx); - free(tmpy); - - for(j1=0; j1 MASK_THRESH ) { - - ll_lon = lon_in[i1]; ll_lat = lat_in[j1]; - ur_lon = lon_in[i1+1]; ur_lat = lat_in[j1+1]; - for(j2=0; j2=ur_lat) && (y_in[1]>=ur_lat) - && (y_in[2]>=ur_lat) && (y_in[3]>=ur_lat) ) continue; - - x_in[0] = lon_out[j2*nx2p+i2]; - x_in[1] = lon_out[j2*nx2p+i2+1]; - x_in[2] = lon_out[(j2+1)*nx2p+i2+1]; - x_in[3] = lon_out[(j2+1)*nx2p+i2]; - n_in = fix_lon(x_in, y_in, 4, (ll_lon+ur_lon)/2); - - if ( (n_out = clip ( x_in, y_in, n_in, ll_lon, ll_lat, ur_lon, ur_lat, x_out, y_out )) > 0 ) { - Xarea = poly_area (x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if( Xarea/min_area > AREA_RATIO_THRESH ) { - xgrid_area[nxgrid] = Xarea; - i_in[nxgrid] = i1; - j_in[nxgrid] = j1; - i_out[nxgrid] = i2; - j_out[nxgrid] = j2; - ++nxgrid; - if(nxgrid > MAXXGRID) error_handler("nxgrid is greater than MAXXGRID, increase MAXXGRID"); - } - } - } - } - - free(area_in); - free(area_out); - - return nxgrid; - -}; /* create_xgrid_1dx2d_order1 */ - - -/******************************************************************************** - void create_xgrid_1dx2d_order2 - This routine generate exchange grids between two grids for the second order - conservative interpolation. nlon_in,nlat_in,nlon_out,nlat_out are the size of the grid cell - and lon_in,lat_in are 1-D grid bounds, lon_out,lat_out are geographic grid location of grid cell bounds. -********************************************************************************/ -int create_xgrid_1dx2d_order2_(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, int *j_out, - double *xgrid_area, double *xgrid_clon, double *xgrid_clat) -{ - int nxgrid; - nxgrid = create_xgrid_1dx2d_order2(nlon_in, nlat_in, nlon_out, nlat_out, lon_in, lat_in, lon_out, lat_out, mask_in, i_in, - j_in, i_out, j_out, xgrid_area, xgrid_clon, xgrid_clat); - return nxgrid; - -}; -int create_xgrid_1dx2d_order2(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, int *j_out, - double *xgrid_area, double *xgrid_clon, double *xgrid_clat) -{ - - int nx1, ny1, nx2, ny2, nx1p, nx2p; - int i1, j1, i2, j2, nxgrid, n; - double ll_lon, ll_lat, ur_lon, ur_lat, x_in[MV], y_in[MV], x_out[MV], y_out[MV]; - double *area_in, *area_out, min_area; - double *tmpx, *tmpy; - - nx1 = *nlon_in; - ny1 = *nlat_in; - nx2 = *nlon_out; - ny2 = *nlat_out; - - nxgrid = 0; - nx1p = nx1 + 1; - nx2p = nx2 + 1; - - area_in = (double *)malloc(nx1*ny1*sizeof(double)); - area_out = (double *)malloc(nx2*ny2*sizeof(double)); - tmpx = (double *)malloc((nx1+1)*(ny1+1)*sizeof(double)); - tmpy = (double *)malloc((nx1+1)*(ny1+1)*sizeof(double)); - for(j1=0; j1<=ny1; j1++) for(i1=0; i1<=nx1; i1++) { - tmpx[j1*nx1p+i1] = lon_in[i1]; - tmpy[j1*nx1p+i1] = lat_in[j1]; - } - get_grid_area(nlon_in, nlat_in, tmpx, tmpy, area_in); - get_grid_area(nlon_out, nlat_out, lon_out, lat_out, area_out); - free(tmpx); - free(tmpy); - - for(j1=0; j1 MASK_THRESH ) { - - ll_lon = lon_in[i1]; ll_lat = lat_in[j1]; - ur_lon = lon_in[i1+1]; ur_lat = lat_in[j1+1]; - for(j2=0; j2=ur_lat) && (y_in[1]>=ur_lat) - && (y_in[2]>=ur_lat) && (y_in[3]>=ur_lat) ) continue; - - x_in[0] = lon_out[j2*nx2p+i2]; - x_in[1] = lon_out[j2*nx2p+i2+1]; - x_in[2] = lon_out[(j2+1)*nx2p+i2+1]; - x_in[3] = lon_out[(j2+1)*nx2p+i2]; - n_in = fix_lon(x_in, y_in, 4, (ll_lon+ur_lon)/2); - lon_in_avg = avgval_double(n_in, x_in); - - if ( (n_out = clip ( x_in, y_in, n_in, ll_lon, ll_lat, ur_lon, ur_lat, x_out, y_out )) > 0 ) { - xarea = poly_area (x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if(xarea/min_area > AREA_RATIO_THRESH ) { - xgrid_area[nxgrid] = xarea; - xgrid_clon[nxgrid] = poly_ctrlon(x_out, y_out, n_out, lon_in_avg); - xgrid_clat[nxgrid] = poly_ctrlat (x_out, y_out, n_out ); - i_in[nxgrid] = i1; - j_in[nxgrid] = j1; - i_out[nxgrid] = i2; - j_out[nxgrid] = j2; - ++nxgrid; - if(nxgrid > MAXXGRID) error_handler("nxgrid is greater than MAXXGRID, increase MAXXGRID"); - } - } - } - } - free(area_in); - free(area_out); - - return nxgrid; - -}; /* create_xgrid_1dx2d_order2 */ - -/******************************************************************************* - void create_xgrid_2dx1d_order1 - This routine generate exchange grids between two grids for the first order - conservative interpolation. nlon_in,nlat_in,nlon_out,nlat_out are the size of the grid cell - and lon_out,lat_out are 1-D grid bounds, lon_in,lat_in are geographic grid location of grid cell bounds. - mask is on grid lon_in/lat_in. -*******************************************************************************/ -int create_xgrid_2dx1d_order1_(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, - int *j_out, double *xgrid_area) -{ - int nxgrid; - - nxgrid = create_xgrid_2dx1d_order1(nlon_in, nlat_in, nlon_out, nlat_out, lon_in, lat_in, lon_out, lat_out, mask_in, - i_in, j_in, i_out, j_out, xgrid_area); - return nxgrid; - -}; -int create_xgrid_2dx1d_order1(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, const double *lon_in, - const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, - int *j_out, double *xgrid_area) -{ - - int nx1, ny1, nx2, ny2, nx1p, nx2p; - int i1, j1, i2, j2, nxgrid; - double ll_lon, ll_lat, ur_lon, ur_lat, x_in[MV], y_in[MV], x_out[MV], y_out[MV]; - double *area_in, *area_out, min_area; - double *tmpx, *tmpy; - - nx1 = *nlon_in; - ny1 = *nlat_in; - nx2 = *nlon_out; - ny2 = *nlat_out; - - nxgrid = 0; - nx1p = nx1 + 1; - nx2p = nx2 + 1; - area_in = (double *)malloc(nx1*ny1*sizeof(double)); - area_out = (double *)malloc(nx2*ny2*sizeof(double)); - tmpx = (double *)malloc((nx2+1)*(ny2+1)*sizeof(double)); - tmpy = (double *)malloc((nx2+1)*(ny2+1)*sizeof(double)); - for(j2=0; j2<=ny2; j2++) for(i2=0; i2<=nx2; i2++) { - tmpx[j2*nx2p+i2] = lon_out[i2]; - tmpy[j2*nx2p+i2] = lat_out[j2]; - } - get_grid_area(nlon_in, nlat_in, lon_in, lat_in, area_in); - get_grid_area(nlon_out, nlat_out, tmpx, tmpy, area_out); - - free(tmpx); - free(tmpy); - - for(j2=0; j2 MASK_THRESH ) { - int n_in, n_out; - double Xarea; - - y_in[0] = lat_in[j1*nx1p+i1]; - y_in[1] = lat_in[j1*nx1p+i1+1]; - y_in[2] = lat_in[(j1+1)*nx1p+i1+1]; - y_in[3] = lat_in[(j1+1)*nx1p+i1]; - if ( (y_in[0]<=ll_lat) && (y_in[1]<=ll_lat) - && (y_in[2]<=ll_lat) && (y_in[3]<=ll_lat) ) continue; - if ( (y_in[0]>=ur_lat) && (y_in[1]>=ur_lat) - && (y_in[2]>=ur_lat) && (y_in[3]>=ur_lat) ) continue; - - x_in[0] = lon_in[j1*nx1p+i1]; - x_in[1] = lon_in[j1*nx1p+i1+1]; - x_in[2] = lon_in[(j1+1)*nx1p+i1+1]; - x_in[3] = lon_in[(j1+1)*nx1p+i1]; - - n_in = fix_lon(x_in, y_in, 4, (ll_lon+ur_lon)/2); - - if ( (n_out = clip ( x_in, y_in, n_in, ll_lon, ll_lat, ur_lon, ur_lat, x_out, y_out )) > 0 ) { - Xarea = poly_area ( x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if( Xarea/min_area > AREA_RATIO_THRESH ) { - xgrid_area[nxgrid] = Xarea; - i_in[nxgrid] = i1; - j_in[nxgrid] = j1; - i_out[nxgrid] = i2; - j_out[nxgrid] = j2; - ++nxgrid; - if(nxgrid > MAXXGRID) error_handler("nxgrid is greater than MAXXGRID, increase MAXXGRID"); - } - } - } - } - - free(area_in); - free(area_out); - - return nxgrid; - -}; /* create_xgrid_2dx1d_order1 */ - - -/******************************************************************************** - void create_xgrid_2dx1d_order2 - This routine generate exchange grids between two grids for the second order - conservative interpolation. nlon_in,nlat_in,nlon_out,nlat_out are the size of the grid cell - and lon_out,lat_out are 1-D grid bounds, lon_in,lat_in are geographic grid location of grid cell bounds. - mask is on grid lon_in/lat_in. -********************************************************************************/ -int create_xgrid_2dx1d_order2_(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, int *j_out, - double *xgrid_area, double *xgrid_clon, double *xgrid_clat) -{ - int nxgrid; - nxgrid = create_xgrid_2dx1d_order2(nlon_in, nlat_in, nlon_out, nlat_out, lon_in, lat_in, lon_out, lat_out, mask_in, i_in, - j_in, i_out, j_out, xgrid_area, xgrid_clon, xgrid_clat); - return nxgrid; - -}; - -int create_xgrid_2dx1d_order2(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, int *j_out, - double *xgrid_area, double *xgrid_clon, double *xgrid_clat) -{ - - int nx1, ny1, nx2, ny2, nx1p, nx2p; - int i1, j1, i2, j2, nxgrid, n; - double ll_lon, ll_lat, ur_lon, ur_lat, x_in[MV], y_in[MV], x_out[MV], y_out[MV]; - double *tmpx, *tmpy; - double *area_in, *area_out, min_area; - double lon_in_avg; - - nx1 = *nlon_in; - ny1 = *nlat_in; - nx2 = *nlon_out; - ny2 = *nlat_out; - - nxgrid = 0; - nx1p = nx1 + 1; - nx2p = nx2 + 1; - - area_in = (double *)malloc(nx1*ny1*sizeof(double)); - area_out = (double *)malloc(nx2*ny2*sizeof(double)); - tmpx = (double *)malloc((nx2+1)*(ny2+1)*sizeof(double)); - tmpy = (double *)malloc((nx2+1)*(ny2+1)*sizeof(double)); - for(j2=0; j2<=ny2; j2++) for(i2=0; i2<=nx2; i2++) { - tmpx[j2*nx2p+i2] = lon_out[i2]; - tmpy[j2*nx2p+i2] = lat_out[j2]; - } - get_grid_area(nlon_in, nlat_in, lon_in, lat_in, area_in); - get_grid_area(nlon_out, nlat_out, tmpx, tmpy, area_out); - - free(tmpx); - free(tmpy); - - for(j2=0; j2 MASK_THRESH ) { - int n_in, n_out; - double xarea; - - y_in[0] = lat_in[j1*nx1p+i1]; - y_in[1] = lat_in[j1*nx1p+i1+1]; - y_in[2] = lat_in[(j1+1)*nx1p+i1+1]; - y_in[3] = lat_in[(j1+1)*nx1p+i1]; - if ( (y_in[0]<=ll_lat) && (y_in[1]<=ll_lat) - && (y_in[2]<=ll_lat) && (y_in[3]<=ll_lat) ) continue; - if ( (y_in[0]>=ur_lat) && (y_in[1]>=ur_lat) - && (y_in[2]>=ur_lat) && (y_in[3]>=ur_lat) ) continue; - - x_in[0] = lon_in[j1*nx1p+i1]; - x_in[1] = lon_in[j1*nx1p+i1+1]; - x_in[2] = lon_in[(j1+1)*nx1p+i1+1]; - x_in[3] = lon_in[(j1+1)*nx1p+i1]; - - n_in = fix_lon(x_in, y_in, 4, (ll_lon+ur_lon)/2); - lon_in_avg = avgval_double(n_in, x_in); - - if ( (n_out = clip ( x_in, y_in, n_in, ll_lon, ll_lat, ur_lon, ur_lat, x_out, y_out )) > 0 ) { - xarea = poly_area (x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if(xarea/min_area > AREA_RATIO_THRESH ) { - xgrid_area[nxgrid] = xarea; - xgrid_clon[nxgrid] = poly_ctrlon(x_out, y_out, n_out, lon_in_avg); - xgrid_clat[nxgrid] = poly_ctrlat (x_out, y_out, n_out ); - i_in[nxgrid] = i1; - j_in[nxgrid] = j1; - i_out[nxgrid] = i2; - j_out[nxgrid] = j2; - ++nxgrid; - if(nxgrid > MAXXGRID) error_handler("nxgrid is greater than MAXXGRID, increase MAXXGRID"); - } - } - } - } - - free(area_in); - free(area_out); - - return nxgrid; - -}; /* create_xgrid_2dx1d_order2 */ - -/******************************************************************************* - void create_xgrid_2DX2D_order1 - This routine generate exchange grids between two grids for the first order - conservative interpolation. nlon_in,nlat_in,nlon_out,nlat_out are the size of the grid cell - and lon_in,lat_in, lon_out,lat_out are geographic grid location of grid cell bounds. - mask is on grid lon_in/lat_in. -*******************************************************************************/ -#ifndef __AIX -int create_xgrid_2dx2d_order1_(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, - int *j_out, double *xgrid_area) -{ - int nxgrid; - - nxgrid = create_xgrid_2dx2d_order1(nlon_in, nlat_in, nlon_out, nlat_out, lon_in, lat_in, lon_out, lat_out, mask_in, - i_in, j_in, i_out, j_out, xgrid_area); - return nxgrid; - -}; -#endif -int create_xgrid_2dx2d_order1(const int *nlon_in, const int *nlat_in, const int *nlon_out, const int *nlat_out, - const double *lon_in, const double *lat_in, const double *lon_out, const double *lat_out, - const double *mask_in, int *i_in, int *j_in, int *i_out, - int *j_out, double *xgrid_area) -{ - -#define MAX_V 8 - int nx1, nx2, ny1, ny2, nx1p, nx2p, nxgrid; - double *area_in, *area_out; - int nblocks =1; - int *istart2=NULL, *iend2=NULL; - int npts_left, nblks_left, pos, m, npts_my, ij; - double *lon_out_min_list,*lon_out_max_list,*lon_out_avg,*lat_out_min_list,*lat_out_max_list; - double *lon_out_list, *lat_out_list; - int *pnxgrid=NULL, *pstart; - int *pi_in=NULL, *pj_in=NULL, *pi_out=NULL, *pj_out=NULL; - double *pxgrid_area=NULL; - int *n2_list; - int nthreads, nxgrid_block_max; - - nx1 = *nlon_in; - ny1 = *nlat_in; - nx2 = *nlon_out; - ny2 = *nlat_out; - nx1p = nx1 + 1; - nx2p = nx2 + 1; - - area_in = (double *)malloc(nx1*ny1*sizeof(double)); - area_out = (double *)malloc(nx2*ny2*sizeof(double)); - get_grid_area(nlon_in, nlat_in, lon_in, lat_in, area_in); - get_grid_area(nlon_out, nlat_out, lon_out, lat_out, area_out); - - nthreads = 1; -#if defined(_OPENMP) -#pragma omp parallel - nthreads = omp_get_num_threads(); -#endif - - nblocks = nthreads; - - istart2 = (int *)malloc(nblocks*sizeof(int)); - iend2 = (int *)malloc(nblocks*sizeof(int)); - - pstart = (int *)malloc(nblocks*sizeof(int)); - pnxgrid = (int *)malloc(nblocks*sizeof(int)); - - nxgrid_block_max = MAXXGRID/nblocks; - - for(m=0; m MAX_V) error_handler("create_xgrid.c: n2_in is greater than MAX_V"); - lon_out_min_list[n] = minval_double(n2_in, x2_in); - lon_out_max_list[n] = maxval_double(n2_in, x2_in); - lon_out_avg[n] = avgval_double(n2_in, x2_in); - n2_list[n] = n2_in; - for(l=0; l MASK_THRESH ) { - int n0, n1, n2, n3, l,n1_in; - double lat_in_min,lat_in_max,lon_in_min,lon_in_max,lon_in_avg; - double x1_in[MV], y1_in[MV], x_out[MV], y_out[MV]; - - n0 = j1*nx1p+i1; n1 = j1*nx1p+i1+1; - n2 = (j1+1)*nx1p+i1+1; n3 = (j1+1)*nx1p+i1; - x1_in[0] = lon_in[n0]; y1_in[0] = lat_in[n0]; - x1_in[1] = lon_in[n1]; y1_in[1] = lat_in[n1]; - x1_in[2] = lon_in[n2]; y1_in[2] = lat_in[n2]; - x1_in[3] = lon_in[n3]; y1_in[3] = lat_in[n3]; - lat_in_min = minval_double(4, y1_in); - lat_in_max = maxval_double(4, y1_in); - n1_in = fix_lon(x1_in, y1_in, 4, M_PI); - lon_in_min = minval_double(n1_in, x1_in); - lon_in_max = maxval_double(n1_in, x1_in); - lon_in_avg = avgval_double(n1_in, x1_in); - for(ij=istart2[m]; ij<=iend2[m]; ij++) { - int n_in, n_out, i2, j2, n2_in; - double xarea, dx, lon_out_min, lon_out_max; - double x2_in[MAX_V], y2_in[MAX_V]; - - i2 = ij%nx2; - j2 = ij/nx2; - - if(lat_out_min_list[ij] >= lat_in_max || lat_out_max_list[ij] <= lat_in_min ) continue; - /* adjust x2_in according to lon_in_avg*/ - n2_in = n2_list[ij]; - for(l=0; l M_PI) { - lon_out_min -= TPI; - lon_out_max -= TPI; - for (l=0; l= lon_in_max || lon_out_max <= lon_in_min ) continue; - if ( (n_out = clip_2dx2d( x1_in, y1_in, n1_in, x2_in, y2_in, n2_in, x_out, y_out )) > 0) { - double min_area; - int nn; - xarea = poly_area (x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if( xarea/min_area > AREA_RATIO_THRESH ) { - pnxgrid[m]++; - if(pnxgrid[m]>= MAXXGRID/nthreads) - error_handler("nxgrid is greater than MAXXGRID/nthreads, increase MAXXGRID, decrease nthreads, or increase number of MPI ranks"); - nn = pstart[m] + pnxgrid[m]-1; - - pxgrid_area[nn] = xarea; - pi_in[nn] = i1; - pj_in[nn] = j1; - pi_out[nn] = i2; - pj_out[nn] = j2; - } - - } - - } - } - } - - /*copy data if nblocks > 1 */ - if(nblocks == 1) { - nxgrid = pnxgrid[0]; - pi_in = NULL; - pj_in = NULL; - pi_out = NULL; - pj_out = NULL; - pxgrid_area = NULL; - } - else { - int nn, i; - nxgrid = 0; - for(m=0; m MAX_V) error_handler("create_xgrid.c: n2_in is greater than MAX_V"); - lon_out_min_list[n] = minval_double(n2_in, x2_in); - lon_out_max_list[n] = maxval_double(n2_in, x2_in); - lon_out_avg[n] = avgval_double(n2_in, x2_in); - n2_list[n] = n2_in; - for(l=0; l MASK_THRESH ) { - int n0, n1, n2, n3, l,n1_in; - double lat_in_min,lat_in_max,lon_in_min,lon_in_max,lon_in_avg; - double x1_in[MV], y1_in[MV], x_out[MV], y_out[MV]; - - n0 = j1*nx1p+i1; n1 = j1*nx1p+i1+1; - n2 = (j1+1)*nx1p+i1+1; n3 = (j1+1)*nx1p+i1; - x1_in[0] = lon_in[n0]; y1_in[0] = lat_in[n0]; - x1_in[1] = lon_in[n1]; y1_in[1] = lat_in[n1]; - x1_in[2] = lon_in[n2]; y1_in[2] = lat_in[n2]; - x1_in[3] = lon_in[n3]; y1_in[3] = lat_in[n3]; - lat_in_min = minval_double(4, y1_in); - lat_in_max = maxval_double(4, y1_in); - n1_in = fix_lon(x1_in, y1_in, 4, M_PI); - lon_in_min = minval_double(n1_in, x1_in); - lon_in_max = maxval_double(n1_in, x1_in); - lon_in_avg = avgval_double(n1_in, x1_in); - for(ij=istart2[m]; ij<=iend2[m]; ij++) { - int n_in, n_out, i2, j2, n2_in; - double xarea, dx, lon_out_min, lon_out_max; - double x2_in[MAX_V], y2_in[MAX_V]; - - i2 = ij%nx2; - j2 = ij/nx2; - - if(lat_out_min_list[ij] >= lat_in_max || lat_out_max_list[ij] <= lat_in_min ) continue; - /* adjust x2_in according to lon_in_avg*/ - n2_in = n2_list[ij]; - for(l=0; l M_PI) { - lon_out_min -= TPI; - lon_out_max -= TPI; - for (l=0; l= lon_in_max || lon_out_max <= lon_in_min ) continue; - if ( (n_out = clip_2dx2d( x1_in, y1_in, n1_in, x2_in, y2_in, n2_in, x_out, y_out )) > 0) { - double min_area; - int nn; - xarea = poly_area (x_out, y_out, n_out ) * mask_in[j1*nx1+i1]; - min_area = min(area_in[j1*nx1+i1], area_out[j2*nx2+i2]); - if( xarea/min_area > AREA_RATIO_THRESH ) { - pnxgrid[m]++; - if(pnxgrid[m]>= MAXXGRID/nthreads) - error_handler("nxgrid is greater than MAXXGRID/nthreads, increase MAXXGRID, decrease nthreads, or increase number of MPI ranks"); - nn = pstart[m] + pnxgrid[m]-1; - pxgrid_area[nn] = xarea; - pxgrid_clon[nn] = poly_ctrlon(x_out, y_out, n_out, lon_in_avg); - pxgrid_clat[nn] = poly_ctrlat (x_out, y_out, n_out ); - pi_in[nn] = i1; - pj_in[nn] = j1; - pi_out[nn] = i2; - pj_out[nn] = j2; - } - } - } - } - } - - /*copy data if nblocks > 1 */ - if(nblocks == 1) { - nxgrid = pnxgrid[0]; - pi_in = NULL; - pj_in = NULL; - pi_out = NULL; - pj_out = NULL; - pxgrid_area = NULL; - pxgrid_clon = NULL; - pxgrid_clat = NULL; - } - else { - int nn, i; - nxgrid = 0; - for(m=0; m= ll_lon); - for (i_in=0,i_out=0;i_in= ll_lon))!=inside_last) { - x_tmp[i_out] = ll_lon; - y_tmp[i_out++] = y_last + (ll_lon - x_last) * (lat_in[i_in] - y_last) / (lon_in[i_in] - x_last); - } - - /* if "to" point is right of LEFT boundary, output it */ - if (inside) { - x_tmp[i_out] = lon_in[i_in]; - y_tmp[i_out++] = lat_in[i_in]; - } - x_last = lon_in[i_in]; - y_last = lat_in[i_in]; - inside_last = inside; - } - if (!(n_out=i_out)) return(0); - - /* clip polygon with RIGHT boundary - clip V_TMP to V_OUT */ - x_last = x_tmp[n_out-1]; - y_last = y_tmp[n_out-1]; - inside_last = (x_last <= ur_lon); - for (i_in=0,i_out=0;i_in= ll_lat); - for (i_in=0,i_out=0;i_in= ll_lat))!=inside_last) { - y_tmp[i_out] = ll_lat; - x_tmp[i_out++] = x_last + (ll_lat - y_last) * (lon_out[i_in] - x_last) / (lat_out[i_in] - y_last); - } - - /* if "to" point is above BOTTOM boundary, output it */ - if (inside) { - x_tmp[i_out] = lon_out[i_in]; - y_tmp[i_out++] = lat_out[i_in]; - } - x_last = lon_out[i_in]; - y_last = lat_out[i_in]; - inside_last = inside; - } - if (!(n_out=i_out)) return(0); - - /* clip polygon with TOP boundary - clip V_TMP to V_OUT */ - x_last = x_tmp[n_out-1]; - y_last = y_tmp[n_out-1]; - inside_last = (y_last <= ur_lat); - for (i_in=0,i_out=0;i_in and - should not parallel to the line between and - may need to consider truncation error */ - dy1 = y1_1-y1_0; - dy2 = y2_1-y2_0; - dx1 = x1_1-x1_0; - dx2 = x2_1-x2_0; - ds1 = y1_0*x1_1 - y1_1*x1_0; - ds2 = y2_0*x2_1 - y2_1*x2_0; - determ = dy2*dx1 - dy1*dx2; - if(fabs(determ) < EPSLN30) { - error_handler("the line between and should not parallel to " - "the line between and "); - } - lon_out[i_out] = (dx2*ds1 - dx1*ds2)/determ; - lat_out[i_out++] = (dy2*ds1 - dy1*ds2)/determ; - - - } - if(inside) { - lon_out[i_out] = x1_1; - lat_out[i_out++] = y1_1; - } - x1_0 = x1_1; - y1_0 = y1_1; - inside_last = inside; - } - if(!(n_out=i_out)) return 0; - for(i1=0; i1 MASK_THRESH ) { - /* clockwise */ - n0 = j1*nx1p+i1; n1 = (j1+1)*nx1p+i1; - n2 = (j1+1)*nx1p+i1+1; n3 = j1*nx1p+i1+1; - x1_in[0] = x1[n0]; y1_in[0] = y1[n0]; z1_in[0] = z1[n0]; - x1_in[1] = x1[n1]; y1_in[1] = y1[n1]; z1_in[1] = z1[n1]; - x1_in[2] = x1[n2]; y1_in[2] = y1[n2]; z1_in[2] = z1[n2]; - x1_in[3] = x1[n3]; y1_in[3] = y1[n3]; z1_in[3] = z1[n3]; - - for(j2=0; j2 0) { - xarea = great_circle_area ( n_out, x_out, y_out, z_out ) * mask_in[j1*nx1+i1]; - min_area = min(area1[j1*nx1+i1], area2[j2*nx2+i2]); - if( xarea/min_area > AREA_RATIO_THRESH ) { -#ifdef debug_test_create_xgrid - printf("(i2,j2)=(%d,%d), (i1,j1)=(%d,%d), xarea=%g\n", i2, j2, i1, j1, xarea); -#endif - xgrid_area[nxgrid] = xarea; - xgrid_clon[nxgrid] = 0; /*z1l: will be developed very soon */ - xgrid_clat[nxgrid] = 0; - i_in[nxgrid] = i1; - j_in[nxgrid] = j1; - i_out[nxgrid] = i2; - j_out[nxgrid] = j2; - ++nxgrid; - if(nxgrid > MAXXGRID) error_handler("nxgrid is greater than MAXXGRID, increase MAXXGRID"); - } - } - } - } - - - free(area1); - free(area2); - - free(x1); - free(y1); - free(z1); - free(x2); - free(y2); - free(z2); - - return nxgrid; - -};/* create_xgrid_great_circle */ - -/******************************************************************************* - Revise Sutherland-Hodgeman algorithm to find the vertices of the overlapping - between any two grid boxes. It return the number of vertices for the exchange grid. - Each edge of grid box is a part of great circle. All the points are cartesian - coordinates. Here we are assuming each polygon is convex. - RANGE_CHECK_CRITERIA is used to determine if the two grid boxes are possible to be - overlap. The size should be between 0 and 0.5. The larger the range_check_criteria, - the more expensive of the computatioin. When the value is close to 0, - some small exchange grid might be lost. Suggest to use value 0.05 for C48. -*******************************************************************************/ - -int clip_2dx2d_great_circle(const double x1_in[], const double y1_in[], const double z1_in[], int n1_in, - const double x2_in[], const double y2_in[], const double z2_in [], int n2_in, - double x_out[], double y_out[], double z_out[]) -{ - struct Node *subjList=NULL; - struct Node *clipList=NULL; - struct Node *grid1List=NULL; - struct Node *grid2List=NULL; - struct Node *intersectList=NULL; - struct Node *polyList=NULL; - struct Node *curList=NULL; - struct Node *firstIntersect=NULL, *curIntersect=NULL; - struct Node *temp1=NULL, *temp2=NULL, *temp=NULL; - - int i1, i2, i1p, i2p, i2p2, npts1, npts2; - int nintersect, n_out; - int maxiter1, maxiter2, iter1, iter2; - int found1, found2, curListNum; - int has_inbound, inbound; - double pt1[MV][3], pt2[MV][3]; - double *p1_0=NULL, *p1_1=NULL; - double *p2_0=NULL, *p2_1=NULL, *p2_2=NULL; - double intersect[3]; - double u1, u2; - double min_x1, max_x1, min_y1, max_y1, min_z1, max_z1; - double min_x2, max_x2, min_y2, max_y2, min_z2, max_z2; - static int first_call=1; - - - /* first check the min and max of (x1_in, y1_in, z1_in) with (x2_in, y2_in, z2_in) */ - min_x1 = minval_double(n1_in, x1_in); - max_x2 = maxval_double(n2_in, x2_in); - if(min_x1 >= max_x2+RANGE_CHECK_CRITERIA) return 0; - max_x1 = maxval_double(n1_in, x1_in); - min_x2 = minval_double(n2_in, x2_in); - if(min_x2 >= max_x1+RANGE_CHECK_CRITERIA) return 0; - - min_y1 = minval_double(n1_in, y1_in); - max_y2 = maxval_double(n2_in, y2_in); - if(min_y1 >= max_y2+RANGE_CHECK_CRITERIA) return 0; - max_y1 = maxval_double(n1_in, y1_in); - min_y2 = minval_double(n2_in, y2_in); - if(min_y2 >= max_y1+RANGE_CHECK_CRITERIA) return 0; - - min_z1 = minval_double(n1_in, z1_in); - max_z2 = maxval_double(n2_in, z2_in); - if(min_z1 >= max_z2+RANGE_CHECK_CRITERIA) return 0; - max_z1 = maxval_double(n1_in, z1_in); - min_z2 = minval_double(n2_in, z2_in); - if(min_z2 >= max_z1+RANGE_CHECK_CRITERIA) return 0; - - rewindList(); - - grid1List = getNext(); - grid2List = getNext(); - intersectList = getNext(); - polyList = getNext(); - - /* insert points into SubjList and ClipList */ - for(i1=0; i1isInside = 1; - else - temp->isInside = 0; - temp = getNextNode(temp); - } - -#ifdef debug_test_create_xgrid - printf("\nNOTE from clip_2dx2d_great_circle: begin to set inside value of grid2List\n"); -#endif - /* check if grid2List is inside grid1List */ - temp = grid2List; - - while(temp) { - if(insidePolygon(temp, grid1List)) - temp->isInside = 1; - else - temp->isInside = 0; - temp = getNextNode(temp); - } - - /* make sure the grid box is clockwise */ - - /*make sure each polygon is convex, which is equivalent that the great_circle_area is positive */ - if( gridArea(grid1List) <= 0 ) - error_handler("create_xgrid.c(clip_2dx2d_great_circle): grid box 1 is not convex"); - if( gridArea(grid2List) <= 0 ) - error_handler("create_xgrid.c(clip_2dx2d_great_circle): grid box 2 is not convex"); - -#ifdef debug_test_create_xgrid - printNode(grid1List, "grid1List"); - printNode(grid2List, "grid2List"); -#endif - - /* get the coordinates from grid1List and grid2List. - Please not npts1 might not equal n1_in, npts2 might not equal n2_in because of pole - */ - - temp = grid1List; - for(i1=0; i1Next; - } - temp = grid2List; - for(i2=0; i2Next; - } - - firstIntersect=getNext(); - curIntersect = getNext(); - -#ifdef debug_test_create_xgrid - printf("\n\n************************ Start line_intersect_2D_3D ******************************\n"); -#endif - /* first find all the intersection points */ - nintersect = 0; - for(i1=0; i1 1) { - getFirstInbound(intersectList, firstIntersect); - if(firstIntersect->initialized) { - has_inbound = 1; - } - } - - /* when has_inbound == 0, get the grid1List and grid2List */ - if( !has_inbound && nintersect > 1) { - setInbound(intersectList, grid1List); - getFirstInbound(intersectList, firstIntersect); - if(firstIntersect->initialized) has_inbound = 1; - } - - /* if has_inbound = 1, find the overlapping */ - n_out = 0; - - if(has_inbound) { - maxiter1 = nintersect; -#ifdef debug_test_create_xgrid - printf("\nNOTE from clip_2dx2d_great_circle: number of intersect is %d\n", nintersect); - printf("\n size of grid2List is %d, size of grid1List is %d\n", length(grid2List), length(grid1List)); - printNode(intersectList, "beginning intersection list"); - printNode(grid2List, "beginning clip list"); - printNode(grid1List, "beginning subj list"); - printf("\n************************ End line_intersect_2D_3D **********************************\n\n"); -#endif - temp1 = getNode(grid1List, *firstIntersect); - if( temp1 == NULL) { - double lon[10], lat[10]; - int i; - xyz2latlon(n1_in, x1_in, y1_in, z1_in, lon, lat); - for(i=0; i< n1_in; i++) printf("lon1 = %g, lat1 = %g\n", lon[i]*R2D, lat[i]*R2D); - printf("\n"); - xyz2latlon(n2_in, x2_in, y2_in, z2_in, lon, lat); - for(i=0; i< n2_in; i++) printf("lon2 = %g, lat2 = %g\n", lon[i]*R2D, lat[i]*R2D); - printf("\n"); - - error_handler("firstIntersect is not in the grid1List"); - } - addNode(polyList, *firstIntersect); - nintersect--; -#ifdef debug_test_create_xgrid - printNode(polyList, "polyList at stage 1"); -#endif - - /* Loop over the grid1List and grid2List to find again the firstIntersect */ - curList = grid1List; - curListNum = 0; - - /* Loop through curList to find the next intersection, the loop will end - when come back to firstIntersect - */ - copyNode(curIntersect, *firstIntersect); - iter1 = 0; - found1 = 0; - - while( iter1 < maxiter1 ) { -#ifdef debug_test_create_xgrid - printf("\n----------- At iteration = %d\n\n", iter1+1 ); - printNode(curIntersect, "curIntersect at the begining of iter1"); -#endif - /* find the curIntersect in curList and get the next intersection points */ - temp1 = getNode(curList, *curIntersect); - temp2 = temp1->Next; - if( temp2 == NULL ) temp2 = curList; - - maxiter2 = length(curList); - found2 = 0; - iter2 = 0; - /* Loop until find the next intersection */ - while( iter2 < maxiter2 ) { - int temp2IsIntersect; - - temp2IsIntersect = 0; - if( isIntersect( *temp2 ) ) { /* copy the point and switch to the grid2List */ - struct Node *temp3; - - /* first check if temp2 is the firstIntersect */ - if( sameNode( *temp2, *firstIntersect) ) { - found1 = 1; - break; - } - - temp3 = temp2->Next; - if( temp3 == NULL) temp3 = curList; - if( temp3 == NULL) error_handler("creat_xgrid.c: temp3 can not be NULL"); - found2 = 1; - /* if next node is inside or an intersection, - need to keep on curList - */ - temp2IsIntersect = 1; - if( isIntersect(*temp3) || (temp3->isInside == 1) ) found2 = 0; - } - if(found2) { - copyNode(curIntersect, *temp2); - break; - } - else { - addNode(polyList, *temp2); -#ifdef debug_test_create_xgrid - printNode(polyList, "polyList at stage 2"); -#endif - if(temp2IsIntersect) { - nintersect--; - } - } - temp2 = temp2->Next; - if( temp2 == NULL ) temp2 = curList; - iter2 ++; - } - if(found1) break; - - if( !found2 ) error_handler(" not found the next intersection "); - - /* if find the first intersection, the poly found */ - if( sameNode( *curIntersect, *firstIntersect) ) { - found1 = 1; - break; - } - - /* add curIntersect to polyList and remove it from intersectList and curList */ - addNode(polyList, *curIntersect); -#ifdef debug_test_create_xgrid - printNode(polyList, "polyList at stage 3"); -#endif - nintersect--; - - - /* switch curList */ - if( curListNum == 0) { - curList = grid2List; - curListNum = 1; - } - else { - curList = grid1List; - curListNum = 0; - } - iter1++; - } - if(!found1) error_handler("not return back to the first intersection"); - - /* currently we are only clipping convex polygon to convex polygon */ - if( nintersect > 0) error_handler("After clipping, nintersect should be 0"); - - /* copy the polygon to x_out, y_out, z_out */ - temp1 = polyList; - while (temp1 != NULL) { - getCoordinate(*temp1, x_out+n_out, y_out+n_out, z_out+n_out); - temp1 = temp1->Next; - n_out++; - } - - /* if(n_out < 3) error_handler(" The clipped region has < 3 vertices"); */ - if( n_out < 3) n_out = 0; -#ifdef debug_test_create_xgrid - printNode(polyList, "polyList after clipping"); -#endif - } - - /* check if grid1 is inside grid2 */ - if(n_out==0){ - /* first check number of points in grid1 is inside grid2 */ - int n, n1in2; - /* One possible is that grid1List is inside grid2List */ -#ifdef debug_test_create_xgrid - printf("\nNOTE from clip_2dx2d_great_circle: check if grid1 is inside grid2\n"); -#endif - n1in2 = 0; - temp = grid1List; - while(temp) { - if(temp->intersect != 1) { -#ifdef debug_test_create_xgrid - printf("grid1->isInside = %d\n", temp->isInside); -#endif - if( temp->isInside == 1) n1in2++; - } - temp = getNextNode(temp); - } - if(npts1==n1in2) { /* grid1 is inside grid2 */ - n_out = npts1; - n = 0; - temp = grid1List; - while( temp ) { - getCoordinate(*temp, &x_out[n], &y_out[n], &z_out[n]); - n++; - temp = getNextNode(temp); - } - } - if(n_out>0) return n_out; - } - - /* check if grid2List is inside grid1List */ - if(n_out ==0){ - int n, n2in1; -#ifdef debug_test_create_xgrid - printf("\nNOTE from clip_2dx2d_great_circle: check if grid2 is inside grid1\n"); -#endif - - temp = grid2List; - n2in1 = 0; - while(temp) { - if(temp->intersect != 1) { -#ifdef debug_test_create_xgrid - printf("grid2->isInside = %d\n", temp->isInside); -#endif - if( temp->isInside == 1) n2in1++; - } - temp = getNextNode(temp); - } - - if(npts2==n2in1) { /* grid2 is inside grid1 */ - n_out = npts2; - n = 0; - temp = grid2List; - while( temp ) { - getCoordinate(*temp, &x_out[n], &y_out[n], &z_out[n]); - n++; - temp = getNextNode(temp); - } - - } - } - - - return n_out; -} - - -/* Intersects between the line a and the seqment s - where both line and segment are great circle lines on the sphere represented by - 3D cartesian points. - [sin sout] are the ends of a line segment - returns true if the lines could be intersected, false otherwise. - inbound means the direction of (a1,a2) go inside or outside of (q1,q2,q3) -*/ - -int line_intersect_2D_3D(double *a1, double *a2, double *q1, double *q2, double *q3, - double *intersect, double *u_a, double *u_q, int *inbound){ - - /* Do this intersection by reprsenting the line a1 to a2 as a plane through the - two line points and the origin of the sphere (0,0,0). This is the - definition of a great circle arc. - */ - double plane[9]; - double plane_p[2]; - double u; - double p1[3], v1[3], v2[3]; - double c1[3], c2[3], c3[3]; - double coincident, sense, norm; - int i; - int is_inter1, is_inter2; - - *inbound = 0; - - /* first check if any vertices are the same */ - if(samePoint(a1[0], a1[1], a1[2], q1[0], q1[1], q1[2])) { - *u_a = 0; - *u_q = 0; - intersect[0] = a1[0]; - intersect[1] = a1[1]; - intersect[2] = a1[2]; -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_a = %19.15f, u_q=%19.15f, inbound=%d\n", *u_a, *u_q, *inbound); -#endif - return 1; - } - else if (samePoint(a1[0], a1[1], a1[2], q2[0], q2[1], q2[2])) { - *u_a = 0; - *u_q = 1; - intersect[0] = a1[0]; - intersect[1] = a1[1]; - intersect[2] = a1[2]; -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_a = %19.15f, u_q=%19.15f, inbound=%d\n", *u_a, *u_q, *inbound); -#endif - return 1; - } - else if(samePoint(a2[0], a2[1], a2[2], q1[0], q1[1], q1[2])) { -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_a = %19.15f, u_q=%19.15f, inbound=%d\n", *u_a, *u_q, *inbound); -#endif - *u_a = 1; - *u_q = 0; - intersect[0] = a2[0]; - intersect[1] = a2[1]; - intersect[2] = a2[2]; - return 1; - } - else if (samePoint(a2[0], a2[1], a2[2], q2[0], q2[1], q2[2])) { -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_a = %19.15f, u_q=%19.15f, inbound=%d\n", *u_a, *u_q, *inbound); -#endif - *u_a = 1; - *u_q = 1; - intersect[0] = a2[0]; - intersect[1] = a2[1]; - intersect[2] = a2[2]; - return 1; - } - - - /* Load points defining plane into variable (these are supposed to be in counterclockwise order) */ - plane[0]=q1[0]; - plane[1]=q1[1]; - plane[2]=q1[2]; - plane[3]=q2[0]; - plane[4]=q2[1]; - plane[5]=q2[2]; - plane[6]=0.0; - plane[7]=0.0; - plane[8]=0.0; - - /* Intersect the segment with the plane */ - is_inter1 = intersect_tri_with_line(plane, a1, a2, plane_p, u_a); - - if(!is_inter1) - return 0; - - if(fabs(*u_a) < EPSLN8) *u_a = 0; - if(fabs(*u_a-1) < EPSLN8) *u_a = 1; - - -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_a = %19.15f\n", *u_a); -#endif - - - if( (*u_a < 0) || (*u_a > 1) ) return 0; - - /* Load points defining plane into variable (these are supposed to be in counterclockwise order) */ - plane[0]=a1[0]; - plane[1]=a1[1]; - plane[2]=a1[2]; - plane[3]=a2[0]; - plane[4]=a2[1]; - plane[5]=a2[2]; - plane[6]=0.0; - plane[7]=0.0; - plane[8]=0.0; - - /* Intersect the segment with the plane */ - is_inter2 = intersect_tri_with_line(plane, q1, q2, plane_p, u_q); - - if(!is_inter2) - return 0; - - if(fabs(*u_q) < EPSLN8) *u_q = 0; - if(fabs(*u_q-1) < EPSLN8) *u_q = 1; -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: u_q = %19.15f\n", *u_q); -#endif - - - if( (*u_q < 0) || (*u_q > 1) ) return 0; - - u =*u_a; - - /* The two planes are coincidental */ - vect_cross(a1, a2, c1); - vect_cross(q1, q2, c2); - vect_cross(c1, c2, c3); - coincident = metric(c3); - - if(fabs(coincident) < EPSLN30) return 0; - - /* Calculate point of intersection */ - intersect[0]=a1[0] + u*(a2[0]-a1[0]); - intersect[1]=a1[1] + u*(a2[1]-a1[1]); - intersect[2]=a1[2] + u*(a2[2]-a1[2]); - - norm = metric( intersect ); - for(i = 0; i < 3; i ++) intersect[i] /= norm; - - /* when u_q =0 or u_q =1, the following could not decide the inbound value */ - if(*u_q != 0 && *u_q != 1){ - - p1[0] = a2[0]-a1[0]; - p1[1] = a2[1]-a1[1]; - p1[2] = a2[2]-a1[2]; - v1[0] = q2[0]-q1[0]; - v1[1] = q2[1]-q1[1]; - v1[2] = q2[2]-q1[2]; - v2[0] = q3[0]-q2[0]; - v2[1] = q3[1]-q2[1]; - v2[2] = q3[2]-q2[2]; - - vect_cross(v1, v2, c1); - vect_cross(v1, p1, c2); - - sense = dot(c1, c2); - *inbound = 1; - if(sense > 0) *inbound = 2; /* v1 going into v2 in CCW sense */ - } -#ifdef debug_test_create_xgrid - printf("\nNOTE from line_intersect_2D_3D: inbound=%d\n", *inbound); -#endif - - return 1; -} - - -/*------------------------------------------------------------------------------ - double poly_ctrlat(const double x[], const double y[], int n) - This routine is used to calculate the latitude of the centroid - ---------------------------------------------------------------------------*/ - -double poly_ctrlat(const double x[], const double y[], int n) -{ - double ctrlat = 0.0; - int i; - - for (i=0;i M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - - if ( fabs(hdy)< SMALL_VALUE ) /* cheap area calculation along latitude */ - ctrlat -= dx*(2*cos(avg_y) + lat2*sin(avg_y) - cos(lat1) ); - else - ctrlat -= dx*( (sin(hdy)/hdy)*(2*cos(avg_y) + lat2*sin(avg_y)) - cos(lat1) ); - } - return (ctrlat*RADIUS*RADIUS); -}; /* poly_ctrlat */ - -/*------------------------------------------------------------------------------ - double poly_ctrlon(const double x[], const double y[], int n, double clon) - This routine is used to calculate the lontitude of the centroid. - ---------------------------------------------------------------------------*/ -double poly_ctrlon(const double x[], const double y[], int n, double clon) -{ - double ctrlon = 0.0; - int i; - - clon = clon; - for (i=0;i M_PI) dphi = dphi - 2.0*M_PI; - if(dphi < -M_PI) dphi = dphi + 2.0*M_PI; - dphi1 = phi1 - clon; - if( dphi1 > M_PI) dphi1 -= 2.0*M_PI; - if( dphi1 <-M_PI) dphi1 += 2.0*M_PI; - dphi2 = phi2 -clon; - if( dphi2 > M_PI) dphi2 -= 2.0*M_PI; - if( dphi2 <-M_PI) dphi2 += 2.0*M_PI; - - if(abs(dphi2 -dphi1) < M_PI) { - ctrlon -= dphi * (dphi1*f1+dphi2*f2)/2.0; - } - else { - if(dphi1 > 0.0) - fac = M_PI; - else - fac = -M_PI; - fint = f1 + (f2-f1)*(fac-dphi1)/abs(dphi); - ctrlon -= 0.5*dphi1*(dphi1-fac)*f1 - 0.5*dphi2*(dphi2+fac)*f2 - + 0.5*fac*(dphi1+dphi2)*fint; - } - - } - return (ctrlon*RADIUS*RADIUS); -}; /* poly_ctrlon */ - -/* ----------------------------------------------------------------------------- - double box_ctrlat(double ll_lon, double ll_lat, double ur_lon, double ur_lat) - This routine is used to calculate the latitude of the centroid. - ---------------------------------------------------------------------------*/ -double box_ctrlat(double ll_lon, double ll_lat, double ur_lon, double ur_lat) -{ - double dphi = ur_lon-ll_lon; - double ctrlat; - - if(dphi > M_PI) dphi = dphi - 2.0*M_PI; - if(dphi < -M_PI) dphi = dphi + 2.0*M_PI; - ctrlat = dphi*(cos(ur_lat) + ur_lat*sin(ur_lat)-(cos(ll_lat) + ll_lat*sin(ll_lat))); - return (ctrlat*RADIUS*RADIUS); -}; /* box_ctrlat */ - -/*------------------------------------------------------------------------------ - double box_ctrlon(double ll_lon, double ll_lat, double ur_lon, double ur_lat, double clon) - This routine is used to calculate the lontitude of the centroid - ----------------------------------------------------------------------------*/ -double box_ctrlon(double ll_lon, double ll_lat, double ur_lon, double ur_lat, double clon) -{ - double phi1, phi2, dphi, lat1, lat2, dphi1, dphi2; - double f1, f2, fac, fint; - double ctrlon = 0.0; - int i; - clon = clon; - for( i =0; i<2; i++) { - if(i == 0) { - phi1 = ur_lon; - phi2 = ll_lon; - lat1 = lat2 = ll_lat; - } - else { - phi1 = ll_lon; - phi2 = ur_lon; - lat1 = lat2 = ur_lat; - } - dphi = phi1 - phi2; - f1 = 0.5*(cos(lat1)*sin(lat1)+lat1); - f2 = 0.5*(cos(lat2)*sin(lat2)+lat2); - - if(dphi > M_PI) dphi = dphi - 2.0*M_PI; - if(dphi < -M_PI) dphi = dphi + 2.0*M_PI; - /* make sure the center is in the same grid box. */ - dphi1 = phi1 - clon; - if( dphi1 > M_PI) dphi1 -= 2.0*M_PI; - if( dphi1 <-M_PI) dphi1 += 2.0*M_PI; - dphi2 = phi2 -clon; - if( dphi2 > M_PI) dphi2 -= 2.0*M_PI; - if( dphi2 <-M_PI) dphi2 += 2.0*M_PI; - - if(abs(dphi2 -dphi1) < M_PI) { - ctrlon -= dphi * (dphi1*f1+dphi2*f2)/2.0; - } - else { - if(dphi1 > 0.0) - fac = M_PI; - else - fac = -M_PI; - fint = f1 + (f2-f1)*(fac-dphi1)/abs(dphi); - ctrlon -= 0.5*dphi1*(dphi1-fac)*f1 - 0.5*dphi2*(dphi2+fac)*f2 - + 0.5*fac*(dphi1+dphi2)*fint; - } - } - return (ctrlon*RADIUS*RADIUS); -} /* box_ctrlon */ - -/******************************************************************************* - double grid_box_radius(double *x, double *y, double *z, int n); - Find the radius of the grid box, the radius is defined the - maximum distance between any two vertices -*******************************************************************************/ -double grid_box_radius(const double *x, const double *y, const double *z, int n) -{ - double radius; - int i, j; - - radius = 0; - for(i=0; i is - the outward edge normal from vertex to . is the vector - from to . - if Inner produce * > 0, outside, otherwise inside. - inner product value = 0 also treate as inside. -*******************************************************************************/ -int inside_edge(double x0, double y0, double x1, double y1, double x, double y) -{ - const double SMALL = 1.e-12; - double product; - - product = ( x-x0 )*(y1-y0) + (x0-x1)*(y-y0); - return (product<=SMALL) ? 1:0; - - }; /* inside_edge */ - - -/* The following is a test program to test subroutines in create_xgrid.c */ - -#ifdef test_create_xgrid - -#include "create_xgrid.h" -#include - -#define D2R (M_PI/180) -#define R2D (180/M_PI) -#define MAXPOINT 1000 - -int main(int argc, char* argv[]) -{ - - double lon1_in[MAXPOINT], lat1_in[MAXPOINT]; - double lon2_in[MAXPOINT], lat2_in[MAXPOINT]; - double x1_in[MAXPOINT], y1_in[MAXPOINT], z1_in[MAXPOINT]; - double x2_in[MAXPOINT], y2_in[MAXPOINT], z2_in[MAXPOINT]; - double lon_out[20], lat_out[20]; - double x_out[20], y_out[20], z_out[20]; - int n1_in, n2_in, n_out, i, j; - int nlon1=0, nlat1=0, nlon2=0, nlat2=0; - int n; - int ntest = 11; - - - for(n=11; n<=ntest; n++) { - - switch (n) { - case 1: - /**************************************************************** - - test clip_2dx2d_great_cirle case 1: - box 1: (20,10), (20,12), (22,12), (22,10) - box 2: (21,11), (21,14), (24,14), (24,11) - out : (21, 12.0018), (22, 12), (22, 11.0033), (21, 11) - - ****************************************************************/ - n1_in = 4; n2_in = 4; - /* first a simple lat-lon grid box to clip another lat-lon grid box */ - lon1_in[0] = 20; lat1_in[0] = 10; - lon1_in[1] = 20; lat1_in[1] = 12; - lon1_in[2] = 22; lat1_in[2] = 12; - lon1_in[3] = 22; lat1_in[3] = 10; - lon2_in[0] = 21; lat2_in[0] = 11; - lon2_in[1] = 21; lat2_in[1] = 14; - lon2_in[2] = 24; lat2_in[2] = 14; - lon2_in[3] = 24; lat2_in[3] = 11; - break; - - case 2: - /**************************************************************** - - test clip_2dx2d_great_cirle case 2: two identical box - box 1: (20,10), (20,12), (22,12), (22,10) - box 2: (20,10), (20,12), (22,12), (22,10) - out : (20,10), (20,12), (22,12), (22,10) - - ****************************************************************/ - lon1_in[0] = 20; lat1_in[0] = 10; - lon1_in[1] = 20; lat1_in[1] = 12; - lon1_in[2] = 22; lat1_in[2] = 12; - lon1_in[3] = 22; lat1_in[3] = 10; - - for(i=0; i 10 ) { - int nxgrid; - int *i1, *j1, *i2, *j2; - double *xarea, *xclon, *xclat, *mask1; - - mask1 = (double *)malloc(nlon1*nlat1*sizeof(double)); - i1 = (int *)malloc(MAXXGRID*sizeof(int)); - j1 = (int *)malloc(MAXXGRID*sizeof(int)); - i2 = (int *)malloc(MAXXGRID*sizeof(int)); - j2 = (int *)malloc(MAXXGRID*sizeof(int)); - xarea = (double *)malloc(MAXXGRID*sizeof(double)); - xclon = (double *)malloc(MAXXGRID*sizeof(double)); - xclat = (double *)malloc(MAXXGRID*sizeof(double)); - - for(i=0; i -! Zhi Liang -! - -! - -! -! gradient_mod implements some utility routines to calculate gradient. -! - -! -! gradient_mod implements some utility routines to calculate gradient. -! Currently only gradient on cubic grid is implemented. Also a public interface -! is provided to calculate grid information needed to calculate gradient. - -use mpp_mod, only : mpp_error, FATAL -use constants_mod, only : RADIUS - -implicit none -private - - -public :: gradient_cubic -public :: calc_cubic_grid_info - -character(len=128) :: version = '$Id$' -character(len=128) :: tagname = '$Name$' - -contains - - -!##################################################################### -! NOTe: pin has halo size = 1. -! the size of pin will be (nx+2,ny+2), T-cell center, with halo = 1 -! the size of dx will be (nx, ny+1), N-cell center -! the size of dy will be (nx+1, ny), E-cell center -! the size of area will be (nx, ny), T-cell center. -! The size of edge_w will be (ny+1), C-cell center -! The size of edge_e will be (ny+1), C-cell center -! The size of edge_s will be (nx+1), C-cell center -! The size of edge_n will be (nx+1), C-cell center -! The size of en_n will be (3,nx,ny+1), N-cell center -! The size of en_e will be (3,nx+1,ny), E-cell center -! The size of vlon will be (3,nx, ny) T-cell center -! The size of vlat will be (3,nx, ny), T-cell center - -subroutine gradient_cubic(pin, dx, dy, area, edge_w, edge_e, edge_s, edge_n, & - en_n, en_e, vlon, vlat, grad_x, grad_y, on_west_edge, & - on_east_edge, on_south_edge, on_north_edge) - - real, dimension(:,: ), intent(in ) :: pin, dx, dy, area - real, dimension(: ), intent(in ) :: edge_w, edge_e, edge_s, edge_n - real, dimension(:,:,:), intent(in ) :: en_n, en_e - real, dimension(:,:,:), intent(in ) :: vlon, vlat - real, dimension(:,: ), intent(out) :: grad_x, grad_y - logical, intent(in ) :: on_west_edge, on_east_edge, on_south_edge, on_north_edge - integer :: nx, ny - - - nx = size(grad_x,1) - ny = size(grad_x,2) - - if(size(pin,1) .NE. nx+2 .OR. size(pin,2) .NE. ny+2)call mpp_error(FATAL, "gradient_mod:size of pin should be (nx+2, ny+2)") - if(size(dx,1) .NE. nx .OR. size(dx,2) .NE. ny+1 ) call mpp_error(FATAL, "gradient_mod: size of dx should be (nx,ny+1)") - if(size(dy,1) .NE. nx+1 .OR. size(dy,2) .NE. ny ) call mpp_error(FATAL, "gradient_mod: size of dy should be (nx+1,ny)") - if(size(area,1) .NE. nx .OR. size(area,2) .NE. ny ) call mpp_error(FATAL, "gradient_mod: size of area should be (nx,ny)") - if(size(vlon,1) .NE. 3 .OR. size(vlon,2) .NE. nx .OR. size(vlon,3) .NE. ny) & - call mpp_error(FATAL, "gradient_mod: size of vlon should be (3,nx,ny)") - if(size(vlat,1) .NE. 3 .OR. size(vlat,2) .NE. nx .OR. size(vlat,3) .NE. ny) & - call mpp_error(FATAL, "gradient_mod: size of vlat should be (3,nx,ny)") - if(size(edge_w) .NE. ny+1) call mpp_error(FATAL, "gradient_mod: size of edge_w should be (ny+1)") - if(size(edge_e) .NE. ny+1) call mpp_error(FATAL, "gradient_mod: size of edge_e should be (ny+1)") - if(size(edge_s) .NE. nx+1) call mpp_error(FATAL, "gradient_mod: size of edge_s should be (nx+1)") - if(size(edge_n) .NE. nx+1) call mpp_error(FATAL, "gradient_mod: size of edge_n should be (nx+1)") - if(size(en_n,1) .NE. 3 .OR. size(en_n,2) .NE. nx .OR. size(en_n,3) .NE. ny+1 ) & - call mpp_error(FATAL, "gradient_mod:size of en_n should be (3, nx, ny+1)") - if(size(en_e,1) .NE. 3 .OR. size(en_e,2) .NE. nx+1 .OR. size(en_e,3) .NE. ny ) & - call mpp_error(FATAL, "gradient_mod:size of en_e should be (3, nx+1, ny)") - - call grad_c2l(nx, ny, pin, dx, dy, area, edge_w, edge_e, edge_s, edge_n, en_n, en_e, vlon, vlat, & - grad_x, grad_y, on_west_edge, on_east_edge, on_south_edge, on_north_edge) - - return - -end subroutine gradient_cubic - - -subroutine calc_cubic_grid_info(xt, yt, xc, yc, dx, dy, area, edge_w, edge_e, edge_s, edge_n, & - en_n, en_e, vlon, vlat, on_west_edge, on_east_edge, on_south_edge, on_north_edge ) - real, dimension(:,: ), intent(in ) :: xt, yt, xc, yc - real, dimension(:,: ), intent(out) :: dx, dy, area - real, dimension(: ), intent(out) :: edge_w, edge_e, edge_s, edge_n - real, dimension(:,:,:), intent(out) :: en_n, en_e - real, dimension(:,:,:), intent(out) :: vlon, vlat - logical, intent(in ) :: on_west_edge, on_east_edge, on_south_edge, on_north_edge - integer :: nx, ny, nxp, nyp - - - nx = size(area,1) - ny = size(area,2) - nxp = nx+1 - nyp = ny+1 - - if(size(xt,1) .NE. nx+2 .OR. size(xt,2) .NE. ny+2 ) call mpp_error(FATAL, "gradient_mod: size of xt should be (nx+2,ny+2)") - if(size(yt,1) .NE. nx+2 .OR. size(yt,2) .NE. ny+2 ) call mpp_error(FATAL, "gradient_mod: size of yt should be (nx+2,ny+2)") - if(size(xc,1) .NE. nxp .OR. size(xc,2) .NE. nyp ) call mpp_error(FATAL, "gradient_mod: size of xc should be (nx+1,ny+1)") - if(size(yc,1) .NE. nxp .OR. size(yc,2) .NE. nyp ) call mpp_error(FATAL, "gradient_mod: size of yc should be (nx+1,ny+1)") - if(size(dx,1) .NE. nx .OR. size(dx,2) .NE. nyp ) call mpp_error(FATAL, "gradient_mod: size of dx should be (nx,ny+1)") - if(size(dy,1) .NE. nxp .OR. size(dy,2) .NE. ny ) call mpp_error(FATAL, "gradient_mod: size of dy should be (nx+1,ny)") - if(size(area,1) .NE. nx .OR. size(area,2) .NE. ny ) call mpp_error(FATAL, "gradient_mod: size of area should be (nx,ny)") - if(size(vlon,1) .NE. 3 .OR. size(vlon,2) .NE. nx .OR. size(vlon,3) .NE. ny) & - call mpp_error(FATAL, "gradient_mod: size of vlon should be (3,nx,ny)") - if(size(vlat,1) .NE. 3 .OR. size(vlat,2) .NE. nx .OR. size(vlat,3) .NE. ny) & - call mpp_error(FATAL, "gradient_mod: size of vlat should be (3,nx,ny)") - if(size(edge_w) .NE. ny+1) call mpp_error(FATAL, "gradient_mod: size of edge_w should be (ny-1)") - if(size(edge_e) .NE. ny+1) call mpp_error(FATAL, "gradient_mod: size of edge_e should be (ny-1)") - if(size(edge_s) .NE. nx+1) call mpp_error(FATAL, "gradient_mod: size of edge_s should be (nx-1)") - if(size(edge_n) .NE. nx+1) call mpp_error(FATAL, "gradient_mod: size of edge_n should be (nx-1)") - if(size(en_n,1) .NE. 3 .OR. size(en_n,2) .NE. nx .OR. size(en_n,3) .NE. nyp ) & - call mpp_error(FATAL, "gradient_mod:size of en_n should be (3, nx, ny+1)") - if(size(en_e,1) .NE. 3 .OR. size(en_e,2) .NE. nxp .OR. size(en_e,3) .NE. ny ) & - call mpp_error(FATAL, "gradient_mod:size of en_e should be (3, nx+1, ny)") - - - call calc_c2l_grid_info(nx, ny, xt, yt, xc, yc, dx, dy, area, edge_w, edge_e, edge_s, edge_n, & - en_n, en_e, vlon, vlat, on_west_edge, on_east_edge, on_south_edge, on_north_edge ) - - - return - -end subroutine calc_cubic_grid_info - -end module gradient_mod diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/gradient_c2l.c b/release/v0/sorc/fre-nctools.fd/shared/mosaic/gradient_c2l.c deleted file mode 100644 index f218baee49..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/gradient_c2l.c +++ /dev/null @@ -1,438 +0,0 @@ -#include -#include -#include "constant.h" -#include "mosaic_util.h" -#include "gradient_c2l.h" -#include -void a2b_ord2(int nx, int ny, const double *qin, const double *edge_w, const double *edge_e, - const double *edge_s, const double *edge_n, double *qout, - int on_west_edge, int on_east_edge, int on_south_edge, int on_north_edge); - - -/*------------------------------------------------------------------------------ - Routine to compute gradient terms for SCRIP: - SJL: Oct 5, 2007 - NOTe: pin has halo size = 1. - the size of pin will be (nx+2,ny+2), T-cell center, with halo = 1 - the size of dx will be (nx, ny+1), N-cell center - the size of dy will be (nx+1, ny), E-cell center - the size of area will be (nx, ny), T-cell center. - The size of edge_w will be (ny+1), C-cell center - The size of edge_e will be (ny+1), C-cell center - The size of edge_s will be (nx+1), C-cell center - The size of edge_n will be (nx+1), C-cell center - The size of en_n will be (nx, ny+1,3),N-cell center - The size of en_e will be (nx+1,ny,3), E-cell center - The size of vlon will be (nx, ny, 3) T-cell center - The size of vlat will be (nx, ny, 3), T-cell center - ----------------------------------------------------------------------------*/ -void grad_c2l_(const int *nlon, const int *nlat, const double *pin, const double *dx, const double *dy, const double *area, - const double *edge_w, const double *edge_e, const double *edge_s, const double *edge_n, - const double *en_n, const double *en_e, const double *vlon, const double *vlat, - double *grad_x, double *grad_y, const int *on_west_edge, const int *on_east_edge, - const int *on_south_edge, const int *on_north_edge) -{ - grad_c2l(nlon, nlat, pin, dx, dy, area, edge_w, edge_e, edge_s, edge_n, en_n, en_e, vlon, vlat, grad_x, grad_y, - on_west_edge, on_east_edge, on_south_edge, on_north_edge); -} - -void grad_c2l(const int *nlon, const int *nlat, const double *pin, const double *dx, const double *dy, const double *area, - const double *edge_w, const double *edge_e, const double *edge_s, const double *edge_n, - const double *en_n, const double *en_e, const double *vlon, const double *vlat, - double *grad_x, double *grad_y, const int *on_west_edge, const int *on_east_edge, - const int *on_south_edge, const int *on_north_edge) -{ - - double *pb, *pdx, *pdy, *grad3; - int nx, ny, nxp, nyp, i, j, m0, m1, m2, n; - - nx = *nlon; - ny = *nlat; - nxp = nx+1; - nyp = ny+1; - pb = (double *)malloc(nxp*nyp*sizeof(double)); - pdx = (double *)malloc(3*nx*(ny+1)*sizeof(double)); - pdy = (double *)malloc(3*(nx+1)*ny*sizeof(double)); - grad3 = (double *)malloc(3*nx*ny*sizeof(double)); - a2b_ord2(nx, ny, pin, edge_w, edge_e, edge_s, edge_n, pb, *on_west_edge, *on_east_edge,*on_south_edge, *on_north_edge); - - for(j=0; j0.and.tile<=ntiles) then - allocate(nnx(ntiles),nny(ntiles)) - call get_grid_size_for_all_tiles(component,nnx,nny) - nx = nnx(tile); ny = nny(tile) - deallocate(nnx,nny) - else - call error_mesg('get_grid_size',& - 'requested tile index '//trim(string(tile))//' is out of bounds (1:'//trim(string(ntiles))//')',& - FATAL) - endif -end subroutine get_grid_size_for_one_tile - -! ============================================================================ -! return grid cell area for the specified model component and tile -! ============================================================================ -subroutine get_grid_cell_area(component, tile, cellarea, domain) - character(len=*), intent(in) :: component - integer , intent(in) :: tile - real , intent(inout) :: cellarea(:,:) - type(domain2d) , intent(in), optional :: domain - - ! local vars - integer :: nlon, nlat - real, allocatable :: glonb(:,:), glatb(:,:) - - select case(get_grid_version()) - case(VERSION_0,VERSION_1) - select case(trim(component)) - case('LND') - call read_data(grid_file, 'AREA_LND_CELL', cellarea, & - no_domain=.not.present(domain), domain=domain) - case('ATM','OCN') - call read_data(grid_file, 'AREA_'//trim(uppercase(component)),cellarea,& - no_domain=.not.present(domain),domain=domain) - case default - call error_mesg(module_name//'/get_grid_cell_area',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - end select - ! convert area to m2 - cellarea = cellarea*4.*PI*radius**2 - case(VERSION_2) - if (present(domain)) then - call mpp_get_compute_domain(domain,xsize=nlon,ysize=nlat) - else - call get_grid_size(component,tile,nlon,nlat) - endif - allocate(glonb(nlon+1,nlat+1),glatb(nlon+1,nlat+1)) - call get_grid_cell_vertices(component, tile, glonb, glatb, domain) - if (great_circle_algorithm) then - call calc_mosaic_grid_great_circle_area(glonb*pi/180.0, glatb*pi/180.0, cellarea) - else - call calc_mosaic_grid_area(glonb*pi/180.0, glatb*pi/180.0, cellarea) - end if - deallocate(glonb,glatb) - end select - -end subroutine get_grid_cell_area - - -! ============================================================================ -! get the area of the component per grid cell -! ============================================================================ -subroutine get_grid_comp_area(component,tile,area,domain) - character(len=*) :: component - integer, intent(in) :: tile - real, intent(inout) :: area(:,:) - type(domain2d), intent(in), optional :: domain - ! local vars - integer :: n_xgrid_files ! number of exchange grid files in the mosaic - integer :: siz(4), nxgrid - integer :: i,j,m,n - integer, allocatable :: i1(:), j1(:), i2(:), j2(:) - real, allocatable :: xgrid_area(:) - real, allocatable :: rmask(:,:) - character(len=MAX_NAME) :: & - xgrid_name, & ! name of the variable holding xgrid names - tile_name, & ! name of the tile - xgrid_file, & ! name of the current xgrid file - mosaic_name,& ! name of the mosaic - mosaic_file,& - tilefile - character(len=4096) :: attvalue - character(len=MAX_NAME), allocatable :: nest_tile_name(:) - character(len=MAX_NAME) :: varname1, varname2 - integer :: is,ie,js,je ! boundaries of our domain - integer :: i0, j0 ! offsets for x and y, respectively - integer :: num_nest_tile, ntiles - logical :: is_nest - integer :: found_xgrid_files ! how many xgrid files we actually found in the grid spec - integer :: ibegin, iend, bsize, l - - select case (get_grid_version()) - case(VERSION_0,VERSION_1) - select case(component) - case('ATM') - call read_data(grid_file,'AREA_ATM',area, no_domain=.not.present(domain),domain=domain) - case('OCN') - allocate(rmask(size(area,1),size(area,2))) - call read_data(grid_file,'AREA_OCN',area, no_domain=.not.present(domain),domain=domain) - call read_data(grid_file,'wet', rmask,no_domain=.not.present(domain),domain=domain) - area = area*rmask - deallocate(rmask) - case('LND') - call read_data(grid_file,'AREA_LND',area,no_domain=.not.present(domain),domain=domain) - case default - call error_mesg(module_name//'/get_grid_comp_area',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - end select - case(VERSION_2) ! mosaic gridspec - select case (component) - case ('ATM') - ! just read the grid cell area and return - call get_grid_cell_area(component,tile,area) - return - case ('LND') - xgrid_name = 'aXl_file' - call read_data(grid_file, 'lnd_mosaic', mosaic_name) - tile_name = trim(mosaic_name)//'_tile'//char(tile+ichar('0')) - case ('OCN') - xgrid_name = 'aXo_file' - call read_data(grid_file, 'ocn_mosaic', mosaic_name) - tile_name = trim(mosaic_name)//'_tile'//char(tile+ichar('0')) - case default - call error_mesg(module_name//'/get_grid_comp_area',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - end select - ! get the boundaries of the requested domain - if(present(domain)) then - call mpp_get_compute_domain(domain,is,ie,js,je) - i0 = 1-is ; j0=1-js - else - call get_grid_size(component,tile,ie,je) - is = 1 ; i0 = 0 - js = 1 ; j0 = 0 - endif - if (size(area,1)/=ie-is+1.or.size(area,2)/=je-js+1) & - call error_mesg(module_name//'/get_grid_comp_area',& - 'size of the output argument "area" is not consistent with the domain',FATAL) - - ! find the nest tile - call read_data(grid_file, 'atm_mosaic', mosaic_name) - call read_data(grid_file,'atm_mosaic_file',mosaic_file) - mosaic_file = grid_dir//trim(mosaic_file) - ntiles = get_mosaic_ntiles(trim(mosaic_file)) - allocate(nest_tile_name(ntiles)) - num_nest_tile = 0 - do n = 1, ntiles - call read_data(mosaic_file, 'gridfiles', tilefile, level=n) - tilefile = grid_dir//trim(tilefile) - if( get_global_att_value(tilefile, "nest_grid", attvalue) ) then - if(trim(attvalue) == "TRUE") then - num_nest_tile = num_nest_tile + 1 - nest_tile_name(num_nest_tile) = trim(mosaic_name)//'_tile'//char(n+ichar('0')) - else if(trim(attvalue) .NE. "FALSE") then - call error_mesg(module_name//'/get_grid_comp_area', 'value of global attribute nest_grid in file'// & - trim(tilefile)//' should be TRUE of FALSE', FATAL) - endif - end if - end do - area(:,:) = 0. - if(field_exist(grid_file,xgrid_name)) then - ! get the number of the exchange-grid files - call field_size(grid_file,xgrid_name,siz) - n_xgrid_files = siz(2) - found_xgrid_files = 0 - ! loop through all exchange grid files - do n = 1, n_xgrid_files - ! get the name of the current exchange grid file - call read_data(grid_file,xgrid_name,xgrid_file,level=n) - ! skip the rest of the loop if the name of the current tile isn't found - ! in the file name, but check this only if there is more than 1 tile - if(n_xgrid_files>1) then - if(index(xgrid_file,trim(tile_name))==0) cycle - endif - found_xgrid_files = found_xgrid_files + 1 - !---make sure the atmosphere grid is not a nested grid - is_nest = .false. - do m = 1, num_nest_tile - if(index(xgrid_file, trim(nest_tile_name(m))) .NE. 0) then - is_nest = .true. - exit - end if - end do - if(is_nest) cycle - - ! finally read the exchange grid - nxgrid = get_mosaic_xgrid_size(grid_dir//xgrid_file) - if(nxgrid < BUFSIZE) then - allocate(i1(nxgrid), j1(nxgrid), i2(nxgrid), j2(nxgrid), xgrid_area(nxgrid)) - else - allocate(i1(BUFSIZE), j1(BUFSIZE), i2(BUFSIZE), j2(BUFSIZE), xgrid_area(BUFSIZE)) - endif - ibegin = 1 - do l = 1,nxgrid,BUFSIZE - bsize = min(BUFSIZE, nxgrid-l+1) - iend = ibegin + bsize - 1 - call get_mosaic_xgrid(grid_dir//xgrid_file, i1(1:bsize), j1(1:bsize), i2(1:bsize), j2(1:bsize), & - xgrid_area(1:bsize), ibegin, iend) - ! and sum the exchange grid areas - do m = 1, bsize - i = i2(m); j = j2(m) - if (iie) cycle - if (jje) cycle - area(i+i0,j+j0) = area(i+i0,j+j0) + xgrid_area(m) - end do - ibegin = iend + 1 - enddo - deallocate(i1, j1, i2, j2, xgrid_area) - enddo - if (found_xgrid_files == 0) & - call error_mesg('get_grid_comp_area', 'no xgrid files were found for component '& - //trim(component)//' (mosaic name is '//trim(mosaic_name)//')', FATAL) - - endif - deallocate(nest_tile_name) - end select ! version - ! convert area to m2 - area = area*4.*PI*radius**2 -end subroutine - -! ============================================================================ -! returns arrays of global grid cell boundaries for given model component and -! mosaic tile number. -! NOTE that in case of non-lat-lon grid the returned coordinates may have be not so -! meaningful, by the very nature of such grids. But presumably these 1D coordinate -! arrays are good enough for diag axis and such. -! ============================================================================ -subroutine get_grid_cell_vertices_1D(component, tile, glonb, glatb) - character(len=*), intent(in) :: component - integer, intent(in) :: tile - real, intent(inout) :: glonb(:),glatb(:) - - integer :: nlon, nlat - integer :: start(4), nread(4) - real, allocatable :: tmp(:,:), x_vert_t(:,:,:), y_vert_t(:,:,:) - character(len=MAX_FILE) :: filename1, filename2 - - call get_grid_size_for_one_tile(component, tile, nlon, nlat) - if (size(glonb(:))/=nlon+1) & - call error_mesg ( module_name//'/get_grid_cell_vertices_1D',& - 'Size of argument "glonb" is not consistent with the grid size',FATAL) - if (size(glatb(:))/=nlat+1) & - call error_mesg ( module_name//'/get_grid_cell_vertices_1D',& - 'Size of argument "glatb" is not consistent with the grid size',FATAL) - if(trim(component) .NE. 'ATM' .AND. component .NE. 'LND' .AND. component .NE. 'OCN') then - call error_mesg(module_name//'/get_grid_cell_vertices_1D',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - endif - - select case(get_grid_version()) - case(VERSION_0) - select case(trim(component)) - case('ATM','LND') - call read_data(grid_file, 'xb'//lowercase(component(1:1)), glonb, no_domain=.true.) - call read_data(grid_file, 'yb'//lowercase(component(1:1)), glatb, no_domain=.true.) - case('OCN') - call read_data(grid_file, "gridlon_vert_t", glonb, no_domain=.true.) - call read_data(grid_file, "gridlat_vert_t", glatb, no_domain=.true.) - end select - case(VERSION_1) - select case(trim(component)) - case('ATM','LND') - call read_data(grid_file, 'xb'//lowercase(component(1:1)), glonb, no_domain=.true.) - call read_data(grid_file, 'yb'//lowercase(component(1:1)), glatb, no_domain=.true.) - case('OCN') - allocate (x_vert_t(nlon,1,2), y_vert_t(1,nlat,2) ) - start = 1; nread = 1 - nread(1) = nlon; nread(2) = 1; start(3) = 1 - call read_data(grid_file, "x_vert_T", x_vert_t(:,:,1), start, nread, no_domain=.TRUE.) - nread(1) = nlon; nread(2) = 1; start(3) = 2 - call read_data(grid_file, "x_vert_T", x_vert_t(:,:,2), start, nread, no_domain=.TRUE.) - - nread(1) = 1; nread(2) = nlat; start(3) = 1 - call read_data(grid_file, "y_vert_T", y_vert_t(:,:,1), start, nread, no_domain=.TRUE.) - nread(1) = 1; nread(2) = nlat; start(3) = 4 - call read_data(grid_file, "y_vert_T", y_vert_t(:,:,2), start, nread, no_domain=.TRUE.) - glonb(1:nlon) = x_vert_t(1:nlon,1,1) - glonb(nlon+1) = x_vert_t(nlon,1,2) - glatb(1:nlat) = y_vert_t(1,1:nlat,1) - glatb(nlat+1) = y_vert_t(1,nlat,2) - deallocate(x_vert_t, y_vert_t) - end select - case(VERSION_2) - ! get the name of the mosaic file for the component - call read_data(grid_file, trim(lowercase(component))//'_mosaic_file', filename1) - filename1=grid_dir//trim(filename1) - ! get the name of the grid file for the component and tile - call read_data(filename1, 'gridfiles', filename2, level=tile) - filename2 = grid_dir//trim(filename2) - - start = 1; nread = 1 - nread(1) = 2*nlon+1 - allocate( tmp(2*nlon+1,1) ) - call read_data(filename2, "x", tmp, start, nread, no_domain=.TRUE.) - glonb(1:nlon+1) = tmp(1:2*nlon+1:2,1) - deallocate(tmp) - allocate(tmp(1,2*nlat+1)) - - start = 1; nread = 1 - nread(2) = 2*nlat+1 - call read_data(filename2, "y", tmp, start, nread, no_domain=.TRUE.) - glatb(1:nlat+1) = tmp(1,1:2*nlat+1:2) - deallocate(tmp) - end select - -end subroutine get_grid_cell_vertices_1D - -! ============================================================================ -! returns cell vertices for the specified model component and mosaic tile number -! ============================================================================ -subroutine get_grid_cell_vertices_2D(component, tile, lonb, latb, domain) - character(len=*), intent(in) :: component - integer, intent(in) :: tile - real, intent(inout) :: lonb(:,:),latb(:,:) - type(domain2d), optional, intent(in) :: domain - - ! local vars - character(len=MAX_FILE) :: filename1, filename2 - integer :: nlon, nlat - integer :: i,j - real, allocatable :: buffer(:), tmp(:,:), x_vert_t(:,:,:), y_vert_t(:,:,:) - integer :: is,ie,js,je ! boundaries of our domain - integer :: i0,j0 ! offsets for coordinates - integer :: isg, jsg - integer :: start(4), nread(4) - - call get_grid_size_for_one_tile(component, tile, nlon, nlat) - if (present(domain)) then - call mpp_get_compute_domain(domain,is,ie,js,je) - else - is = 1 ; ie = nlon - js = 1 ; je = nlat - !--- domain normally should be present - call error_mesg ( module_name//'/get_grid_cell_vertices',& - 'domain is not present, global data will be read', NOTE) - endif - i0 = -is+1; j0 = -js+1 - - ! verify that lonb and latb sizes are consistent with the size of domain - if (size(lonb,1)/=ie-is+2.or.size(lonb,2)/=je-js+2) & - call error_mesg ( module_name//'/get_grid_cell_vertices',& - 'Size of argument "lonb" is not consistent with the domain size',FATAL) - if (size(latb,1)/=ie-is+2.or.size(latb,2)/=je-js+2) & - call error_mesg ( module_name//'/get_grid_cell_vertices',& - 'Size of argument "latb" is not consistent with the domain size',FATAL) - if(trim(component) .NE. 'ATM' .AND. component .NE. 'LND' .AND. component .NE. 'OCN') then - call error_mesg(module_name//'/get_grid_cell_vertices',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - endif - - select case(get_grid_version()) - case(VERSION_0) - select case(component) - case('ATM','LND') - allocate(buffer(max(nlon,nlat)+1)) - ! read coordinates of grid cell vertices - call read_data(grid_file, 'xb'//lowercase(component(1:1)), buffer(1:nlon+1), no_domain=.true.) - do j = js, je+1 - do i = is, ie+1 - lonb(i+i0,j+j0) = buffer(i) - enddo - enddo - call read_data(grid_file, 'yb'//lowercase(component(1:1)), buffer(1:nlat+1), no_domain=.true.) - do j = js, je+1 - do i = is, ie+1 - latb(i+i0,j+j0) = buffer(j) - enddo - enddo - deallocate(buffer) - case('OCN') - if (present(domain)) then - start = 1; nread = 1 - start(1) = is; start(2) = js - nread(1) = ie-is+2; nread(2) = je-js+2 - call read_data(grid_file, 'geolon_vert_t', lonb, start, nread, no_domain=.true. ) - call read_data(grid_file, 'geolat_vert_t', latb, start, nread, no_domain=.true. ) - else - call read_data(grid_file, 'geolon_vert_t', lonb, no_domain=.TRUE. ) - call read_data(grid_file, 'geolat_vert_t', latb, no_domain=.TRUE. ) - endif - end select - case(VERSION_1) - select case(component) - case('ATM','LND') - allocate(buffer(max(nlon,nlat)+1)) - ! read coordinates of grid cell vertices - call read_data(grid_file, 'xb'//lowercase(component(1:1)), buffer(1:nlon+1), no_domain=.true.) - do j = js, je+1 - do i = is, ie+1 - lonb(i+i0,j+j0) = buffer(i) - enddo - enddo - call read_data(grid_file, 'yb'//lowercase(component(1:1)), buffer(1:nlat+1), no_domain=.true.) - do j = js, je+1 - do i = is, ie+1 - latb(i+i0,j+j0) = buffer(j) - enddo - enddo - deallocate(buffer) - case('OCN') - nlon=ie-is+1; nlat=je-js+1 - allocate (x_vert_t(nlon,nlat,4), y_vert_t(nlon,nlat,4) ) - call read_data(grid_file, 'x_vert_T', x_vert_t, no_domain=.not.present(domain), domain=domain ) - call read_data(grid_file, 'y_vert_T', y_vert_t, no_domain=.not.present(domain), domain=domain ) - lonb(1:nlon,1:nlat) = x_vert_t(1:nlon,1:nlat,1) - lonb(nlon+1,1:nlat) = x_vert_t(nlon,1:nlat,2) - lonb(1:nlon,nlat+1) = x_vert_t(1:nlon,nlat,4) - lonb(nlon+1,nlat+1) = x_vert_t(nlon,nlat,3) - latb(1:nlon,1:nlat) = y_vert_t(1:nlon,1:nlat,1) - latb(nlon+1,1:nlat) = y_vert_t(nlon,1:nlat,2) - latb(1:nlon,nlat+1) = y_vert_t(1:nlon,nlat,4) - latb(nlon+1,nlat+1) = y_vert_t(nlon,nlat,3) - deallocate(x_vert_t, y_vert_t) - end select - case(VERSION_2) - ! get the name of the mosaic file for the component - call read_data(grid_file, trim(lowercase(component))//'_mosaic_file', filename1) - filename1=grid_dir//trim(filename1) - ! get the name of the grid file for the component and tile - call read_data(filename1, 'gridfiles', filename2, level=tile) - filename2 = grid_dir//trim(filename2) - if(PRESENT(domain)) then - call mpp_get_global_domain(domain, xbegin=isg, ybegin=jsg) - start = 1; nread = 1 - start(1) = 2*(is-isg+1) - 1; nread(1) = 2*(ie-is)+3 - start(2) = 2*(js-jsg+1) - 1; nread(2) = 2*(je-js)+3 - allocate(tmp(nread(1), nread(2)) ) - call read_data(filename2, 'x', tmp, start, nread, no_domain=.TRUE.) - do j = 1, je-js+2 - do i = 1, ie-is+2 - lonb(i,j) = tmp(2*i-1,2*j-1) - enddo - enddo - call read_data(filename2, 'y', tmp, start, nread, no_domain=.TRUE.) - do j = 1, je-js+2 - do i = 1, ie-is+2 - latb(i,j) = tmp(2*i-1,2*j-1) - enddo - enddo - else - allocate(tmp(2*nlon+1,2*nlat+1)) - call read_data(filename2, 'x', tmp, no_domain=.TRUE.) - do j = js, je+1 - do i = is, ie+1 - lonb(i+i0,j+j0) = tmp(2*i-1,2*j-1) - end do - end do - call read_data(filename2, 'y', tmp, no_domain=.TRUE.) - do j = js, je+1 - do i = is, ie+1 - latb(i+i0,j+j0) = tmp(2*i-1,2*j-1) - end do - end do - endif - deallocate(tmp) - end select - -end subroutine get_grid_cell_vertices_2D - -! ============================================================================ -! returns global coordinate arrays fro given model component and mosaic tile number -! NOTE that in case of non-lat-lon grid those coordinates may have be not so -! meaningful, by the very nature of such grids. But presumably these 1D coordinate -! arrays are good enough for diag axis and such. -! ============================================================================ -subroutine get_grid_cell_centers_1D(component, tile, glon, glat) - character(len=*), intent(in) :: component - integer, intent(in) :: tile - real, intent(inout) :: glon(:),glat(:) - integer :: nlon, nlat - integer :: start(4), nread(4) - real, allocatable :: tmp(:,:) - character(len=MAX_FILE) :: filename1, filename2 - - call get_grid_size_for_one_tile(component, tile, nlon, nlat) - if (size(glon(:))/=nlon) & - call error_mesg ( module_name//'/get_grid_cell_centers_1D',& - 'Size of argument "glon" is not consistent with the grid size',FATAL) - if (size(glat(:))/=nlat) & - call error_mesg ( module_name//'/get_grid_cell_centers_1D',& - 'Size of argument "glat" is not consistent with the grid size',FATAL) - if(trim(component) .NE. 'ATM' .AND. component .NE. 'LND' .AND. component .NE. 'OCN') then - call error_mesg(module_name//'/get_grid_cell_centers_1D',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - endif - - select case(get_grid_version()) - case(VERSION_0) - select case(trim(component)) - case('ATM','LND') - call read_data(grid_file, 'xt'//lowercase(component(1:1)), glon, no_domain=.true.) - call read_data(grid_file, 'yt'//lowercase(component(1:1)), glat, no_domain=.true.) - case('OCN') - call read_data(grid_file, "gridlon_t", glon, no_domain=.true.) - call read_data(grid_file, "gridlat_t", glat, no_domain=.true.) - end select - case(VERSION_1) - select case(trim(component)) - case('ATM','LND') - call read_data(grid_file, 'xt'//lowercase(component(1:1)), glon, no_domain=.true.) - call read_data(grid_file, 'yt'//lowercase(component(1:1)), glat, no_domain=.true.) - case('OCN') - call read_data(grid_file, "grid_x_T", glon, no_domain=.true.) - call read_data(grid_file, "grid_y_T", glat, no_domain=.true.) - end select - case(VERSION_2) - ! get the name of the mosaic file for the component - call read_data(grid_file, trim(lowercase(component))//'_mosaic_file', filename1) - filename1=grid_dir//trim(filename1) - ! get the name of the grid file for the component and tile - call read_data(filename1, 'gridfiles', filename2, level=tile) - filename2 = grid_dir//trim(filename2) - - start = 1; nread = 1 - nread(1) = 2*nlon+1; start(2) = 2 - allocate( tmp(2*nlon+1,1) ) - call read_data(filename2, "x", tmp, start, nread, no_domain=.TRUE.) - glon(1:nlon) = tmp(2:2*nlon:2,1) - deallocate(tmp) - allocate(tmp(1, 2*nlat+1)) - - start = 1; nread = 1 - nread(2) = 2*nlat+1; start(1) = 2 - call read_data(filename2, "y", tmp, start, nread, no_domain=.TRUE.) - glat(1:nlat) = tmp(1,2:2*nlat:2) - deallocate(tmp) - end select - - -end subroutine get_grid_cell_centers_1D - -! ============================================================================ -! returns grid cell centers for specified model component and mosaic tile number -! ============================================================================ -subroutine get_grid_cell_centers_2D(component, tile, lon, lat, domain) - character(len=*), intent(in) :: component - integer, intent(in) :: tile - real, intent(inout) :: lon(:,:),lat(:,:) - type(domain2d), intent(in), optional :: domain - ! local vars - character(len=MAX_NAME) :: varname - character(len=MAX_FILE) :: filename1, filename2 - integer :: nlon, nlat - integer :: i,j - real, allocatable :: buffer(:),tmp(:,:) - integer :: is,ie,js,je ! boundaries of our domain - integer :: i0,j0 ! offsets for coordinates - integer :: isg, jsg - integer :: start(4), nread(4) - - call get_grid_size_for_one_tile(component, tile, nlon, nlat) - if (present(domain)) then - call mpp_get_compute_domain(domain,is,ie,js,je) - else - is = 1 ; ie = nlon - js = 1 ; je = nlat - !--- domain normally should be present - call error_mesg ( module_name//'/get_grid_cell_centers',& - 'domain is not present, global data will be read', NOTE) - endif - i0 = -is+1; j0 = -js+1 - - ! verify that lon and lat sizes are consistent with the size of domain - if (size(lon,1)/=ie-is+1.or.size(lon,2)/=je-js+1) & - call error_mesg ( module_name//'/get_grid_cell_centers',& - 'Size of array "lon" is not consistent with the domain size',& - FATAL ) - if (size(lat,1)/=ie-is+1.or.size(lat,2)/=je-js+1) & - call error_mesg ( module_name//'/get_grid_cell_centers',& - 'Size of array "lat" is not consistent with the domain size',& - FATAL ) - if(trim(component) .NE. 'ATM' .AND. component .NE. 'LND' .AND. component .NE. 'OCN') then - call error_mesg(module_name//'/get_grid_cell_vertices',& - 'Illegal component name "'//trim(component)//'": must be one of ATM, LND, or OCN',& - FATAL) - endif - - select case(get_grid_version()) - case(VERSION_0) - select case (trim(component)) - case('ATM','LND') - allocate(buffer(max(nlon,nlat))) - ! read coordinates of grid cell vertices - call read_data(grid_file, 'xt'//lowercase(component(1:1)), buffer(1:nlon), no_domain=.true.) - do j = js,je - do i = is,ie - lon(i+i0,j+j0) = buffer(i) - enddo - enddo - call read_data(grid_file, 'yt'//lowercase(component(1:1)), buffer(1:nlat), no_domain=.true.) - do j = js,je - do i = is,ie - lat(i+i0,j+j0) = buffer(j) - enddo - enddo - deallocate(buffer) - case('OCN') - call read_data(grid_file, 'geolon_t', lon, no_domain=.not.present(domain), domain=domain ) - call read_data(grid_file, 'geolat_t', lat, no_domain=.not.present(domain), domain=domain ) - end select - case(VERSION_1) - select case(trim(component)) - case('ATM','LND') - allocate(buffer(max(nlon,nlat))) - ! read coordinates of grid cell vertices - call read_data(grid_file, 'xt'//lowercase(component(1:1)), buffer(1:nlon), no_domain=.true.) - do j = js,je - do i = is,ie - lon(i+i0,j+j0) = buffer(i) - enddo - enddo - call read_data(grid_file, 'yt'//lowercase(component(1:1)), buffer(1:nlat), no_domain=.true.) - do j = js,je - do i = is,ie - lat(i+i0,j+j0) = buffer(j) - enddo - enddo - deallocate(buffer) - case('OCN') - call read_data(grid_file, 'x_T', lon, no_domain=.not.present(domain), domain=domain ) - call read_data(grid_file, 'y_T', lat, no_domain=.not.present(domain), domain=domain ) - end select - case(VERSION_2) ! mosaic grid file - ! get the name of the mosaic file for the component - call read_data(grid_file, trim(lowercase(component))//'_mosaic_file', filename1) - filename1=grid_dir//trim(filename1) - ! get the name of the grid file for the component and tile - call read_data(filename1, 'gridfiles', filename2, level=tile) - filename2 = grid_dir//trim(filename2) - if(PRESENT(domain)) then - call mpp_get_global_domain(domain, xbegin=isg, ybegin=jsg) - start = 1; nread = 1 - start(1) = 2*(is-isg+1) - 1; nread(1) = 2*(ie-is)+3 - start(2) = 2*(js-jsg+1) - 1; nread(2) = 2*(je-js)+3 - allocate(tmp(nread(1), nread(2))) - call read_data(filename2, 'x', tmp, start, nread, no_domain=.TRUE.) - do j = 1, je-js+1 - do i = 1, ie-is+1 - lon(i,j) = tmp(2*i,2*j) - enddo - enddo - call read_data(filename2, 'y', tmp, start, nread, no_domain=.TRUE.) - do j = 1, je-js+1 - do i = 1, ie-is+1 - lat(i,j) = tmp(2*i,2*j) - enddo - enddo - else - allocate(tmp(2*nlon+1,2*nlat+1)) - call read_data(filename2, 'x', tmp, no_domain=.TRUE.) - do j = js,je - do i = is,ie - lon(i+i0,j+j0) = tmp(2*i,2*j) - end do - end do - call read_data(filename2, 'y', tmp, no_domain=.TRUE.) - do j = js,je - do i = is,ie - lat(i+i0,j+j0) = tmp(2*i,2*j) - end do - end do - deallocate(tmp) - endif - end select - -end subroutine get_grid_cell_centers_2D - - -! ============================================================================ -! given a model component, a layout, and (optionally) a halo size, returns a -! domain for current processor -! ============================================================================ -! this subroutine probably does not belong in the grid_mod -subroutine define_cube_mosaic ( component, domain, layout, halo, maskmap ) - character(len=*) , intent(in) :: component - type(domain2d) , intent(inout) :: domain - integer , intent(in) :: layout(2) - integer, optional, intent(in) :: halo - logical, optional, intent(in) :: maskmap(:,:,:) - - ! ---- local constants - - ! ---- local vars - character(len=MAX_NAME) :: varname - character(len=MAX_FILE) :: mosaic_file - integer :: ntiles ! number of tiles - integer :: ncontacts ! number of contacts between mosaic tiles - integer :: n - integer :: ng, pe_pos, npes ! halo size - integer, allocatable :: nlon(:), nlat(:), global_indices(:,:) - integer, allocatable :: pe_start(:), pe_end(:), layout_2d(:,:) - integer, allocatable :: tile1(:),tile2(:) - integer, allocatable :: is1(:),ie1(:),js1(:),je1(:) - integer, allocatable :: is2(:),ie2(:),js2(:),je2(:) - - call get_grid_ntiles(component,ntiles) - allocate(nlon(ntiles), nlat(ntiles)) - allocate(global_indices(4,ntiles)) - allocate(pe_start(ntiles),pe_end(ntiles)) - allocate(layout_2d(2,ntiles)) - call get_grid_size(component,nlon,nlat) - - pe_pos = mpp_root_pe() - do n = 1, ntiles - global_indices(:,n) = (/ 1, nlon(n), 1, nlat(n) /) - layout_2d (:,n) = layout - if(present(maskmap)) then - npes = count(maskmap(:,:,n)) - else - npes = layout(1)*layout(2) - endif - pe_start(n) = pe_pos - pe_end (n) = pe_pos + npes - 1 - pe_pos = pe_end(n) + 1 - enddo - - varname=trim(lowercase(component))//'_mosaic_file' - call read_data(grid_file,varname,mosaic_file) - mosaic_file = grid_dir//mosaic_file - - ! get the contact information from mosaic file - ncontacts = get_mosaic_ncontacts(mosaic_file) - allocate(tile1(ncontacts),tile2(ncontacts)) - allocate(is1(ncontacts),ie1(ncontacts),js1(ncontacts),je1(ncontacts)) - allocate(is2(ncontacts),ie2(ncontacts),js2(ncontacts),je2(ncontacts)) - call get_mosaic_contact(mosaic_file, tile1, tile2, & - is1, ie1, js1, je1, is2, ie2, js2, je2) - - ng = 0 - if(present(halo)) ng = halo - ! create the domain2d variable - call mpp_define_mosaic ( global_indices, layout_2d, domain, & - ntiles, ncontacts, tile1, tile2, & - is1, ie1, js1, je1, & - is2, ie2, js2, je2, & - pe_start=pe_start, pe_end=pe_end, symmetry=.true., & - shalo = ng, nhalo = ng, whalo = ng, ehalo = ng, & - maskmap = maskmap, & - name = trim(component)//'Cubic-Sphere Grid' ) - - deallocate(nlon,nlat,global_indices,pe_start,pe_end,layout_2d) - deallocate(tile1,tile2) - deallocate(is1,ie1,js1,je1) - deallocate(is2,ie2,js2,je2) - -end subroutine define_cube_mosaic - -end module grid_mod diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/grid.html b/release/v0/sorc/fre-nctools.fd/shared/mosaic/grid.html deleted file mode 100644 index 1b61d16303..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/grid.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - Module grid_mod - - - - -PUBLIC INTERFACE ~ - PUBLIC DATA ~ - PUBLIC ROUTINES ~ - NAMELIST ~ - DIAGNOSTIC FIELDS ~ - ERROR MESSAGES ~ - REFERENCES ~ - NOTES - -
-

Module grid_mod

- - -
- Contact: 
- Reviewers: 
- Change History: 
-
-
- - -
-

OVERVIEW

- -

Provides a set of subroutines for reading grid spec files

- - -
-Historically, there are several different formats of the grid specification -files. Though all of them are NetCDF files, they differ in the information -they contain, and in the way this information is stored. For example, the -geographical coordinates of ocean grid cells can be stored in differently named variables in -grid_spec.nc, or the can be in a separate component mosaic file, referred to from grid_spec.nc. -

-This module aims to isolate a casual user from the complexity of grid spec -file parsing and to provide a unified interface for access to the grid data. - -At the same time, it allows the developers of the grid specifications to keep enhancing the -internal structure transparently for the users of this module, as long as the -interfaces of the module subroutines are preserved. -

- -

OTHER MODULES USED

-
-
  constants_mod 
-        fms_mod
-     mosaic_mod
-mpp_domains_mod 
-
- - -
-

PUBLIC INTERFACE

-
-
get_grid_ntiles
returns number of mosaic tiles
-
get_grid_size
returns horizontal size of the grid, or sizes of the mosaic tiles
-
get_grid_cell_centers
reads arrays of grid cell center point coordinates
-
get_grid_cell_vertices
reads arrays of grid cell verices coordinates
-
get_grid_cell_area
reads an array of grid cell areas
-
get_grid_comp_area
reads an array of the areas for a component model
-
- - - - -
-

PUBLIC ROUTINES

- -
    - - -
  1. -

    get_grid_ntiles

    -
    subroutine get_grid_ntiles(component,ntiles)
    -
    -
    DESCRIPTION
    - Given a component name, returns the number of mosaic tiles for the component. For - pre-mosaic grid spec files returns 1. -
    -
    INPUT
    - - - - - -
    componentA name of the component, 'ATM', 'OCN', or 'LND'
    - [character(len=*)]
    -
    -
    OUTPUT
    - - - - -
    ntilesnumber of mosaic tiles for the component
    - [integer]
    -
    -
    - - -
  2. -

    get_grid_size

    -
    -subroutine get_grid_size(component,nx,ny)
    -subroutine get_grid_size(component,tile,nx,ny)
    -
    -
    DESCRIPTION
    - Given a component name, returns the size of the grid for all mosaic tiles, or for the - specified tile. -
    -
    INPUT
    - - - - - - -
    componentA name of the component: 'ATM', 'OCN', or 'LND'
    - [character(len=*)]
    tileNumber of mosaic tile
    - [integer]
    -
    -
    OUTPUT
    - - - - - -
    nx, nynumber of grid cell along respective axis, either for all mosaic tiles, - or for a specified mosaic tile
    - [integer]
    - [integer, dimension(:)] -
    -
    -
    - - -
  3. -

    get_grid_cell_centers

    -
    subroutine get_grid_cell_centers(component,tile,glon,glat)
    -
    -
    DESCRIPTION
    - Given a component name and a mosaic tile number, returns longitudes and latitudes of grid ceneters - for the specified mosaic tile. -
    -
    INPUT
    - - - - - - - -
    componentA name of the component, 'ATM', 'OCN', or 'LND'
    [character(len=*)]
    tileNumber of mosaic tile
    - [integer]
    -
    -
    OUTPUT
    - - - - - - - - -
    glonlongitudes of grid cell centers, degree
    [real, dimension(:,:)]
    glatlatatitdes of grid cell centers, degree
    [real, dimension(:,:)]
    -
    -
    - - -
  4. -

    get_grid_cell_vertices

    -
    subroutine get_grid_cell_vertices(component,tile,glonb,glatb)
    -
    -
    DESCRIPTION
    - Given a component name and a mosaic tile number, returns longitudes and latitudes of grid vertices - for the specified mosaic tile. -
    -
    INPUT
    - - - - - - - -
    componentA name of the component, 'ATM', 'OCN', or 'LND'
    [character(len=*)]
    tileNumber of mosaic tile
    - [integer]
    -
    -
    OUTPUT
    - - - - - - - - -
    glonblongitudes of grid cell vertices, degree
    [real, dimension(:,:)]
    glatblatatitdes of grid cell vertices, degree
    [real, dimension(:,:)]
    -
    -
    - - -
  5. -

    get_grid_cell_area

    -
    subroutine get_grid_cell_area(component,tile,cellarea)
    -
    -
    DESCRIPTION
    - Given a component name and a mosaic tile number, returns an array of areas - for the specified tile. Note that the returnd values are full - grid cell areas, so for example for land it will not depend on the fraction of - land actually present in the grid cell. -
    -
    INPUT
    - - - - - - - -
    componentA name of the component, 'ATM', 'OCN', or 'LND'
    [character(len=*)]
    tileNumber of mosaic tile
    - [integer]
    -
    -
    OUTPUT
    - - - - - -
    cellareaarray of grid cell areas, m2
    [real, dimension(:,:)]
    -
    -
    - - -
  6. -

    get_grid_cell_area

    -
    subroutine get_grid_comp_area(component,tile,area)
    -
    -
    DESCRIPTION
    - Given a component name and a mosaic tile number, returns an array of component - model areas for the specified tile. Note that the returnd values are the areas - for each grid cell that belong to the specified component, so for example for - land it will depend on the fraction of land actually present in the grid cell. - For atmosphere the area returned by this routine is the same as the cell area - area returned by get_grid_cell_area -
    -
    INPUT
    - - - - - - - -
    componentA name of the component, 'ATM', 'OCN', or 'LND'
    [character(len=*)]
    tileNumber of mosaic tile
    - [integer]
    -
    -
    OUTPUT
    - - - - - -
    areaarray of grid cell areas, m2
    [real, dimension(:,:)]
    -
    -
    - -
-
- - diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/interp.c b/release/v0/sorc/fre-nctools.fd/shared/mosaic/interp.c deleted file mode 100644 index 4c8ee80934..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/interp.c +++ /dev/null @@ -1,379 +0,0 @@ -/* - Copyright 2011 NOAA Geophysical Fluid Dynamics Lab, Princeton, NJ - This program is distributed under the terms of the GNU General Public - License. See the file COPYING contained in this directory -*/ -#include -#include -#include -#include "mosaic_util.h" -#include "interp.h" -#include "create_xgrid.h" - -/********************************************************************* - void cublic_spline_sp(size1, size2, grid1, grid2, data1, data2) - - Calculate a shape preserving cubic spline. Monotonicity is ensured over each subinterval - unlike classic cubic spline interpolation. - It will be used to interpolation data in 1-D space. - - INPUT Arguments: - grid1: grid for input data grid. - grid2: grid for output data grid. - size1: size of input grid. - size2: size of output grid. - data1: input data associated with grid1. - - OUTPUT ARGUMENTS: - data2: output data associated with grid2. (OUTPUT) - -*********************************************************************/ - -void cubic_spline_sp(int size1, int size2, const double *grid1, const double *grid2, const double *data1, - double *data2 ) -{ - double *delta=NULL, *d=NULL, *dh=NULL, *b=NULL, *c = NULL; - double h, h2, s, w1, w2, p; - int i, k, n, klo, khi, kmax; - - for(i=1; i grid1[size1-1]) error_handler("cubic_spline_sp: grid2 lies outside grid1"); - } - - if(size1 < 2) error_handler("cubic_spline_sp: the size of input grid should be at least 2"); - if(size1 == 2) { /* when size1 is 2, it just reduced to a linear interpolation */ - p = (data1[1]-data1[0])/(grid1[1]-grid1[0]); - for(i=0; i< size2; i++) data2[i] = p*(grid2[i] - grid1[0]) + data1[0]; - return; - } - delta = (double *)malloc((size1-1)*sizeof(double)); - dh = (double *)malloc((size1-1)*sizeof(double)); - d = (double *)malloc(size1*sizeof(double)); - for(k=0;k 0.0 ) { - w1 = 2.0*dh[k] + dh[k-1]; - w2 = dh[k] + 2.0*dh[k-1]; - d[k] = (w1+w2)/(w1/delta[k-1]+w2/delta[k]); - } - else { - d[k] = 0.0; - } - } -/* -End slopes -*/ - kmax = size1-1; - d[0] = ((2.0*dh[0] + dh[1])*delta[0] - dh[0]*delta[1])/(dh[0]+dh[1]); - - if ( d[0]*delta[0] < 0.0 ) { - d[0] = 0.0; - } - else { - if ( delta[0]*delta[1] < 0.0 && abs(d[0]) > abs(3.0*delta[0])) { - d[0]=3.0*delta[0]; - } - } - - d[kmax] = ((2.0*dh[kmax-1] + dh[kmax-2])*delta[kmax-1] - dh[kmax-1]*delta[kmax-2])/(dh[kmax-1]+dh[kmax-2]); - if ( d[kmax]*delta[kmax-1] < 0.0 ) { - d[kmax] = 0.0; - } - else { - if ( delta[kmax-1]*delta[kmax-2] < 0.0 && abs(d[kmax]) > abs(3.0*delta[kmax-1])) { - d[kmax]=3.0*delta[kmax-1]; - } - } - -/* Precalculate coefficients */ - b = (double *)malloc((size1-1)*sizeof(double)); - c = (double *)malloc((size1-1)*sizeof(double)); - for (k=0; k grid1[size1-1]) error_handler("cubic_spline: grid2 lies outside grid1"); - } - - if(size1 < 2) error_handler("cubic_spline: the size of input grid should be at least 2"); - if(size1 == 2) { /* when size1 is 2, it just reduced to a linear interpolation */ - p = (data1[1]-data1[0])/(grid1[1]-grid1[0]); - for(i=0; i< size2; i++) data2[i] = p*(grid2[i] - grid1[0]) + data1[0]; - return; - } - y2 = (double *)malloc(size1*sizeof(double)); - u = (double *)malloc(size1*sizeof(double)); - if (yp1 >.99e30) { - y2[0]=0.; - u[0]=0.; - } - else { - y2[0]=-0.5; - u[0]=(3./(grid1[1]-grid1[0]))*((data1[1]-data1[0])/(grid1[1]-grid1[0])-yp1); - } - - for(i=1; i .99e30) { - qn=0.; - un=0.; - } - else { - qn=0.5; - un=(3./(grid1[size1-1]-grid1[size1-2]))*(ypn-(data1[size1-1]-data1[size1-2])/(grid1[size1-1]-grid1[size1-2])); - } - - y2[size1-1]=(un-qn*u[size1-2])/(qn*y2[size1-2]+1.); - - for(k=size1-2; k>=0; k--) y2[k] = y2[k]*y2[k+1]+u[k]; - - /* interpolate data onto grid2 */ - for(k=0; k grid2[0] ) error_handler("interp.c: grid2 lies outside grid1"); - if (grid1[nk1-1] < grid2[nk2-1] ) error_handler("interp.c: grid2 lies outside grid1"); - - for(k=0; k -! Zhi Liang -! - -! - -! -! mosaic_mod implements some utility routines to read mosaic information. -! - -! -! mosaic_mod implements some utility routines to read mosaic information. -! The information includes number of tiles and contacts in the mosaic, -! mosaic grid resolution of each tile, mosaic contact information, mosaic exchange -! grid information. Each routine will call a C-version routine to get these information. -! - -use mpp_mod, only : mpp_error, FATAL, mpp_pe, mpp_root_pe -use mpp_io_mod, only : MPP_MULTI -use fms_io_mod, only : dimension_size, field_exist, read_data, read_compressed -use constants_mod, only : PI, RADIUS - -implicit none -private - -character(len=*), parameter :: & - grid_dir = 'INPUT/' ! root directory for all grid files - -integer, parameter :: & - MAX_NAME = 256, & ! max length of the variable names - MAX_FILE = 1024, & ! max length of the file names - X_REFINE = 2, & ! supergrid size/model grid size in x-direction - Y_REFINE = 2 ! supergrid size/model grid size in y-direction - -! --- public interface - - -public :: get_mosaic_ntiles -public :: get_mosaic_ncontacts -public :: get_mosaic_grid_sizes -public :: get_mosaic_contact -public :: get_mosaic_xgrid_size -public :: get_mosaic_xgrid -public :: calc_mosaic_grid_area -public :: calc_mosaic_grid_great_circle_area -public :: is_inside_polygon - -logical :: module_is_initialized = .true. -! version information varaible - character(len=128) :: version = '$Id$' - character(len=128) :: tagname = '$Name$' - -contains - -!####################################################################### - -! -! -! Initialize the mosaic_mod. -! -! -! Initialization routine for the mosaic module. It writes the -! version information to the log file. -! -! -subroutine mosaic_init() - - if (module_is_initialized) return - module_is_initialized = .TRUE. - -!--------- write version number and namelist ------------------ -! call write_version_number (version, tagname) - -end subroutine mosaic_init -! - -!####################################################################### -! -! -! return exchange grid size of mosaic xgrid file. -! -! -! return exchange grid size of mosaic xgrid file. -! -! -! -! The file that contains exchange grid information. -! - function get_mosaic_xgrid_size(xgrid_file) - character(len=*), intent(in) :: xgrid_file - integer :: get_mosaic_xgrid_size - - get_mosaic_xgrid_size = dimension_size(xgrid_file, "ncells", no_domain=.TRUE.) - - return - - end function get_mosaic_xgrid_size -! -!####################################################################### -! -! -! get exchange grid information from mosaic xgrid file. -! -! -! get exchange grid information from mosaic xgrid file. -! -! -! -! The file that contains exchange grid information. -! -! -! number of exchange grid in xgrid_file -! -! -! i and j-index in grid 1 of exchange grid. -! -! -! i and j-index in grid 2 of exchange grid. -! -! -! area of the exchange grid. The area is scaled to represent unit earth area. -! - subroutine get_mosaic_xgrid(xgrid_file, i1, j1, i2, j2, area, ibegin, iend) - character(len=*), intent(in) :: xgrid_file - integer, intent(inout) :: i1(:), j1(:), i2(:), j2(:) - real, intent(inout) :: area(:) - integer, optional, intent(in) :: ibegin, iend - - integer :: start(4), nread(4), istart - real, dimension(2, size(i1(:))) :: tile1_cell, tile2_cell - integer :: nxgrid, n - real :: garea - real :: get_global_area; - - garea = get_global_area(); - - ! When start and nread present, make sure nread(1) is the same as the size of the data - if(present(ibegin) .and. present(iend)) then - istart = ibegin - nxgrid = iend - ibegin + 1 - if(nxgrid .NE. size(i1(:))) call mpp_error(FATAL, "get_mosaic_xgrid: nxgrid .NE. size(i1(:))") - if(nxgrid .NE. size(j1(:))) call mpp_error(FATAL, "get_mosaic_xgrid: nxgrid .NE. size(j1(:))") - if(nxgrid .NE. size(i2(:))) call mpp_error(FATAL, "get_mosaic_xgrid: nxgrid .NE. size(i2(:))") - if(nxgrid .NE. size(j2(:))) call mpp_error(FATAL, "get_mosaic_xgrid: nxgrid .NE. size(j2(:))") - if(nxgrid .NE. size(area(:))) call mpp_error(FATAL, "get_mosaic_xgrid: nxgrid .NE. size(area(:))") - else - istart = 1 - nxgrid = size(i1(:)) - endif - - start = 1; nread = 1 - start(1) = istart; nread(1) = nxgrid - call read_compressed(xgrid_file, 'xgrid_area', area, start=start, nread=nread, threading=MPP_MULTI) - start = 1; nread = 1 - nread(1) = 2 - start(2) = istart; nread(2) = nxgrid - call read_compressed(xgrid_file, 'tile1_cell', tile1_cell, start=start, nread=nread, threading=MPP_MULTI) - call read_compressed(xgrid_file, 'tile2_cell', tile2_cell, start=start, nread=nread, threading=MPP_MULTI) - - do n = 1, nxgrid - i1(n) = tile1_cell(1,n) - j1(n) = tile1_cell(2,n) - i2(n) = tile2_cell(1,n) - j2(n) = tile2_cell(2,n) - area(n) = area(n)/garea - end do - - return - - end subroutine get_mosaic_xgrid -! - - !############################################################################### - ! - ! - ! get number of tiles in the mosaic_file. - ! - ! - ! get number of tiles in the mosaic_file. - ! - ! - ! - ! The file that contains mosaic information. - ! - function get_mosaic_ntiles(mosaic_file) - character(len=*), intent(in) :: mosaic_file - integer :: get_mosaic_ntiles - - get_mosaic_ntiles = dimension_size(mosaic_file, "ntiles") - - return - - end function get_mosaic_ntiles -! - - !############################################################################### - ! - ! - ! get number of contacts in the mosaic_file. - ! - ! - ! get number of contacts in the mosaic_file. - ! - ! - ! - ! The file that contains mosaic information. - ! - function get_mosaic_ncontacts( mosaic_file) - character(len=*), intent(in) :: mosaic_file - integer :: get_mosaic_ncontacts - - character(len=len_trim(mosaic_file)+1) :: mfile - integer :: strlen - integer :: read_mosaic_ncontacts - - if(field_exist(mosaic_file, "contacts") ) then - get_mosaic_ncontacts = dimension_size(mosaic_file, "ncontact", no_domain=.TRUE.) - else - get_mosaic_ncontacts = 0 - endif - - return - - end function get_mosaic_ncontacts -! - - - !############################################################################### - ! - ! - ! get grid size of each tile from mosaic_file - ! - ! - ! get grid size of each tile from mosaic_file - ! - ! - ! - ! The file that contains mosaic information. - ! - ! - ! List of grid size in x-direction of each tile. - ! - ! - ! List of grid size in y-direction of each tile. - ! - subroutine get_mosaic_grid_sizes( mosaic_file, nx, ny) - character(len=*), intent(in) :: mosaic_file - integer, dimension(:), intent(inout) :: nx, ny - - character(len=MAX_FILE) :: gridfile - integer :: ntiles, n - - ntiles = get_mosaic_ntiles(mosaic_file) - if(ntiles .NE. size(nx(:)) .OR. ntiles .NE. size(ny(:)) ) then - call mpp_error(FATAL, "get_mosaic_grid_sizes: size of nx/ny does not equal to ntiles") - endif - do n = 1, ntiles - call read_data(mosaic_file, 'gridfiles', gridfile, level=n) - gridfile = grid_dir//trim(gridfile) - nx(n) = dimension_size(gridfile, "nx") - ny(n) = dimension_size(gridfile, "ny") - if(mod(nx(n),x_refine) .NE. 0) call mpp_error(FATAL, "get_mosaic_grid_sizes: nx is not divided by x_refine"); - if(mod(ny(n),y_refine) .NE. 0) call mpp_error(FATAL, "get_mosaic_grid_sizes: ny is not divided by y_refine"); - nx(n) = nx(n)/x_refine; - ny(n) = ny(n)/y_refine; - enddo - - return - - end subroutine get_mosaic_grid_sizes -! - - !############################################################################### - ! - ! - ! get contact information from mosaic_file - ! - ! - ! get contact information from mosaic_file - ! - ! - ! - ! The file that contains mosaic information. - ! - ! - ! list tile number in tile 1 of each contact. - ! - ! - ! list tile number in tile 2 of each contact. - ! - ! - ! list starting i-index in tile 1 of each contact. - ! - ! - ! list ending i-index in tile 1 of each contact. - ! - ! - ! list starting j-index in tile 1 of each contact. - ! - ! - ! list ending j-index in tile 1 of each contact. - ! - ! - ! list starting i-index in tile 2 of each contact. - ! - ! - ! list ending i-index in tile 2 of each contact. - ! - ! - ! list starting j-index in tile 2 of each contact. - ! - ! - ! list ending j-index in tile 2 of each contact. - ! - subroutine get_mosaic_contact( mosaic_file, tile1, tile2, istart1, iend1, jstart1, jend1, & - istart2, iend2, jstart2, jend2) - character(len=*), intent(in) :: mosaic_file - integer, dimension(:), intent(inout) :: tile1, tile2 - integer, dimension(:), intent(inout) :: istart1, iend1, jstart1, jend1 - integer, dimension(:), intent(inout) :: istart2, iend2, jstart2, jend2 - character(len=MAX_NAME), allocatable :: gridtiles(:) - character(len=MAX_NAME) :: contacts - character(len=MAX_NAME) :: strlist(8) - integer :: ntiles, n, m, ncontacts, nstr, ios - integer :: i1_type, j1_type, i2_type, j2_type - logical :: found - - ntiles = get_mosaic_ntiles(mosaic_file) - allocate(gridtiles(ntiles)) - do n = 1, ntiles - call read_data(mosaic_file, 'gridtiles', gridtiles(n), level=n) - enddo - - ncontacts = get_mosaic_ncontacts(mosaic_file) - - do n = 1, ncontacts - call read_data(mosaic_file, "contacts", contacts, level=n) - nstr = parse_string(contacts, ":", strlist) - if(nstr .NE. 4) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): number of elements in contact seperated by :/:: should be 4") - found = .false. - do m = 1, ntiles - if(trim(gridtiles(m)) == trim(strlist(2)) ) then !found the tile name - found = .true. - tile1(n) = m - exit - endif - enddo - - if(.not.found) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact):the first tile name specified in contact is not found in tile list") - - found = .false. - do m = 1, ntiles - if(trim(gridtiles(m)) == trim(strlist(4)) ) then !found the tile name - found = .true. - tile2(n) = m - exit - endif - enddo - - if(.not.found) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact):the second tile name specified in contact is not found in tile list") - - call read_data(mosaic_file, "contact_index", contacts, level=n) - nstr = parse_string(contacts, ":,", strlist) - if(nstr .NE. 8) then - if(mpp_pe()==mpp_root_pe()) then - print*, "nstr is ", nstr - print*, "contacts is ", contacts - do m = 1, nstr - print*, "strlist is ", trim(strlist(m)) - enddo - endif - call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): number of elements in contact_index seperated by :/, should be 8") - endif - read(strlist(1), *, iostat=ios) istart1(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading istart1") - read(strlist(2), *, iostat=ios) iend1(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading iend1") - read(strlist(3), *, iostat=ios) jstart1(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading jstart1") - read(strlist(4), *, iostat=ios) jend1(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading jend1") - read(strlist(5), *, iostat=ios) istart2(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading istart2") - read(strlist(6), *, iostat=ios) iend2(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading iend2") - read(strlist(7), *, iostat=ios) jstart2(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading jstart2") - read(strlist(8), *, iostat=ios) jend2(n) - if(ios .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): Error in reading jend2") - - i1_type = transfer_to_model_index(istart1(n), iend1(n), x_refine) - j1_type = transfer_to_model_index(jstart1(n), jend1(n), y_refine) - i2_type = transfer_to_model_index(istart2(n), iend2(n), x_refine) - j2_type = transfer_to_model_index(jstart2(n), jend2(n), y_refine) - - if( i1_type == 0 .AND. j1_type == 0 ) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): istart1==iend1 and jstart1==jend1") - if( i2_type == 0 .AND. j2_type == 0 ) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): istart2==iend2 and jstart2==jend2") - if( i1_type + j1_type .NE. i2_type + j2_type ) call mpp_error(FATAL, & - "mosaic_mod(get_mosaic_contact): It is not a line or overlap contact") - - enddo - - deallocate(gridtiles) - - end subroutine get_mosaic_contact -! - - -function transfer_to_model_index(istart, iend, refine_ratio) - integer, intent(inout) :: istart, iend - integer :: refine_ratio - integer :: transfer_to_model_index - integer :: istart_in, iend_in - - istart_in = istart - iend_in = iend - - if( istart_in == iend_in ) then - transfer_to_model_index = 0 - istart = (istart_in + 1)/refine_ratio - iend = istart - else - transfer_to_model_index = 1 - if( iend_in > istart_in ) then - istart = istart_in + 1 - iend = iend_in - else - istart = istart_in - iend = iend_in + 1 - endif - if( mod(istart, refine_ratio) .NE. 0 .OR. mod(iend,refine_ratio) .NE. 0) call mpp_error(FATAL, & - "mosaic_mod(transfer_to_model_index): mismatch between refine_ratio and istart/iend") - istart = istart/refine_ratio - iend = iend/refine_ratio - - endif - - return - -end function transfer_to_model_index - - !############################################################################### - ! - ! - ! calculate grid cell area. - ! - ! - ! calculate the grid cell area. The purpose of this routine is to make - ! sure the consistency between model grid area and exchange grid area. - ! - ! - ! - ! geographical longitude of grid cell vertices. - ! - ! - ! geographical latitude of grid cell vertices. - ! - ! - ! grid cell area. - ! - subroutine calc_mosaic_grid_area(lon, lat, area) - real, dimension(:,:), intent(in) :: lon - real, dimension(:,:), intent(in) :: lat - real, dimension(:,:), intent(inout) :: area - integer :: nlon, nlat - - nlon = size(area,1) - nlat = size(area,2) - ! make sure size of lon, lat and area are consitency - if( size(lon,1) .NE. nlon+1 .OR. size(lat,1) .NE. nlon+1 ) & - call mpp_error(FATAL, "mosaic_mod: size(lon,1) and size(lat,1) should equal to size(area,1)+1") - if( size(lon,2) .NE. nlat+1 .OR. size(lat,2) .NE. nlat+1 ) & - call mpp_error(FATAL, "mosaic_mod: size(lon,2) and size(lat,2) should equal to size(area,2)+1") - - call get_grid_area( nlon, nlat, lon, lat, area) - - end subroutine calc_mosaic_grid_area - ! - - !############################################################################### - ! - ! - ! calculate grid cell area using great cirlce algorithm - ! - ! - ! calculate the grid cell area. The purpose of this routine is to make - ! sure the consistency between model grid area and exchange grid area. - ! - ! - ! - ! geographical longitude of grid cell vertices. - ! - ! - ! geographical latitude of grid cell vertices. - ! - ! - ! grid cell area. - ! - subroutine calc_mosaic_grid_great_circle_area(lon, lat, area) - real, dimension(:,:), intent(in) :: lon - real, dimension(:,:), intent(in) :: lat - real, dimension(:,:), intent(inout) :: area - integer :: nlon, nlat - - - nlon = size(area,1) - nlat = size(area,2) - ! make sure size of lon, lat and area are consitency - if( size(lon,1) .NE. nlon+1 .OR. size(lat,1) .NE. nlon+1 ) & - call mpp_error(FATAL, "mosaic_mod: size(lon,1) and size(lat,1) should equal to size(area,1)+1") - if( size(lon,2) .NE. nlat+1 .OR. size(lat,2) .NE. nlat+1 ) & - call mpp_error(FATAL, "mosaic_mod: size(lon,2) and size(lat,2) should equal to size(area,2)+1") - - call get_grid_great_circle_area( nlon, nlat, lon, lat, area) - - end subroutine calc_mosaic_grid_great_circle_area - ! - - !##################################################################### - ! This function check if a point (lon1,lat1) is inside a polygon (lon2(:), lat2(:)) - ! lon1, lat1, lon2, lat2 are in radians. - function is_inside_polygon(lon1, lat1, lon2, lat2 ) - real, intent(in) :: lon1, lat1 - real, intent(in) :: lon2(:), lat2(:) - logical :: is_inside_polygon - real, dimension(size(lon2(:))) :: x2, y2, z2 - integer :: npts, isinside - integer :: inside_a_polygon - - npts = size(lon2(:)) - - isinside = inside_a_polygon(lon1, lat1, npts, lon2, lat2) - if(isinside == 1) then - is_inside_polygon = .TRUE. - else - is_inside_polygon = .FALSE. - endif - - return - - end function is_inside_polygon - - function parse_string(string, set, value) - character(len=*), intent(in) :: string - character(len=*), intent(in) :: set - character(len=*), intent(out) :: value(:) - integer :: parse_string - integer :: nelem, length, first, last - - nelem = size(value(:)) - length = len_trim(string) - - first = 1; last = 0 - parse_string = 0 - - do while(first .LE. length) - parse_string = parse_string + 1 - if(parse_string>nelem) then - call mpp_error(FATAL, "mosaic_mod(parse_string) : number of element is greater than size(value(:))") - endif - last = first - 1 + scan(string(first:length), set) - if(last == first-1 ) then ! not found, end of string - value(parse_string) = string(first:length) - exit - else - if(last <= first) then - call mpp_error(FATAL, "mosaic_mod(parse_string) : last <= first") - endif - value(parse_string) = string(first:(last-1)) - first = last + 1 - ! scan to make sure the next is not the character in the set - do while (first == last+1) - last = first - 1 + scan(string(first:length), set) - if(last == first) then - first = first+1 - else - exit - endif - end do - endif - enddo - - return - - end function parse_string - - - -end module mosaic_mod - - -#ifdef TEST_MOSAIC -program test_mosaic - -use mosaic_mod, only : get_mosaic_ntiles, get_mosaic_ncontacts -use mosaic_mod, only : get_mosaic_grid_sizes, get_mosaic_contact - -implicit none - -integer :: ntiles, ncontacts, n -integer, allocatable :: tile1(:), tile2(:), nx(:), ny(:) -integer, allocatable :: istart1(:), iend1(:), jstart1(:), jend1(:) -integer, allocatable :: istart2(:), iend2(:), jstart2(:), jend2(:) -character(len=128) :: mosaic_file = "INPUT/mosaic.nc" - -ntiles = get_mosaic_ntiles(mosaic_file) -ncontacts = get_mosaic_ncontacts(mosaic_file) -allocate(nx(ntiles), ny(ntiles)) -allocate(tile1(ncontacts), tile2(ncontacts) ) -allocate(istart1(ncontacts), iend1(ncontacts), jstart1(ncontacts), jend1(ncontacts) ) -allocate(istart2(ncontacts), iend2(ncontacts), jstart2(ncontacts), jend2(ncontacts) ) - -call get_mosaic_grid_sizes(mosaic_file, nx, ny ) -call get_mosaic_contact(mosaic_file, tile1, tile2, istart1, iend1, jstart1, jend1, istart2, iend2, jstart2, jend2) - -! print out information - -print '(a,i3,a,a)', "****** There is ", ntiles, " tiles in ", trim(mosaic_file) -do n = 1, ntiles - print '(a,i3,a,i3,a,i3)', " tile = ", n, ", nx = ", nx(n), ", ny = ", ny(n) -end do - -print '(a,i3,a,a)', "****** There is ", ncontacts, " contacts in ", trim(mosaic_file) -do n = 1, ncontacts - print '(a,i3,a,i3,a,i3,a,i4,a,i4,a,i4,a,i4,a,i4,a,i4,a,i4,a,i4)', & - "contact=", n, ": tile1=", tile1(n), " tile2=", tile2(n), & - " is1=", istart1(n), " ie1=", iend1(n), & - " js1=", jstart1(n), " je1=", jend1(n), & - " is2=", istart2(n), " ie2=", iend2(n), & - " js2=", jstart2(n), " je2=", jend2(n) -end do - -deallocate(tile1, tile2, nx, ny) -deallocate(istart1, iend1, jstart1, jend1) -deallocate(istart2, iend2, jstart2, jend2) - - -end program test_mosaic -#endif diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.c b/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.c deleted file mode 100644 index 995fad7cb0..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.c +++ /dev/null @@ -1,1351 +0,0 @@ -#include -#include -#include -#include -#ifdef use_libMPI -#include -#endif -#include "mosaic_util.h" -#include "constant.h" - -#define HPI (0.5*M_PI) -#define TPI (2.0*M_PI) -#define TOLORENCE (1.e-6) -#define EPSLN8 (1.e-8) -#define EPSLN10 (1.e-10) -#define EPSLN15 (1.e-15) -#define EPSLN30 (1.e-30) -/*********************************************************** - void error_handler(char *str) - error handler: will print out error message and then abort -***********************************************************/ -int reproduce_siena = 0; - -void set_reproduce_siena_true(void) -{ - reproduce_siena = 1; -} - -#ifndef __AIX -void set_reproduce_siena_true_(void) -{ - reproduce_siena = 1; -} -#endif - - -void error_handler(const char *msg) -{ - fprintf(stderr, "FATAL Error: %s\n", msg ); -#ifdef use_libMPI - MPI_Abort(MPI_COMM_WORLD, -1); -#else - exit(1); -#endif -}; /* error_handler */ - -/********************************************************************* - - int nearest_index(double value, const double *array, int ia) - - return index of nearest data point within "array" corresponding to "value". - if "value" is outside the domain of "array" then nearest_index = 0 - or = size(array)-1 depending on whether array(0) or array(ia-1) is - closest to "value" - - Arguments: - value: arbitrary data...same units as elements in "array" - array: array of data points (must be monotonically increasing) - ia : size of array. - - ********************************************************************/ -int nearest_index(double value, const double *array, int ia) -{ - int index, i; - int keep_going; - - for(i=1; i array[ia-1]) - index = ia-1; - else - { - i=0; - keep_going = 1; - while (i < ia && keep_going) { - i = i+1; - if (value <= array[i]) { - index = i; - if (array[i]-value > value-array[i-1]) index = i-1; - keep_going = 0; - } - } - } - return index; - -}; - -/******************************************************************/ - -void tokenize(const char * const string, const char *tokens, unsigned int varlen, - unsigned int maxvar, char * pstring, unsigned int * const nstr) -{ - size_t i, j, nvar, len, ntoken; - int found, n; - - nvar = 0; j = 0; - len = strlen(string); - ntoken = strlen(tokens); - /* here we use the fact that C array [][] is contiguous in memory */ - if(string[0] == 0)error_handler("Error from tokenize: to-be-parsed string is empty"); - - for(i = 0; i < len; i ++){ - if(string[i] != ' ' && string[i] != '\t'){ - found = 0; - for(n=0; n= maxvar) error_handler("Error from tokenize: number of variables exceeds limit"); - } - } - else { - *(pstring + nvar*varlen + j++) = string[i]; - if(j >= varlen ) error_handler("error from tokenize: variable name length exceeds limit during tokenization"); - } - } - } - *(pstring + nvar*varlen + j) = 0; - - *nstr = ++nvar; - -} - -/******************************************************************************* - double maxval_double(int size, double *data) - get the maximum value of double array -*******************************************************************************/ -double maxval_double(int size, const double *data) -{ - int n; - double maxval; - - maxval = data[0]; - for(n=1; n maxval ) maxval = data[n]; - } - - return maxval; - -}; /* maxval_double */ - - -/******************************************************************************* - double minval_double(int size, double *data) - get the minimum value of double array -*******************************************************************************/ -double minval_double(int size, const double *data) -{ - int n; - double minval; - - minval = data[0]; - for(n=1; n M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - - return (dx*(sin(ur_lat)-sin(ll_lat))*RADIUS*RADIUS ) ; - -}; /* box_area */ - - -/*------------------------------------------------------------------------------ - double poly_area(const x[], const y[], int n) - obtains area of input polygon by line integrating -sin(lat)d(lon) - Vertex coordinates must be in degrees. - Vertices must be listed counter-clockwise around polygon. - grid is in radians. - ----------------------------------------------------------------------------*/ -double poly_area_dimensionless(const double x[], const double y[], int n) -{ - double area = 0.0; - int i; - - for (i=0;i M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - if (dx==0.0) continue; - - if ( fabs(lat1-lat2) < SMALL_VALUE) /* cheap area calculation along latitude */ - area -= dx*sin(0.5*(lat1+lat2)); - else { - if(reproduce_siena) { - area += dx*(cos(lat1)-cos(lat2))/(lat1-lat2); - } - else { - dy = 0.5*(lat1-lat2); - dat = sin(dy)/dy; - area -= dx*sin(0.5*(lat1+lat2))*dat; - } - } - } - if(area < 0) - return (-area/(4*M_PI)); - else - return (area/(4*M_PI)); - -}; /* poly_area */ - -double poly_area(const double x[], const double y[], int n) -{ - double area = 0.0; - int i; - - for (i=0;i M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - if (dx==0.0) continue; - - if ( fabs(lat1-lat2) < SMALL_VALUE) /* cheap area calculation along latitude */ - area -= dx*sin(0.5*(lat1+lat2)); - else { - if(reproduce_siena) { - area += dx*(cos(lat1)-cos(lat2))/(lat1-lat2); - } - else { - dy = 0.5*(lat1-lat2); - dat = sin(dy)/dy; - area -= dx*sin(0.5*(lat1+lat2))*dat; - } - } - } - if(area < 0) - return -area*RADIUS*RADIUS; - else - return area*RADIUS*RADIUS; - -}; /* poly_area */ - -double poly_area_no_adjust(const double x[], const double y[], int n) -{ - double area = 0.0; - int i; - - for (i=0;i=n_ins;i--) { - x[i+1] = x[i]; - y[i+1] = y[i]; - } - - x[n_ins] = lon_in; - y[n_ins] = lat_in; - return (n+1); -} /* insert_vtx */ - -void v_print(double x[], double y[], int n) -{ - int i; - - for (i=0;i=HPI-TOLORENCE) pole = 1; - if (0&&pole) { - printf("fixing pole cell\n"); - v_print(x, y, nn); - printf("---------"); - } - - /* all pole points must be paired */ - for (i=0;i=HPI-TOLORENCE) { - int im=(i+nn-1)%nn, ip=(i+1)%nn; - - if (y[im]==y[i] && y[ip]==y[i]) { - nn = delete_vtx(x, y, nn, i); - i--; - } else if (y[im]!=y[i] && y[ip]!=y[i]) { - nn = insert_vtx(x, y, nn, i, x[i], y[i]); - i++; - } - } - /* first of pole pair has longitude of previous vertex */ - /* second of pole pair has longitude of subsequent vertex */ - for (i=0;i=HPI-TOLORENCE) { - int im=(i+nn-1)%nn, ip=(i+1)%nn; - - if (y[im]!=y[i]) x[i] = x[im]; - if (y[ip]!=y[i]) x[i] = x[ip]; - } - - if (nn) x_sum = x[0]; else return(0); - for (i=1;i M_PI) dx = dx - TPI; - x_sum += (x[i] = x[i-1] + dx); - } - - dx = (x_sum/nn)-tlon; - if (dx < -M_PI) for (i=0;i M_PI) for (i=0;i angle - \ - \ - p2 - -----------------------------------------------------------------------------*/ -double spherical_angle(const double *v1, const double *v2, const double *v3) -{ - double angle; -#ifdef NO_QUAD_PRECISION - double px, py, pz, qx, qy, qz, ddd; -#else - long double px, py, pz, qx, qy, qz, ddd; -#endif - - /* vector product between v1 and v2 */ - px = v1[1]*v2[2] - v1[2]*v2[1]; - py = v1[2]*v2[0] - v1[0]*v2[2]; - pz = v1[0]*v2[1] - v1[1]*v2[0]; - /* vector product between v1 and v3 */ - qx = v1[1]*v3[2] - v1[2]*v3[1]; - qy = v1[2]*v3[0] - v1[0]*v3[2]; - qz = v1[0]*v3[1] - v1[1]*v3[0]; - - ddd = (px*px+py*py+pz*pz)*(qx*qx+qy*qy+qz*qz); - if ( ddd <= 0.0 ) - angle = 0. ; - else { - ddd = (px*qx+py*qy+pz*qz) / sqrt(ddd); - if( fabs(ddd-1) < EPSLN30 ) ddd = 1; - if( fabs(ddd+1) < EPSLN30 ) ddd = -1; - if ( ddd>1. || ddd<-1. ) { - /*FIX (lmh) to correctly handle co-linear points (angle near pi or 0) */ - if (ddd < 0.) - angle = M_PI; - else - angle = 0.; - } - else - angle = acosl( ddd ); - } - - return angle; -}; /* spherical_angle */ - -/*------------------------------------------------------------------------------ - double spherical_excess_area(p_lL, p_uL, p_lR, p_uR) - get the surface area of a cell defined as a quadrilateral - on the sphere. Area is computed as the spherical excess - [area units are m^2] - ----------------------------------------------------------------------------*/ -double spherical_excess_area(const double* p_ll, const double* p_ul, - const double* p_lr, const double* p_ur, double radius) -{ - double area, ang1, ang2, ang3, ang4; - double v1[3], v2[3], v3[3]; - - /* S-W: 1 */ - latlon2xyz(1, p_ll, p_ll+1, v1, v1+1, v1+2); - latlon2xyz(1, p_lr, p_lr+1, v2, v2+1, v2+2); - latlon2xyz(1, p_ul, p_ul+1, v3, v3+1, v3+2); - ang1 = spherical_angle(v1, v2, v3); - - /* S-E: 2 */ - latlon2xyz(1, p_lr, p_lr+1, v1, v1+1, v1+2); - latlon2xyz(1, p_ur, p_ur+1, v2, v2+1, v2+2); - latlon2xyz(1, p_ll, p_ll+1, v3, v3+1, v3+2); - ang2 = spherical_angle(v1, v2, v3); - - /* N-E: 3 */ - latlon2xyz(1, p_ur, p_ur+1, v1, v1+1, v1+2); - latlon2xyz(1, p_ul, p_ul+1, v2, v2+1, v2+2); - latlon2xyz(1, p_lr, p_lr+1, v3, v3+1, v3+2); - ang3 = spherical_angle(v1, v2, v3); - - /* N-W: 4 */ - latlon2xyz(1, p_ul, p_ul+1, v1, v1+1, v1+2); - latlon2xyz(1, p_ur, p_ur+1, v2, v2+1, v2+2); - latlon2xyz(1, p_ll, p_ll+1, v3, v3+1, v3+2); - ang4 = spherical_angle(v1, v2, v3); - - area = (ang1 + ang2 + ang3 + ang4 - 2.*M_PI) * radius* radius; - - return area; - -}; /* spherical_excess_area */ - - -/*---------------------------------------------------------------------- - void vect_cross(e, p1, p2) - Perform cross products of 3D vectors: e = P1 X P2 - -------------------------------------------------------------------*/ - -void vect_cross(const double *p1, const double *p2, double *e ) -{ - - e[0] = p1[1]*p2[2] - p1[2]*p2[1]; - e[1] = p1[2]*p2[0] - p1[0]*p2[2]; - e[2] = p1[0]*p2[1] - p1[1]*p2[0]; - -}; /* vect_cross */ - - -/*---------------------------------------------------------------------- - double* vect_cross(p1, p2) - return cross products of 3D vectors: = P1 X P2 - -------------------------------------------------------------------*/ - -double dot(const double *p1, const double *p2) -{ - - return( p1[0]*p2[0] + p1[1]*p2[1] + p1[2]*p2[2] ); - -} - - -double metric(const double *p) { - return (sqrt(p[0]*p[0] + p[1]*p[1]+p[2]*p[2]) ); -} - - -/* ---------------------------------------------------------------- - make a unit vector - --------------------------------------------------------------*/ -void normalize_vect(double *e) -{ - double pdot; - int k; - - pdot = e[0]*e[0] + e[1] * e[1] + e[2] * e[2]; - pdot = sqrt( pdot ); - - for(k=0; k<3; k++) e[k] /= pdot; -}; - - -/*------------------------------------------------------------------ - void unit_vect_latlon(int size, lon, lat, vlon, vlat) - - calculate unit vector for latlon in cartesian coordinates - - ---------------------------------------------------------------------*/ -void unit_vect_latlon(int size, const double *lon, const double *lat, double *vlon, double *vlat) -{ - double sin_lon, cos_lon, sin_lat, cos_lat; - int n; - - for(n=0; n MAXNODELIST) error_handler("getNext: curListPos >= MAXNODELIST"); - - return (temp); -} - - -void initNode(struct Node *node) -{ - node->x = 0; - node->y = 0; - node->z = 0; - node->u = 0; - node->intersect = 0; - node->inbound = 0; - node->isInside = 0; - node->Next = NULL; - node->initialized=0; - -} - -void addEnd(struct Node *list, double x, double y, double z, int intersect, double u, int inbound, int inside) -{ - - struct Node *temp=NULL; - - if(list == NULL) error_handler("addEnd: list is NULL"); - - if(list->initialized) { - - /* (x,y,z) might already in the list when intersect is true and u=0 or 1 */ - temp = list; - while (temp) { - if(samePoint(temp->x, temp->y, temp->z, x, y, z)) return; - temp=temp->Next; - } - temp = list; - while(temp->Next) - temp=temp->Next; - - /* Append at the end of the list. */ - temp->Next = getNext(); - temp = temp->Next; - } - else { - temp = list; - } - - temp->x = x; - temp->y = y; - temp->z = z; - temp->u = u; - temp->intersect = intersect; - temp->inbound = inbound; - temp->initialized=1; - temp->isInside = inside; -} - -/* return 1 if the point (x,y,z) is added in the list, return 0 if it is already in the list */ - -int addIntersect(struct Node *list, double x, double y, double z, int intersect, double u1, double u2, int inbound, - int is1, int ie1, int is2, int ie2) -{ - - double u1_cur, u2_cur; - int i1_cur, i2_cur; - struct Node *temp=NULL; - - if(list == NULL) error_handler("addEnd: list is NULL"); - - /* first check to make sure this point is not in the list */ - u1_cur = u1; - i1_cur = is1; - u2_cur = u2; - i2_cur = is2; - if(u1_cur == 1) { - u1_cur = 0; - i1_cur = ie1; - } - if(u2_cur == 1) { - u2_cur = 0; - i2_cur = ie2; - } - - if(list->initialized) { - temp = list; - while(temp) { - if( temp->u == u1_cur && temp->subj_index == i1_cur) return 0; - if( temp->u_clip == u2_cur && temp->clip_index == i2_cur) return 0; - if( !temp->Next ) break; - temp=temp->Next; - } - - /* Append at the end of the list. */ - temp->Next = getNext(); - temp = temp->Next; - } - else { - temp = list; - } - - temp->x = x; - temp->y = y; - temp->z = z; - temp->intersect = intersect; - temp->inbound = inbound; - temp->initialized=1; - temp->isInside = 0; - temp->u = u1_cur; - temp->subj_index = i1_cur; - temp->u_clip = u2_cur; - temp->clip_index = i2_cur; - - return 1; -} - - -int length(struct Node *list) -{ - struct Node *cur_ptr=NULL; - int count=0; - - cur_ptr=list; - - while(cur_ptr) - { - if(cur_ptr->initialized ==0) break; - cur_ptr=cur_ptr->Next; - count++; - } - return(count); -} - -/* two points are the same if there are close enough */ -int samePoint(double x1, double y1, double z1, double x2, double y2, double z2) -{ - if( fabs(x1-x2) > EPSLN10 || fabs(y1-y2) > EPSLN10 || fabs(z1-z2) > EPSLN10 ) - return 0; - else - return 1; -} - - - -int sameNode(struct Node node1, struct Node node2) -{ - if( node1.x == node2.x && node1.y == node2.y && node1.z==node2.z ) - return 1; - else - return 0; -} - - -void addNode(struct Node *list, struct Node inNode) -{ - - addEnd(list, inNode.x, inNode.y, inNode.z, inNode.intersect, inNode.u, inNode.inbound, inNode.isInside); - -} - -struct Node *getNode(struct Node *list, struct Node inNode) -{ - struct Node *thisNode=NULL; - struct Node *temp=NULL; - - temp = list; - while( temp ) { - if( sameNode( *temp, inNode ) ) { - thisNode = temp; - temp = NULL; - break; - } - temp = temp->Next; - } - - return thisNode; -} - -struct Node *getNextNode(struct Node *list) -{ - return list->Next; -} - -void copyNode(struct Node *node_out, struct Node node_in) -{ - - node_out->x = node_in.x; - node_out->y = node_in.y; - node_out->z = node_in.z; - node_out->u = node_in.u; - node_out->intersect = node_in.intersect; - node_out->inbound = node_in.inbound; - node_out->Next = NULL; - node_out->initialized = node_in.initialized; - node_out->isInside = node_in.isInside; -} - -void printNode(struct Node *list, char *str) -{ - struct Node *temp; - - if(list == NULL) error_handler("printNode: list is NULL"); - if(str) printf(" %s \n", str); - temp = list; - while(temp) { - if(temp->initialized ==0) break; - printf(" (x, y, z, interset, inbound, isInside) = (%19.15f,%19.15f,%19.15f,%d,%d,%d)\n", - temp->x, temp->y, temp->z, temp->intersect, temp->inbound, temp->isInside); - temp = temp->Next; - } - printf("\n"); -} - -int intersectInList(struct Node *list, double x, double y, double z) -{ - struct Node *temp; - int found=0; - - temp = list; - found = 0; - while ( temp ) { - if( temp->x == x && temp->y == y && temp->z == z ) { - found = 1; - break; - } - temp=temp->Next; - } - if (!found) error_handler("intersectInList: point (x,y,z) is not found in the list"); - if( temp->intersect == 2 ) - return 1; - else - return 0; - -} - - -/* The following insert a intersection after non-intersect point (x2,y2,z2), if the point - after (x2,y2,z2) is an intersection, if u is greater than the u value of the intersection, - insert after, otherwise insert before -*/ -void insertIntersect(struct Node *list, double x, double y, double z, double u1, double u2, int inbound, - double x2, double y2, double z2) -{ - struct Node *temp1=NULL, *temp2=NULL; - struct Node *temp; - double u_cur; - int found=0; - - temp1 = list; - found = 0; - while ( temp1 ) { - if( temp1->x == x2 && temp1->y == y2 && temp1->z == z2 ) { - found = 1; - break; - } - temp1=temp1->Next; - } - if (!found) error_handler("inserAfter: point (x,y,z) is not found in the list"); - - /* when u = 0 or u = 1, set the grid point to be the intersection point to solve truncation error isuse */ - u_cur = u1; - if(u1 == 1) { - u_cur = 0; - temp1 = temp1->Next; - if(!temp1) temp1 = list; - } - if(u_cur==0) { - temp1->intersect = 2; - temp1->isInside = 1; - temp1->u = u_cur; - temp1->x = x; - temp1->y = y; - temp1->z = z; - return; - } - - /* when u2 != 0 and u2 !=1, can decide if one end of the point is outside depending on inbound value */ - if(u2 != 0 && u2 != 1) { - if(inbound == 1) { /* goes outside, then temp1->Next is an outside point */ - /* find the next non-intersect point */ - temp2 = temp1->Next; - if(!temp2) temp2 = list; - while(temp2->intersect) { - temp2=temp2->Next; - if(!temp2) temp2 = list; - } - - temp2->isInside = 0; - } - else if(inbound ==2) { /* goes inside, then temp1 is an outside point */ - temp1->isInside = 0; - } - } - - temp2 = temp1->Next; - while ( temp2 ) { - if( temp2->intersect == 1 ) { - if( temp2->u > u_cur ) { - break; - } - } - else - break; - temp1 = temp2; - temp2 = temp2->Next; - } - - /* assign value */ - temp = getNext(); - temp->x = x; - temp->y = y; - temp->z = z; - temp->u = u_cur; - temp->intersect = 1; - temp->inbound = inbound; - temp->isInside = 1; - temp->initialized = 1; - temp1->Next = temp; - temp->Next = temp2; - -} - -double gridArea(struct Node *grid) { - double x[20], y[20], z[20]; - struct Node *temp=NULL; - double area; - int n; - - temp = grid; - n = 0; - while( temp ) { - x[n] = temp->x; - y[n] = temp->y; - z[n] = temp->z; - n++; - temp = temp->Next; - } - - area = great_circle_area(n, x, y, z); - - return area; - -} - -int isIntersect(struct Node node) { - - return node.intersect; - -} - - -int getInbound( struct Node node ) -{ - return node.inbound; -} - -struct Node *getLast(struct Node *list) -{ - struct Node *temp1; - - temp1 = list; - if( temp1 ) { - while( temp1->Next ) { - temp1 = temp1->Next; - } - } - - return temp1; -} - - -int getFirstInbound( struct Node *list, struct Node *nodeOut) -{ - struct Node *temp=NULL; - - temp=list; - - while(temp) { - if( temp->inbound == 2 ) { - copyNode(nodeOut, *temp); - return 1; - } - temp=temp->Next; - } - - return 0; -} - -void getCoordinate(struct Node node, double *x, double *y, double *z) -{ - - - *x = node.x; - *y = node.y; - *z = node.z; - -} - -void getCoordinates(struct Node *node, double *p) -{ - - - p[0] = node->x; - p[1] = node->y; - p[2] = node->z; - -} - -void setCoordinate(struct Node *node, double x, double y, double z) -{ - - - node->x = x; - node->y = y; - node->z = z; - -} - -/* set inbound value for the points in interList that has inbound =0, - this will also set some inbound value of the points in list1 -*/ - -void setInbound(struct Node *interList, struct Node *list) -{ - - struct Node *temp1=NULL, *temp=NULL; - struct Node *temp1_prev=NULL, *temp1_next=NULL; - int prev_is_inside, next_is_inside; - - /* for each point in interList, search through list to decide the inbound value the interList point */ - /* For each inbound point, the prev node should be outside and the next is inside. */ - if(length(interList) == 0) return; - - temp = interList; - - while(temp) { - if( !temp->inbound) { - /* search in grid1 to find the prev and next point of temp, when prev point is outside and next point is inside - inbound = 2, else inbound = 1*/ - temp1 = list; - temp1_prev = NULL; - temp1_next = NULL; - while(temp1) { - if(sameNode(*temp1, *temp)) { - if(!temp1_prev) temp1_prev = getLast(list); - temp1_next = temp1->Next; - if(!temp1_next) temp1_next = list; - break; - } - temp1_prev = temp1; - temp1 = temp1->Next; - } - if(!temp1_next) error_handler("Error from create_xgrid.c: temp is not in list1"); - if( temp1_prev->isInside == 0 && temp1_next->isInside == 1) - temp->inbound = 2; /* go inside */ - else - temp->inbound = 1; - } - temp=temp->Next; - } -} - -int isInside(struct Node *node) { - - if(node->isInside == -1) error_handler("Error from mosaic_util.c: node->isInside is not set"); - return(node->isInside); - -} - -/* #define debug_test_create_xgrid */ - -/* check if node is inside polygon list or not */ - int insidePolygon( struct Node *node, struct Node *list) -{ - int i, ip, is_inside; - double pnt0[3], pnt1[3], pnt2[3]; - double anglesum; - struct Node *p1=NULL, *p2=NULL; - - anglesum = 0; - - pnt0[0] = node->x; - pnt0[1] = node->y; - pnt0[2] = node->z; - - p1 = list; - p2 = list->Next; - is_inside = 0; - - - while(p1) { - pnt1[0] = p1->x; - pnt1[1] = p1->y; - pnt1[2] = p1->z; - pnt2[0] = p2->x; - pnt2[1] = p2->y; - pnt2[2] = p2->z; - if(samePoint(pnt0[0], pnt0[1], pnt0[2], pnt1[0], pnt1[1], pnt1[2])) return 1; - anglesum += spherical_angle(pnt0, pnt2, pnt1); - p1 = p1->Next; - p2 = p2->Next; - if(p2==NULL)p2 = list; - } - - if( fabs(anglesum - 2*M_PI) < EPSLN8 ) - is_inside = 1; - else - is_inside = 0; - -#ifdef debug_test_create_xgrid - printf("anglesum-2PI is %19.15f, is_inside = %d\n", anglesum- 2*M_PI, is_inside); -#endif - - return is_inside; - -} - -int inside_a_polygon(double *lon1, double *lat1, int *npts, double *lon2, double *lat2) -{ - - double x2[20], y2[20], z2[20]; - double x1, y1, z1; - double min_x2, max_x2, min_y2, max_y2, min_z2, max_z2; - int isinside, i; - - struct Node *grid1=NULL, *grid2=NULL; - - /* first convert to cartesian grid */ - latlon2xyz(*npts, lon2, lat2, x2, y2, z2); - latlon2xyz(1, lon1, lat1, &x1, &y1, &z1); - - max_x2 = maxval_double(*npts, x2); - if(x1 >= max_x2+RANGE_CHECK_CRITERIA) return 0; - min_x2 = minval_double(*npts, x2); - if(min_x2 >= x1+RANGE_CHECK_CRITERIA) return 0; - - max_y2 = maxval_double(*npts, y2); - if(y1 >= max_y2+RANGE_CHECK_CRITERIA) return 0; - min_y2 = minval_double(*npts, y2); - if(min_y2 >= y1+RANGE_CHECK_CRITERIA) return 0; - - max_z2 = maxval_double(*npts, z2); - if(z1 >= max_z2+RANGE_CHECK_CRITERIA) return 0; - min_z2 = minval_double(*npts, z2); - if(min_z2 >= z1+RANGE_CHECK_CRITERIA) return 0; - - - /* add x2,y2,z2 to a Node */ - rewindList(); - grid1 = getNext(); - grid2 = getNext(); - - addEnd(grid1, x1, y1, z1, 0, 0, 0, -1); - for(i=0; i<*npts; i++) addEnd(grid2, x2[i], y2[i], z2[i], 0, 0, 0, -1); - - isinside = insidePolygon(grid1, grid2); - - return isinside; - -} - -#ifndef __AIX -int inside_a_polygon_(double *lon1, double *lat1, int *npts, double *lon2, double *lat2) -{ - - int isinside; - - isinside = inside_a_polygon(lon1, lat1, npts, lon2, lat2); - - return isinside; - -} -#endif - diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.h b/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.h deleted file mode 100644 index c7c0cefc42..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/mosaic_util.h +++ /dev/null @@ -1,92 +0,0 @@ -/*********************************************************************** - mosaic_util.h - This header file provide some utilities routine that will be used in many tools. - - contact: Zhi.Liang@noaa.gov -***********************************************************************/ -#ifndef MOSAIC_UTIL_H_ -#define MOSAIC_UTIL_H_ - -#ifndef RANGE_CHECK_CRITERIA -#define RANGE_CHECK_CRITERIA 0.05 -#endif - -#define min(a,b) (ab ? a:b) -#define SMALL_VALUE ( 1.e-10 ) -struct Node{ - double x, y, z, u, u_clip; - int intersect; /* indicate if this point is an intersection, 0 = no, 1= yes, 2=both intersect and vertices */ - int inbound; /* -1 uninitialized, 0 coincident, 1 outbound, 2 inbound */ - int initialized; /* = 0 means empty list */ - int isInside; /* = 1 means one point is inside the other polygon, 0 is not, -1 undecided. */ - int subj_index; /* the index of subject point that an intersection follow. */ - int clip_index; /* the index of clip point that an intersection follow */ - struct Node *Next; -}; - - -void error_handler(const char *msg); -int nearest_index(double value, const double *array, int ia); -int lon_fix(double *x, double *y, int n_in, double tlon); -double minval_double(int size, const double *data); -double maxval_double(int size, const double *data); -double avgval_double(int size, const double *data); -void latlon2xyz(int size, const double *lon, const double *lat, double *x, double *y, double *z); -void xyz2latlon(int size, const double *x, const double *y, const double *z, double *lon, double *lat); -double box_area(double ll_lon, double ll_lat, double ur_lon, double ur_lat); -double poly_area(const double lon[], const double lat[], int n); -double poly_area_dimensionless(const double lon[], const double lat[], int n); -double poly_area_no_adjust(const double x[], const double y[], int n); -int fix_lon(double lon[], double lat[], int n, double tlon); -void tokenize(const char * const string, const char *tokens, unsigned int varlen, - unsigned int maxvar, char * pstring, unsigned int * const nstr); -double great_circle_distance(double *p1, double *p2); -double spherical_excess_area(const double* p_ll, const double* p_ul, - const double* p_lr, const double* p_ur, double radius); -void vect_cross(const double *p1, const double *p2, double *e ); -double spherical_angle(const double *v1, const double *v2, const double *v3); -void normalize_vect(double *e); -void unit_vect_latlon(int size, const double *lon, const double *lat, double *vlon, double *vlat); -double great_circle_area(int n, const double *x, const double *y, const double *z); -double * cross(const double *p1, const double *p2); -double dot(const double *p1, const double *p2); -int intersect_tri_with_line(const double *plane, const double *l1, const double *l2, double *p, - double *t); -int invert_matrix_3x3(long double m[], long double m_inv[]); -void mult(long double m[], long double v[], long double out_v[]); -double metric(const double *p); -int insidePolygon(struct Node *node, struct Node *list ); -int inside_a_polygon( double *lon1, double *lat1, int *npts, double *lon2, double *lat2); - -void rewindList(void); -struct Node *getNext(); -void initNode(struct Node *node); -void addEnd(struct Node *list, double x, double y, double z, int intersect, double u, int inbound, int inside); -int addIntersect(struct Node *list, double x, double y, double z, int intersect, double u1, double u2, - int inbound, int is1, int ie1, int is2, int ie2); -int length(struct Node *list); -int samePoint(double x1, double y1, double z1, double x2, double y2, double z2); -int sameNode(struct Node node1, struct Node node2); -void addNode(struct Node *list, struct Node nodeIn); -struct Node *getNode(struct Node *list, struct Node inNode); -struct Node *getNextNode(struct Node *list); -void copyNode(struct Node *node_out, struct Node node_in); -void printNode(struct Node *list, char *str); -int intersectInList(struct Node *list, double x, double y, double z); -void insertAfter(struct Node *list, double x, double y, double z, int intersect, double u, int inbound, - double x2, double y2, double z2); -double gridArea(struct Node *grid); -int isIntersect(struct Node node); -int getInbound( struct Node node ); -struct Node *getLast(struct Node *list); -int getFirstInbound( struct Node *list, struct Node *nodeOut); -void getCoordinate(struct Node node, double *x, double *y, double *z); -void getCoordinates(struct Node *node, double *p); -void setCoordinate(struct Node *node, double x, double y, double z); -void setInbound(struct Node *interList, struct Node *list); -int isInside(struct Node *node); -void set_reproduce_siena_true(void); - - -#endif diff --git a/release/v0/sorc/fre-nctools.fd/shared/mosaic/read_mosaic.c b/release/v0/sorc/fre-nctools.fd/shared/mosaic/read_mosaic.c deleted file mode 100644 index 460f2c42c4..0000000000 --- a/release/v0/sorc/fre-nctools.fd/shared/mosaic/read_mosaic.c +++ /dev/null @@ -1,830 +0,0 @@ -#include -#include -#include -#include -#include "read_mosaic.h" -#include "constant.h" -#include "mosaic_util.h" -#ifdef use_netCDF -#include -#endif -/********************************************************************* - void netcdf_error( int status ) - status is the returning value of netcdf call. this routine will - handle the error when status is not NC_NOERR. -********************************************************************/ -void handle_netcdf_error(const char *msg, int status ) -{ - char errmsg[512]; - - sprintf( errmsg, "%s: %s", msg, (char *)nc_strerror(status) ); - error_handler(errmsg); - -}; /* handle_netcdf_error */ - -/*************************************************************************** - void get_file_dir(const char *file, char *dir) - get the directory where file is located. The dir will be the complate path - before the last "/". If no "/" exist in file, the path will be current ".". -***************************************************************************/ -void get_file_dir(const char *file, char *dir) -{ - int len; - char *strptr = NULL; - - /* get the diretory */ - - strptr = strrchr(file, '/'); - if(strptr) { - len = strptr - file; - strncpy(dir, file, len); - } - else { - len = 1; - strcpy(dir, "."); - } - dir[len] = 0; - -}; /* get_file_dir */ - - -int field_exist(const char* file, const char *name) -{ - int ncid, varid, status, existed; - char msg[512]; -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "field_exist: in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status == NC_NOERR) - existed = 1; - else - existed = 0; - - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "field_exist: in closing file %s.", file); - handle_netcdf_error(msg, status); - } - - return existed; -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); - -#endif - return 0; -}; /* field_exist */ - -int get_dimlen(const char* file, const char *name) -{ - int ncid, dimid, status, len; - size_t size; - char msg[512]; - - len = 0; -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "in opening file %s", file); - handle_netcdf_error(msg, status); - } - - status = nc_inq_dimid(ncid, name, &dimid); - if(status != NC_NOERR) { - sprintf(msg, "in getting dimid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - - status = nc_inq_dimlen(ncid, dimid, &size); - if(status != NC_NOERR) { - sprintf(msg, "in getting dimension size of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s.", file); - handle_netcdf_error(msg, status); - } - - len = size; - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - - return len; - -}; /* get_dimlen */ - -/******************************************************************************* - void get_string_data(const char *file, const char *name, char *data) - get string data of field with "name" from "file". -******************************************************************************/ -void get_string_data(const char *file, const char *name, char *data) -{ - int ncid, varid, status; - char msg[512]; - -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status != NC_NOERR) { - sprintf(msg, "in getting varid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_get_var_text(ncid, varid, data); - if(status != NC_NOERR) { - sprintf(msg, "in getting data of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s.", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - -}; /* get_string_data */ - -/******************************************************************************* - void get_string_data_level(const char *file, const char *name, const size_t *start, const size_t *nread, char *data) - get string data of field with "name" from "file". -******************************************************************************/ -void get_string_data_level(const char *file, const char *name, char *data, const int *level) -{ - int ncid, varid, status, i; - size_t start[4], nread[4]; - char msg[512]; - -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status != NC_NOERR) { - sprintf(msg, "in getting varid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - for(i=0; i<4; i++) { - start[i] = 0; nread[i] = 1; - } - start[0] = *level; nread[1] = STRING; - status = nc_get_vara_text(ncid, varid, start, nread, data); - if(status != NC_NOERR) { - sprintf(msg, "in getting data of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s.", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - -}; /* get_string_data_level */ - - -/******************************************************************************* - void get_var_data(const char *file, const char *name, double *data) - get var data of field with "name" from "file". -******************************************************************************/ -void get_var_data(const char *file, const char *name, void *data) -{ - - int ncid, varid, status; - nc_type vartype; - char msg[512]; - -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status != NC_NOERR) { - sprintf(msg, "in getting varid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - - status = nc_inq_vartype(ncid, varid, &vartype); - if(status != NC_NOERR) { - sprintf(msg, "get_var_data: in getting vartype of of %s in file %s ", name, file); - handle_netcdf_error(msg, status); - } - - switch (vartype) { - case NC_DOUBLE:case NC_FLOAT: -#ifdef OVERLOAD_R4 - status = nc_get_var_float(ncid, varid, data); -#else - status = nc_get_var_double(ncid, varid, data); -#endif - break; - case NC_INT: - status = nc_get_var_int(ncid, varid, data); - break; - default: - sprintf(msg, "get_var_data: field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT or NC_INT", name, file); - error_handler(msg); - } - if(status != NC_NOERR) { - sprintf(msg, "in getting data of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s.", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - -}; /* get_var_data */ - -/******************************************************************************* - void get_var_data(const char *file, const char *name, double *data) - get var data of field with "name" from "file". -******************************************************************************/ -void get_var_data_region(const char *file, const char *name, const size_t *start, const size_t *nread, void *data) -{ - - int ncid, varid, status; - nc_type vartype; - char msg[512]; - -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "get_var_data_region: in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status != NC_NOERR) { - sprintf(msg, "in getting varid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - - status = nc_inq_vartype(ncid, varid, &vartype); - if(status != NC_NOERR) { - sprintf(msg, "get_var_data_region: in getting vartype of of %s in file %s ", name, file); - handle_netcdf_error(msg, status); - } - - switch (vartype) { - case NC_DOUBLE:case NC_FLOAT: -#ifdef OVERLOAD_R4 - status = nc_get_vara_float(ncid, varid, start, nread, data); -#else - status = nc_get_vara_double(ncid, varid, start, nread, data); -#endif - break; - case NC_INT: - status = nc_get_vara_int(ncid, varid, start, nread, data); - break; - default: - sprintf(msg, "get_var_data_region: field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT or NC_INT", name, file); - error_handler(msg); - } - - if(status != NC_NOERR) { - sprintf(msg, "get_var_data_region: in getting data of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "get_var_data_region: in closing file %s.", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - -}; /* get_var_data_region */ - -/****************************************************************************** - void get_var_text_att(const char *file, const char *name, const char *attname, char *att) - get text attribute of field 'name' from 'file -******************************************************************************/ -void get_var_text_att(const char *file, const char *name, const char *attname, char *att) -{ - int ncid, varid, status; - char msg[512]; - -#ifdef use_netCDF - status = nc_open(file, NC_NOWRITE, &ncid); - if(status != NC_NOERR) { - sprintf(msg, "in opening file %s", file); - handle_netcdf_error(msg, status); - } - status = nc_inq_varid(ncid, name, &varid); - if(status != NC_NOERR) { - sprintf(msg, "in getting varid of %s from file %s.", name, file); - handle_netcdf_error(msg, status); - } - status = nc_get_att_text(ncid, varid, attname, att); - if(status != NC_NOERR) { - sprintf(msg, "in getting attribute %s of %s from file %s.", attname, name, file); - handle_netcdf_error(msg, status); - } - status = nc_close(ncid); - if(status != NC_NOERR) { - sprintf(msg, "in closing file %s.", file); - handle_netcdf_error(msg, status); - } -#else - error_handler("read_mosaic: Add flag -Duse_netCDF when compiling"); -#endif - -}; /* get_var_text_att */ - -/*********************************************************************** - return number of overlapping cells. -***********************************************************************/ -#ifndef __AIX -int read_mosaic_xgrid_size_( const char *xgrid_file ) -{ - return read_mosaic_xgrid_size(xgrid_file); -} -#endif - -int read_mosaic_xgrid_size( const char *xgrid_file ) -{ - int ncells; - - ncells = get_dimlen(xgrid_file, "ncells"); - return ncells; -} - -#ifdef OVERLOAD_R4 -float get_global_area(void) -{ - float garea; -#else -double get_global_area(void) -{ - double garea; -#endif - garea = 4*M_PI*RADIUS*RADIUS; - - return garea; -}; - -#ifndef __AIX -#ifdef OVERLOAD_R4 -float get_global_area_(void) -{ - float garea; -#else -double get_global_area_(void) -{ - double garea; -#endif - garea = 4*M_PI*RADIUS*RADIUS; - - return garea; -}; -#endif - - -/****************************************************************************/ -#ifndef __AIX -#ifdef OVERLOAD_R4 -void read_mosaic_xgrid_order1_(const char *xgrid_file, int *i1, int *j1, int *i2, int *j2, float *area ) -#else -void read_mosaic_xgrid_order1_(const char *xgrid_file, int *i1, int *j1, int *i2, int *j2, double *area ) -#endif -{ - read_mosaic_xgrid_order1(xgrid_file, i1, j1, i2, j2, area); - -}; -#endif - -#ifdef OVERLOAD_R4 -void read_mosaic_xgrid_order1(const char *xgrid_file, int *i1, int *j1, int *i2, int *j2, float *area ) -#else -void read_mosaic_xgrid_order1(const char *xgrid_file, int *i1, int *j1, int *i2, int *j2, double *area ) -#endif -{ - int ncells, n; - int *tile1_cell, *tile2_cell; -#ifdef OVERLOAD_R4 - float garea; -#else - double garea; -#endif - - ncells = get_dimlen(xgrid_file, "ncells"); - - tile1_cell = (int *)malloc(ncells*2*sizeof(int)); - tile2_cell = (int *)malloc(ncells*2*sizeof(int)); - get_var_data(xgrid_file, "tile1_cell", tile1_cell); - get_var_data(xgrid_file, "tile2_cell", tile2_cell); - - get_var_data(xgrid_file, "xgrid_area", area); - - garea = 4*M_PI*RADIUS*RADIUS; - - for(n=0; n istart_in ) { - istart_out[0] = istart_in - 1; - iend_out[0] = iend_in - refine_ratio; - } - else { - istart_out[0] = istart_in - refine_ratio; - iend_out[0] = iend_in - 1; - } - - if( istart_out[0]%refine_ratio || iend_out[0]%refine_ratio) - error_handler("Error from read_mosaic: mismatch between refine_ratio and istart_in/iend_in"); - istart_out[0] /= refine_ratio; - iend_out[0] /= refine_ratio; - } - - return type; - -} - - -void read_mosaic_contact(const char *mosaic_file, int *tile1, int *tile2, int *istart1, int *iend1, - int *jstart1, int *jend1, int *istart2, int *iend2, int *jstart2, int *jend2) -{ - char contacts[STRING]; - char **gridtiles; -#define MAXVAR 40 - char pstring[MAXVAR][STRING]; - int ntiles, ncontacts, n, m, l, found; - unsigned int nstr; - const int x_refine = 2, y_refine = 2; - int i1_type, j1_type, i2_type, j2_type; - - ntiles = get_dimlen(mosaic_file, "ntiles"); - gridtiles = (char **)malloc(ntiles*sizeof(char *)); - for(n=0; n '9' || pstring[m][l] < '0' ) { - error_handler("Error from read_mosaic: some of the character in " - "contact_indices except token is not digit number"); - } - } - istart1[n] = atoi(pstring[0]); - iend1[n] = atoi(pstring[1]); - jstart1[n] = atoi(pstring[2]); - jend1[n] = atoi(pstring[3]); - istart2[n] = atoi(pstring[4]); - iend2[n] = atoi(pstring[5]); - jstart2[n] = atoi(pstring[6]); - jend2[n] = atoi(pstring[7]); - i1_type = transfer_to_model_index(istart1[n], iend1[n], istart1+n, iend1+n, x_refine); - j1_type = transfer_to_model_index(jstart1[n], jend1[n], jstart1+n, jend1+n, y_refine); - i2_type = transfer_to_model_index(istart2[n], iend2[n], istart2+n, iend2+n, x_refine); - j2_type = transfer_to_model_index(jstart2[n], jend2[n], jstart2+n, jend2+n, y_refine); - if( i1_type == 0 && j1_type == 0 ) - error_handler("Error from read_mosaic_contact:istart1==iend1 and jstart1==jend1"); - if( i2_type == 0 && j2_type == 0 ) - error_handler("Error from read_mosaic_contact:istart2==iend2 and jstart2==jend2"); - if( i1_type + j1_type != i2_type + j2_type ) - error_handler("Error from read_mosaic_contact: It is not a line or overlap contact"); - - } - - for(m=0; m - -#ifdef NO_QUAD_PRECISION - ! 64-bit precision (kind=8) - integer, parameter:: f_p = selected_real_kind(15) -#else - ! Higher precision (kind=16) for grid geometrical factors: - integer, parameter:: f_p = selected_real_kind(20) -#endif - - integer, parameter :: XDir=1 - integer, parameter :: YDir=2 - real, parameter :: pi = 3.14159265358979323846d0 - real, parameter :: radius = 6371.d03 - real, parameter :: big_number=1.d8 - real, parameter :: tiny_number=1.d-8 - - - real:: cd4 = 0.16 ! Dimensionless coeff for del-4 difussion (with FCT) - real:: peak_fac = 1.05 ! overshoot factor for the mountain peak - real:: max_slope = 0.15 ! max allowable terrain slope: 1 --> 45 deg - ! 0.15 for C768 or lower; 0.25 C1536; 0.3 for C3072 - integer :: n_del2_weak = 12 - - logical :: zs_filter = .true. - logical :: zero_ocean = .true. ! if true, no diffusive flux into water/ocean area - real :: stretch_fac = 1.0 - logical :: nested = .false. - integer :: grid_type = 0 ! gnomoic_ed - character(len=128) :: topo_file = "orog" - character(len=128) :: topo_field = "orog_filt" - character(len=128) :: mask_field = "slmsk" - character(len=128) :: grid_file = "atmos_mosaic.nc" - namelist /filter_topo_nml/ topo_file, topo_field, mask_field, grid_file, zero_ocean, & - zs_filter, cd4, n_del2_weak, peak_fac, max_slope, stretch_fac, nested, grid_type - - integer :: stdunit = 6 - integer :: ntiles = 0 - - real da_min - - real, allocatable :: oro(:,:,:), mask(:,:,:) - real, allocatable :: dx(:,:,:), dy(:,:,:) - real, allocatable :: dxa(:,:,:), dya(:,:,:) - real, allocatable :: dxc(:,:,:), dyc(:,:,:) - real, allocatable :: area(:,:,:) - real, allocatable :: sin_sg(:,:,:,:) - - integer :: is,ie,js,je,isd,ied,jsd,jed - integer,parameter :: ng = 3 - integer :: nx, ny, npx, npy, nx_nest, ny_nest, npx_nest, npy_nest, is_nest, ie_nest, js_nest, je_nest, isd_nest, ied_nest, jsd_nest, jed_nest - !--- read namelist - call read_namelist() - - !--- read the target grid. - call read_grid_file() - - !--- read the topography data - call read_topo_file - - !--- filter the data - call FV3_zs_filter(is,ie,js,je,isd,ied,jsd,jed,npx,npy,npx,ntiles,grid_type, & - stretch_fac, nested, area, dxa, dya, dx, dy, dxc, dyc, sin_sg, oro ) - - !--- write out the data - call write_topo_file(is,ie,js,je,ntiles,oro(is:ie,js:je,:) ) - -contains - - !##################################################################### - real function great_circle_dist( q1, q2, radius ) - real, intent(IN) :: q1(2), q2(2) - real, intent(IN), optional :: radius - - real (f_p):: p1(2), p2(2) - real (f_p):: beta - integer n - - do n=1,2 - p1(n) = q1(n) - p2(n) = q2(n) - enddo - - beta = asin( sqrt( sin((p1(2)-p2(2))/2.)**2 + cos(p1(2))*cos(p2(2))* & - sin((p1(1)-p2(1))/2.)**2 ) ) * 2. - - if ( present(radius) ) then - great_circle_dist = radius * beta - else - great_circle_dist = beta ! Returns the angle - endif - - end function great_circle_dist - - !#################################################################### - real function spherical_angle(p1, p2, p3) - - ! p3 - ! / - ! / - ! p1 ---> angle - ! \ - ! \ - ! p2 - - real p1(3), p2(3), p3(3) - - real (f_p):: e1(3), e2(3), e3(3) - real (f_p):: px, py, pz - real (f_p):: qx, qy, qz - real (f_p):: angle, ddd - integer n - - do n=1,3 - e1(n) = p1(n) - e2(n) = p2(n) - e3(n) = p3(n) - enddo - - !------------------------------------------------------------------- - ! Page 41, Silverman's book on Vector Algebra; spherical trigonmetry - !------------------------------------------------------------------- - ! Vector P: - px = e1(2)*e2(3) - e1(3)*e2(2) - py = e1(3)*e2(1) - e1(1)*e2(3) - pz = e1(1)*e2(2) - e1(2)*e2(1) - ! Vector Q: - qx = e1(2)*e3(3) - e1(3)*e3(2) - qy = e1(3)*e3(1) - e1(1)*e3(3) - qz = e1(1)*e3(2) - e1(2)*e3(1) - - ddd = (px*px+py*py+pz*pz)*(qx*qx+qy*qy+qz*qz) - - if ( ddd <= 0.0d0 ) then - angle = 0.d0 - else - ddd = (px*qx+py*qy+pz*qz) / sqrt(ddd) - if ( abs(ddd)>1.d0) then - angle = 2.d0*atan(1.0) ! 0.5*pi - !FIX (lmh) to correctly handle co-linear points (angle near pi or 0) - if (ddd < 0.d0) then - angle = 4.d0*atan(1.0d0) !should be pi - else - angle = 0.d0 - end if - else - angle = acos( ddd ) - endif - endif - - spherical_angle = angle - - end function spherical_angle - - - !#################################################################### - real function get_area(p1, p4, p2, p3, radius) - !----------------------------------------------- - real, intent(in), dimension(2):: p1, p2, p3, p4 - real, intent(in), optional:: radius - !----------------------------------------------- - real e1(3), e2(3), e3(3) - real ang1, ang2, ang3, ang4 - - ! S-W: 1 - call latlon2xyz(p1, e1) ! p1 - call latlon2xyz(p2, e2) ! p2 - call latlon2xyz(p4, e3) ! p4 - ang1 = spherical_angle(e1, e2, e3) - !---- - ! S-E: 2 - !---- - call latlon2xyz(p2, e1) - call latlon2xyz(p3, e2) - call latlon2xyz(p1, e3) - ang2 = spherical_angle(e1, e2, e3) - !---- - ! N-E: 3 - !---- - call latlon2xyz(p3, e1) - call latlon2xyz(p4, e2) - call latlon2xyz(p2, e3) - ang3 = spherical_angle(e1, e2, e3) - !---- - ! N-W: 4 - !---- - call latlon2xyz(p4, e1) - call latlon2xyz(p3, e2) - call latlon2xyz(p1, e3) - ang4 = spherical_angle(e1, e2, e3) - - if ( present(radius) ) then - get_area = (ang1 + ang2 + ang3 + ang4 - 2.*pi) * radius**2 - else - get_area = ang1 + ang2 + ang3 + ang4 - 2.*pi - endif - - end function get_area - - subroutine fill_AGRID_scalar_corners(q, ng, npx, npy, isd, jsd, fill) - integer, intent(in) :: ng, npx, npy, isd, jsd - integer, intent(in) :: fill - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: q - - integer :: i, j - - select case (FILL) - case (XDir) - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i ,:) !SW Corner - q(1-i ,npy-1+j,:) = q(1-j ,npy-1-i+1,:) !NW Corner - q(npx-1+i,1-j ,:) = q(npx-1+j,i ,:) !SE Corner - q(npx-1+i,npy-1+j,:) = q(npx-1+j,npy-1-i+1,:) !NE Corner - enddo - enddo - case (YDir) - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i ,1-j ,:) !SW Corner - q(1-j ,npy-1+i,:) = q(i ,npy-1+j,:) !NW Corner - q(npx-1+j,1-i ,:) = q(npx-1-i+1,1-j ,:) !SE Corner - q(npx-1+j,npy-1+i,:) = q(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - case default - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i ,1-j ,:) !SW Corner - q(1-j ,npy-1+i,:) = q(i ,npy-1+j,:) !NW Corner - q(npx-1+j,1-i ,:) = q(npx-1-i+1,1-j ,:) !SE Corner - q(npx-1+j,npy-1+i,:) = q(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - end select - - - end subroutine fill_AGRID_scalar_corners - - - !#################################################################### - subroutine fill_BGRID_scalar_corners(q, ng, npx, npy, isd, jsd, fill) - integer, intent(in) :: ng, npx, npy, isd, jsd - integer, intent(in) :: fill - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: q - - integer :: i, j - - select case (fill) - case (XDir) - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i+1 ,:) !SW Corner - q(1-i ,npy+j,:) = q(1-j ,npy-i ,:) !NW Corner - q(npx+i,1-j ,:) = q(npx+j,i+1 ,:) !SE Corner - q(npx+i,npy+j,:) = q(npx+j,npy-i ,:) !NE Corner - enddo - enddo - case (YDir) - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i+1 ,1-j ,:) !SW Corner - q(1-j ,npy+i,:) = q(i+1 ,npy+j ,:) !NW Corner - q(npx+j,1-i ,:) = q(npx-i,1-j ,:) !SE Corner - q(npx+j,npy+i,:) = q(npx-i,npy+j ,:) !NE Corner - enddo - enddo - case default - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i+1 ,:) !SW Corner - q(1-i ,npy+j,:) = q(1-j ,npy-i ,:) !NW Corner - q(npx+i,1-j ,:) = q(npx+j,i+1 ,:) !SE Corner - q(npx+i,npy+j,:) = q(npx+j,npy-i ,:) !NE Corner - enddo - enddo - end select - - - - end subroutine fill_BGRID_scalar_corners - - !#################################################################### - subroutine fill_AGRID_xy_corners(x, y, ng, npx, npy, isd, jsd) - integer, intent(in) :: ng, npx, npy, isd, jsd - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: x - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: y - integer :: i,j - - do j=1,ng - do i=1,ng - x(1-i ,1-j ,:) = y(1-j ,i ,:) !SW Corner - x(1-i ,npy-1+j,:) = y(1-j ,npy-1-i+1,:) !NW Corner - x(npx-1+i,1-j ,:) = y(npx-1+j,i ,:) !SE Corner - x(npx-1+i,npy-1+j,:) = y(npx-1+j,npy-1-i+1,:) !NE Corner - - y(1-j ,1-i ,:) = x(i ,1-j ,:) !SW Corner - y(1-j ,npy-1+i,:) = x(i ,npy-1+j,:) !NW Corner - y(npx-1+j,1-i ,:) = x(npx-1-i+1,1-j ,:) !SE Corner - y(npx-1+j,npy-1+i,:) = x(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - - end subroutine fill_AGRID_xy_corners - - - - !#################################################################### - subroutine fill_DGRID_xy_corners(x, y, ng, npx, npy, isd, jsd) - integer, intent(in) :: ng, npx, npy, isd, jsd - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: x - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: y - integer :: i,j - - do j=1,ng - do i=1,ng - x(1-i ,1-j , :) = y(1-j ,i , :) !SW Corner - x(1-i ,npy+j , :) = y(1-j ,npy-i, :) !NW Corner - x(npx-1+i,1-j , :) = y(npx+j,i , :) !SE Corner - x(npx-1+i,npy+j , :) = y(npx+j,npy-i, :) !NE Corner - y(1-i ,1-j , :) = x(j ,1-i , :) !SW Corner - y(1-i ,npy-1+j, :) = x(j ,npy+i, :) !NW Corner - y(npx+i ,1-j , :) = x(npx-j,1-i , :) !SE Corner - y(npx+i ,npy-1+j, :) = x(npx-j,npy+i, :) !NE Corner - enddo - enddo - - end subroutine fill_DGRID_xy_corners - - !############################################################### - subroutine mid_pt_sphere(p1, p2, pm) - real, intent(IN) :: p1(2), p2(2) - real, intent(OUT) :: pm(2) - !------------------------------------------ - real :: e1(3), e2(3), e3(3) - - call latlon2xyz(p1, e1) - call latlon2xyz(p2, e2) - call mid_pt3_cart(e1, e2, e3) - call cart_to_latlon(1, e3, pm(1), pm(2)) - - end subroutine mid_pt_sphere - - - !##################################################################### - subroutine mid_pt3_cart(p1, p2, e) - real, intent(IN) :: p1(3), p2(3) - real, intent(OUT) :: e(3) - ! - real (f_p):: q1(3), q2(3) - real (f_p):: dd, e1, e2, e3 - integer k - - do k=1,3 - q1(k) = p1(k) - q2(k) = p2(k) - enddo - - e1 = q1(1) + q2(1) - e2 = q1(2) + q2(2) - e3 = q1(3) + q2(3) - - dd = sqrt( e1**2 + e2**2 + e3**2 ) - e1 = e1 / dd - e2 = e2 / dd - e3 = e3 / dd - - e(1) = e1 - e(2) = e2 - e(3) = e3 - - end subroutine mid_pt3_cart - - subroutine latlon2xyz(p, e) - ! - ! Routine to map (lon, lat) to (x,y,z) - ! - real, intent(in) :: p(2) - real, intent(out):: e(3) - - integer n - real (f_p):: q(2) - real (f_p):: e1, e2, e3 - - do n=1,2 - q(n) = p(n) - enddo - - e1 = cos(q(2)) * cos(q(1)) - e2 = cos(q(2)) * sin(q(1)) - e3 = sin(q(2)) - !----------------------------------- - ! Truncate to the desired precision: - !----------------------------------- - e(1) = e1 - e(2) = e2 - e(3) = e3 - - end subroutine latlon2xyz - - - - subroutine cart_to_latlon(np, q, xs, ys) - ! vector version of cart_to_latlon1 - integer, intent(in):: np - real, intent(inout):: q(3,np) - real, intent(inout):: xs(np), ys(np) - ! local - real, parameter:: esl=1.d-10 - real (f_p):: p(3) - real (f_p):: dist, lat, lon - integer i,k - - do i=1,np - do k=1,3 - p(k) = q(k,i) - enddo - dist = sqrt(p(1)**2 + p(2)**2 + p(3)**2) - do k=1,3 - p(k) = p(k) / dist - enddo - - if ( (abs(p(1))+abs(p(2))) < esl ) then - lon = real(0.,kind=f_p) - else - lon = atan2( p(2), p(1) ) ! range [-pi,pi] - endif - - if ( lon < 0.) lon = real(2.,kind=f_p)*pi + lon - ! RIGHT_HAND system: - lat = asin(p(3)) - - xs(i) = lon - ys(i) = lat - ! q Normalized: - do k=1,3 - q(k,i) = p(k) - enddo - enddo - - end subroutine cart_to_latlon - - !##################################################################### - real function cos_angle(p1, p2, p3) - ! As spherical_angle, but returns the cos(angle) - ! p3 - ! ^ - ! | - ! | - ! p1 ---> p2 - ! - real, intent(in):: p1(3), p2(3), p3(3) - - real (f_p):: e1(3), e2(3), e3(3) - real (f_p):: px, py, pz - real (f_p):: qx, qy, qz - real (f_p):: angle, ddd - integer n - - do n=1,3 - e1(n) = p1(n) - e2(n) = p2(n) - e3(n) = p3(n) - enddo - - !------------------------------------------------------------------- - ! Page 41, Silverman's book on Vector Algebra; spherical trigonmetry - !------------------------------------------------------------------- - ! Vector P:= e1 X e2 - px = e1(2)*e2(3) - e1(3)*e2(2) - py = e1(3)*e2(1) - e1(1)*e2(3) - pz = e1(1)*e2(2) - e1(2)*e2(1) - - ! Vector Q: e1 X e3 - qx = e1(2)*e3(3) - e1(3)*e3(2) - qy = e1(3)*e3(1) - e1(1)*e3(3) - qz = e1(1)*e3(2) - e1(2)*e3(1) - - ! ddd = sqrt[ (P*P) (Q*Q) ] - ddd = sqrt( (px**2+py**2+pz**2)*(qx**2+qy**2+qz**2) ) - if ( ddd > 0.d0 ) then - angle = (px*qx+py*qy+pz*qz) / ddd - else - angle = 1.d0 - endif - cos_angle = angle - - end function cos_angle - - - !##################################################################### - subroutine cell_center2(q1, q2, q3, q4, e2) - real, intent(in ) :: q1(2), q2(2), q3(2), q4(2) - real, intent(out) :: e2(2) - ! Local - real p1(3), p2(3), p3(3), p4(3) - real ec(3) - real dd - integer k - - call latlon2xyz(q1, p1) - call latlon2xyz(q2, p2) - call latlon2xyz(q3, p3) - call latlon2xyz(q4, p4) - - do k=1,3 - ec(k) = p1(k) + p2(k) + p3(k) + p4(k) - enddo - dd = sqrt( ec(1)**2 + ec(2)**2 + ec(3)**2 ) - - do k=1,3 - ec(k) = ec(k) / dd - enddo - - call cart_to_latlon(1, ec, e2(1), e2(2)) - - end subroutine cell_center2 - - - !##################################################################### - subroutine read_grid_file() - - integer :: fsize=65536 - integer :: status, ncid, id_dim, id_var, ncid2, t - integer :: ni, nj, i, j, tw, te, ip - real :: g1(2), g2(2), g3(2), g4(2), g5(2) - real :: p1(3), p3(3) - real :: p_lL(2), p_uL(2), p_lR(2), p_uR(2) - character(len=256) :: tile_file - real, allocatable, dimension(:,:) :: tmpvar, geolon_c_nest, geolat_c_nest - real, allocatable, dimension(:,:,:) :: geolon_c, geolat_c - real, allocatable, dimension(:,:,:) :: geolon_t, geolat_t, cos_sg, grid3 - integer :: start(4), nread(4) - - print*, "Read the grid from file "//trim(grid_file) - - status=NF__OPEN(trim(grid_file),NF_NOWRITE,fsize,ncid) - call handle_err(status, 'Open file '//trim(grid_file) ) - - status=nf_inq_dimid(ncid, 'ntiles', id_dim) - call handle_err(status, 'inquire dimension ntiles from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid,id_dim,ntiles) - call handle_err(status, 'inquire dimension ntiles length from file '//trim(grid_file) ) - - !--- currently only support cubic sphere grid. - if( ntiles .NE. 6 .and. ntiles .NE. 7) call handle_err(-1, "ntiles should be 6 or 7 for file "//trim(grid_file) ) - if( ntiles == 7 ) print*, " This grid is a nested grid " - - !--- loop through ntiles and make sure the grid size match between all the tiles. - - start(:) = 1 - nread(:) = 1 - - do t = 1, ntiles - start(2) = t; nread(1) = 255 - status = nf_inq_varid(ncid, 'gridfiles', id_var) - call handle_err(status, 'inquire varid of gridfiles from file '//trim(grid_file) ) - status = nf_get_vara_text(ncid, id_var, start, nread, tile_file ) - call handle_err(status, 'get value of gridfiles from file '//trim(grid_file) ) - - status=NF__OPEN(trim(tile_file),NF_NOWRITE,fsize,ncid2) - call handle_err(status, 'Open file '//trim(tile_file) ) - - status=nf_inq_dimid(ncid2, 'nx', id_dim) - call handle_err(status, 'inquire dimension nx from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid2,id_dim,ni) - call handle_err(status, 'inquire dimension nx length from file '//trim(grid_file) ) - status=nf_inq_dimid(ncid2, 'ny', id_dim) - call handle_err(status, 'inquire dimension ny from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid2,id_dim,nj) - call handle_err(status, 'inquire dimension ny length '//'from file '//trim(grid_file) ) - if( t == 1 ) then - ! ni and nj must be even - if(mod(ni,2) .NE. 0 .or. mod(nj,2) .NE. 0) & - call handle_err(-1, "read_grid_file: ni and nj must be even") - - nx = ni/2 - ny = nj/2 - npx = nx + 1 - npy = ny + 1 - is = 1 ; ie = nx - js = 1 ; je = ny - isd=is-ng; ied=ie+ng - jsd=js-ng; jed=je+ng - - allocate(tmpvar(ni+1,nj+1)) - allocate(geolon_c(isd:ied+1,jsd:jed+1,6)) - allocate(geolat_c(isd:ied+1,jsd:jed+1,6)) - else if ( t == 7 ) then ! nested grid - if(mod(ni,2) .NE. 0 .or. mod(nj,2) .NE. 0) & - call handle_err(-1, "read_grid_file: ni and nj must be even") - - nx_nest = ni/2 - ny_nest = nj/2 - npx_nest = nx_nest + 1 - npy_nest = ny_nest + 1 - is_nest = 1 ; ie_nest = nx - js_nest = 1 ; je_nest = ny - isd_nest=is_nest-ng; ied_nest=ie_nest+ng - jsd_nest=js_nest-ng; jed_nest=je_nest+ng - deallocate(tmpvar) - allocate(tmpvar(ni+1,nj+1)) - allocate(geolon_c_nest(isd:ied+1,jsd:jed+1)) - allocate(geolat_c_nest(isd:ied+1,jsd:jed+1)) - else - !-- make sure ni and nj match between tiles - if(ni .ne. nx*2 .OR. nj .ne. ny*2) & - call handle_err(-1, "mismatch of grid size between tiles") - endif - - status=nf_inq_varid(ncid2, 'x', id_var) - call handle_err(status, 'inquire varid of x from file '//trim(grid_file) ) - status=nf_get_var_double(ncid2, id_var, tmpvar) - call handle_err(status, 'inquire data of x from file '//trim(grid_file) ) - if(t==7) then - geolon_c_nest(1:npx,1:npy) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - else - geolon_c(1:npx,1:npy,t) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - endif - - status=nf_inq_varid(ncid2, 'y', id_var) - call handle_err(status, 'inquire varid of y from file '//trim(grid_file) ) - status=nf_get_var_double(ncid2, id_var, tmpvar) - call handle_err(status, 'inquire data of y from file '//trim(grid_file) ) - if(t==7) then - geolat_c_nest(1:npx,1:npy) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - else - geolat_c(1:npx,1:npy,t) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - endif - status = nf_close(ncid2) - call handle_err(status, "close file "//trim(tile_file)) - enddo - - deallocate(tmpvar) - - status = nf_close(ncid) - call handle_err(status, "close file "//trim(grid_file)) - - is = 1 ; ie = nx - js = 1 ; je = ny - isd=is-ng; ied=ie+ng - jsd=js-ng; jed=je+ng - - call fill_cubic_grid_halo(geolon_c, geolon_c, ng, 1, 1, 1, 1) - call fill_cubic_grid_halo(geolat_c, geolat_c, ng, 1, 1, 1, 1) - if(.not. nested) call fill_bgrid_scalar_corners(geolon_c, ng, npx, npy, isd, jsd, XDir) - if(.not. nested) call fill_bgrid_scalar_corners(geolat_c, ng, npx, npy, isd, jsd, YDir) - - !--- compute grid cell center - allocate(geolon_t(isd:ied,jsd:jed,ntiles), geolat_t(isd:ied,jsd:jed,ntiles)) - - geolon_t(:,:,:) = -1.e25 - geolat_t(:,:,:) = -1.e25 - - do t = 1, ntiles - do j=js,je ; do i=is,ie - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i+1,j,t); g2(2) = geolat_c(i+1,j,t) - g3(1) = geolon_c(i,j+1,t); g3(2) = geolat_c(i,j+1,t) - g4(1) = geolon_c(i+1,j+1,t); g4(2) = geolat_c(i+1,j+1,t) - call cell_center2(g1, g2, g3, g4, g5 ) - geolon_t(i,j,t) = g5(1) - geolat_t(i,j,t) = g5(2) - enddo ; enddo - enddo - - - call fill_cubic_grid_halo(geolon_t, geolon_t, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(geolat_t, geolat_t, ng, 0, 0, 1, 1) - - if (.not. nested) call fill_AGRID_scalar_corners(geolon_t, ng, npx, npy, isd, jsd, XDir) - if (.not. nested) call fill_AGRID_scalar_corners(geolat_t, ng, npx, npy, isd, jsd, YDir) - - !--- compute dx, dy - allocate(dx(isd:ied,jsd:jed+1,ntiles)) - allocate(dy(isd:ied+1,jsd:jed,ntiles)) - do t = 1, ntiles - do j = js, je+1 ; do i = is, ie - g1(1) = geolon_c(i ,j,t) - g1(2) = geolat_c(i ,j,t) - g2(1) = geolon_c(i+1,j,t) - g2(2) = geolat_c(i+1,j,t) - dx(i,j,t) = great_circle_dist( g2, g1, radius ) - enddo ; enddo - enddo - if( stretch_fac .NE. 1 ) then - do t = 1, ntiles - do j = js, je - do i = is, ie+1 - g1(1) = geolon_c(i,j, t) - g1(2) = geolat_c(i,j, t) - g2(1) = geolon_c(i,j+1,t) - g2(2) = geolat_c(i,j+1,t) - dy(i,j,t) = great_circle_dist( g2, g1, radius ) - enddo - enddo - enddo - else - do t = 1, ntiles - do j = js, je - do i = is, ie+1 - dy(i,j,t) = dx(j,i,t) - enddo - enddo - enddo - endif - - !--- make sure it is consitent between tiles. The following maybe not necessary. - do t = 1, ntiles - if(mod(t,2) ==0) then ! tile 2 4 6 - tw = t - 1 - te = t + 2 - if(te > ntiles) te = te - ntiles - dy(is, js:je,t) = dy(ie+1,js:je,tw) ! west boundary - dy(ie+1, js:je, t) = dx(ie:is:-1,js, te) ! east boundary - else - tw = t - 2 - if( tw <= 0) tw = tw + ntiles - te = t + 1 - dy(is, js:je, t) = dx(ie:is:-1, je+1, tw) ! west boundary - dy(ie+1, js:je,t) = dy(1,js:je,te) ! east boundary - endif - enddo - - call fill_cubic_grid_halo(dx, dy, ng, 0, 1, 1, 1) - call fill_cubic_grid_halo(dy, dx, ng, 1, 0, 1, 1) - - if (.not. nested) call fill_dgrid_xy_corners(dx, dy, ng, npx, npy, isd, jsd) - - !--- compute dxa and dya ----- - allocate(dxa(isd:ied,jsd:jed,ntiles)) - allocate(dya(isd:ied,jsd:jed,ntiles)) - do t = 1, ntiles - do j=js,je ; do i=is,ie - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i,j+1,t); g2(2) = geolat_c(i,j+1,t) - call mid_pt_sphere(g1, g2, g3) - g1(1) = geolon_c(i+1,j,t); g1(2) = geolat_c(i+1,j,t) - g2(1) = geolon_c(i+1,j+1,t); g2(2) = geolat_c(i+1,j+1,t) - call mid_pt_sphere(g1, g2, g4) - dxa(i,j,t) = great_circle_dist( g4, g3, radius ) - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i+1,j,t); g2(2) = geolat_c(i+1,j,t) - call mid_pt_sphere(g1, g2, g3) - g1(1) = geolon_c(i,j+1,t); g1(2) = geolat_c(i,j+1,t) - g2(1) = geolon_c(i+1,j+1,t); g2(2) = geolat_c(i+1,j+1,t) - call mid_pt_sphere(g1, g2, g4) - dya(i,j,t) = great_circle_dist( g4, g3, radius ) - enddo; enddo - enddo - - call fill_cubic_grid_halo(dxa, dya, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(dya, dxa, ng, 0, 0, 1, 1) - - if (.not. nested) call fill_AGRID_xy_corners(dxa, dya, ng, npx, npy, isd, jsd) - - !--- compute dxc and dyc - allocate(dxc(isd:ied+1,jsd:jed,ntiles)) - allocate(dyc(isd:ied,jsd:jed+1,ntiles)) - do t = 1, ntiles - do j=jsd,jed - do i=isd+1,ied - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i-1,j,t); g2(2) = geolat_c(i-1,j,t) - dxc(i,j,t) = great_circle_dist(g1, g2, radius) - enddo - dxc(isd,j,t) = dxc(isd+1,j,t) - dxc(ied+1,j,t) = dxc(ied,j,t) - enddo - - do j=jsd+1,jed - do i=isd,ied - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i,j-1,t); g2(2) = geolat_c(i,j-1,t) - dyc(i,j,t) = great_circle_dist(g1, g2, radius) - enddo - enddo - do i=isd,ied - dyc(i,jsd,t) = dyc(i,jsd+1,t) - dyc(i,jed+1,t) = dyc(i,jed,t) - end do - enddo - - !--- compute area - allocate(area(isd:ied,jsd:jed,ntiles)) - do t = 1, ntiles - do j=js,je - do i=is,ie - p_lL(1) = geolon_c(i ,j ,t) ; p_lL(2) = geolat_c(i ,j ,t) - p_uL(1) = geolon_c(i ,j+1,t) ; p_uL(2) = geolat_c(i ,j+1,t) - p_lR(1) = geolon_c(i+1,j ,t) ; p_lR(2) = geolat_c(i+1,j ,t) - p_uR(1) = geolon_c(i+1,j+1,t) ; p_uR(2) = geolat_c(i+1,j+1,t) - - ! Spherical Excess Formula - area(i,j,t) = get_area(p_lL, p_uL, p_lR, p_uR, radius) - enddo - enddo - enddo - - call fill_cubic_grid_halo(area, area, ng, 0, 0, 1, 1) - - da_min = minval(area(is:ie,js:je,:)) - - !--- compute sin_sg - allocate(sin_sg(4,isd:ied,jsd:jed,ntiles)) - allocate(cos_sg(4,isd:ied,jsd:jed)) - allocate(grid3(3, npx, npy)) - cos_sg(:,:,:) = big_number - sin_sg(:,:,:,:) = tiny_number - - ! 9---4---8 - ! | | - ! 1 5 3 - ! | | - ! 6---2---7 - do t = 1, ntiles - do j=js,je+1 - do i = is,ie+1 - g1(1) = geolon_c(i,j,t) - g1(2) = geolat_c(i,j,t) - call latlon2xyz(g1, grid3(:,i,j)) - enddo - enddo - do j=js,je - do i=is,ie - g1(1) = geolon_t(i,j,t); g1(2) = geolat_t(i,j,t) - call latlon2xyz(g1, p3) ! righ-hand system consistent with grid3 - call mid_pt3_cart(grid3(1,i,j), grid3(1,i,j+1), p1) - cos_sg(1,i,j) = cos_angle( p1, p3, grid3(1,i,j+1) ) - call mid_pt3_cart(grid3(1,i,j), grid3(1,i+1,j), p1) - cos_sg(2,i,j) = cos_angle( p1, grid3(1,i+1,j), p3 ) - call mid_pt3_cart(grid3(1,i+1,j), grid3(1,i+1,j+1), p1) - cos_sg(3,i,j) = cos_angle( p1, p3, grid3(1,i+1,j) ) - call mid_pt3_cart(grid3(1,i,j+1), grid3(1,i+1,j+1), p1) - cos_sg(4,i,j) = cos_angle( p1, grid3(1,i,j+1), p3 ) - enddo - enddo - - do ip=1,4 - do j=js,je - do i=is,ie - sin_sg(ip,i,j,t) = min(1.0, sqrt( max(0., 1.-cos_sg(ip,i,j)**2) ) ) - enddo - enddo - enddo - enddo - - do ip=1,4 - call fill_cubic_grid_halo(sin_sg(ip,:,:,:), sin_sg(ip,:,:,:), ng, 0, 0, 1, 1) - enddo - - deallocate(cos_sg, grid3, geolon_c, geolat_c, geolon_t, geolat_t) - - - end subroutine read_grid_file - - - !##################################################################### - subroutine read_topo_file - - integer :: fsize=65536 - integer :: status, ncid, id_var, ndim, dimsiz - character(len=256) :: tile_file - character(len=32) :: text - integer :: len, t, dims(2) - real :: tmp(is:ie,js:je) - - allocate(oro(isd:ied,jsd:jed,ntiles)) - allocate(mask(isd:ied,jsd:jed,ntiles)) - oro = -big_number - mask = 0 - - !--- make sure topo_file suffix is not ".nc" - len = len_trim(topo_file) - if( index(topo_file, '.nc', back=.true.) == len-2) then - call handle_err(-1, "remove .nc from namelist topo_file="//trim(topo_file) ) - endif - - !--- loop through each tile file to get the orography - do t = 1, ntiles - write(text, '(i1.1)' ) t - tile_file = trim(topo_file)//'.tile'//trim(text)//'.nc' - status=NF__OPEN(trim(tile_file),NF_NOWRITE,fsize,ncid) - call handle_err(status, 'Open file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, topo_field, id_var) - call handle_err(status, 'inquire varid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_inq_varndims(ncid, id_var, ndim) - call handle_err(status, 'inquire ndims of '//trim(topo_field)//' from file '//trim(tile_file) ) - - if(ndim .NE. 2) call handle_err(-1, 'ndims of '//trim(topo_field)//' from file '// & - trim(tile_file)//' should be 2') - - ! get data dimension and should match grid file size - status = nf_inq_vardimid(ncid, id_var,dims); - call handle_err(status, 'inquire dimid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_inq_dimlen(ncid, dims(1), dimsiz) - call handle_err(status, 'inquire first dimension length of '//trim(topo_field)//' from file '//trim(tile_file) ) - if(dimsiz .NE. nx) call handle_err(-1, "mismatch of lon dimension size between "// & - trim(grid_file)//' and '//trim(tile_file) ) - - status = nf_inq_dimlen(ncid, dims(2), dimsiz) - call handle_err(status, 'inquire second dimension length of '//trim(topo_field)//' from file '//trim(tile_file) ) - - if(dimsiz .NE. ny) call handle_err(-1, "mismatch of lat dimension size between "// & - trim(grid_file)//' and '//trim(tile_file) ) - - status = nf_get_var_double(ncid, id_var, oro(is:ie,js:je,t)) - call handle_err(status, 'get the value of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, mask_field, id_var) - call handle_err(status, 'inquire varid of '//trim(mask_field)//' from file '//trim(tile_file) ) - - status = nf_get_var_double(ncid, id_var, tmp) - call handle_err(status, 'get the value of '//trim(mask_field)//' from file '//trim(tile_file) ) - - mask(is:ie,js:je,t) = tmp - - status = nf_close(ncid) - call handle_err(status, "close file "//trim(tile_file)) - enddo - - !--- update halo - call fill_cubic_grid_halo(oro, oro, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(mask, mask, ng, 0, 0, 1, 1) - - - - end subroutine read_topo_file - - !############################################################################## - !--- replace the topo_field - subroutine write_topo_file(is,ie,js,je,ntiles,q) - integer, intent(in) :: is,ie,js,je,ntiles - real, intent(in) :: q(is:ie,js:je,ntiles) - - integer :: fsize=65536 - integer :: t, status, ncid, id_var - character(len=256) :: tile_file - character(len=3) :: text - !--- loop through each tile file to update topo_field - - do t = 1, ntiles - write(text, '(i1.1)' ) t - tile_file = trim(topo_file)//'.tile'//trim(text)//'.nc' - status=NF__OPEN(trim(tile_file),NF_WRITE,fsize,ncid) - call handle_err(status, 'write_topo_file: Open file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, topo_field, id_var) - call handle_err(status, 'write_topo_file:inquire varid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_put_var_double(ncid, id_var, q(:,:,t)) - call handle_err(status, 'write_topo_file: put the value of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_close(ncid) - call handle_err(status, "write_topo_file: close file "//trim(tile_file)) - enddo - - - end subroutine write_topo_file - - !############################################################################## - ! this routine fill the halo points for the cubic grid. ioff and joff is used to distinguish - ! T, C, E, or N-cell - subroutine fill_cubic_grid_halo(data, data2, halo, ioff, joff, sign1, sign2) - integer, intent(in) :: halo - real, dimension(1-halo:,1-halo:,:), intent(inout) :: data, data2 - integer, intent(in) :: ioff, joff, sign1, sign2 - integer :: lw, le, ls, ln - integer :: i, tile - - ntiles = size(data,3) - - do tile = 1, ntiles - if(mod(tile,2) == 0) then ! tile 2, 4, 6 - lw = tile - 1; le = tile + 2; ls = tile - 2; ln = tile + 1 - if(le > 6 ) le = le - 6 - if(ls < 1 ) ls = ls + 6 - if(ln > 6 ) ln = ln - 6 - data(1-halo:0, 1:ny+joff, tile) = data(nx-halo+1:nx, 1:ny+joff, lw) ! west - do i = 1, halo - data(nx+i+ioff, 1:ny+joff, tile) = sign1*data2(nx+joff:1:-1, i+ioff, le) ! east - end do - do i = 1, halo - data(1:nx+ioff, 1-i, tile) = sign2*data2(nx-i+1, ny+ioff:1:-1, ls) ! south - end do - data(1:nx+ioff, ny+1+joff:ny+halo+joff, tile) = data(1:nx+ioff, 1+joff:halo+joff, ln) ! north - else ! tile 1, 3, 5 - lw = tile - 2; le = tile + 1; ls = tile - 1; ln = tile + 2 - if(lw < 1 ) lw = lw + 6 - if(ls < 1 ) ls = ls + 6 - if(ln > 6 ) ln = ln - 6 - do i = 1, halo - data(1-i, 1:ny+joff, tile) = sign1*data2(nx+joff:1:-1, ny-i+1, lw) ! west - end do - data(nx+1+ioff:nx+halo+ioff, 1:ny+joff, tile) = data(1+ioff:halo+ioff, 1:ny+joff, le) ! east - data(1:nx+ioff, 1-halo:0, tile) = data(1:nx+ioff, ny-halo+1:ny, ls) ! south - do i = 1, halo - data(1:nx+ioff, ny+i+joff, tile) = sign2*data2(i+joff, ny+ioff:1:-1, ln) ! north - end do - end if - enddo - - end subroutine fill_cubic_grid_halo - - !##################################################################### - subroutine FV3_zs_filter (is, ie, js, je, isd, ied, jsd, jed, npx, npy, npx_global, ntiles, & - grid_type, stretch_fac, nested, area, dxa, dya, dx, dy, dxc, dyc, & - sin_sg, phis ) - integer, intent(in) :: is, ie, js, je, ntiles - integer, intent(in) :: isd, ied, jsd, jed, npx, npy, npx_global, grid_type - real, intent(in), dimension(isd:ied,jsd:jed, ntiles)::area, dxa, dya - real, intent(in), dimension(isd:ied, jsd:jed+1, ntiles):: dx, dyc - real, intent(in), dimension(isd:ied+1,jsd:jed, ntiles):: dy, dxc - - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed,ntiles) - real, intent(IN):: stretch_fac - logical, intent(IN) :: nested - real, intent(inout):: phis(isd:ied,jsd,jed,ntiles) - real:: cd2 - integer mdim, n_del2, n_del4 - - mdim = nint( real(npx_global) * min(10., stretch_fac) ) - - ! Del-2: high resolution only - if ( npx_global<=97 ) then - n_del2 = 0 - elseif ( npx_global<=193 ) then - n_del2 = 1 - else - n_del2 = 2 - endif - cd2 = 0.16*da_min - ! Applying strong 2-delta-filter: - if ( n_del2 > 0 ) & - call two_delta_filter(is,ie,js,je,isd,ied,jsd,jed, npx, npy, ntiles, phis, area, & - dx, dy, dxa, dya, dxc, dyc, sin_sg, cd2, zero_ocean, & - .true.,0, grid_type, mask, nested, n_del2) - - ! MFCT Del-4: - if ( mdim<=193 ) then - n_del4 = 1 - elseif ( mdim<=1537 ) then - n_del4 = 2 - else - n_del4 = 3 - endif - call del4_cubed_sphere(is,ie,js,je,isd,ied,jsd,jed,npx, npy, ntiles, & - phis, area, dx, dy, dxc, dyc, sin_sg, n_del4, zero_ocean, mask, nested) - ! Applying weak 2-delta-filter: - cd2 = 0.12*da_min - call two_delta_filter(is,ie,js,je,isd,ied,jsd,jed,npx, npy, ntiles, & - phis, area, dx, dy, dxa, dya, dxc, dyc, sin_sg, cd2, zero_ocean, & - .true., 1, grid_type, mask, nested, n_del2_weak) - - end subroutine FV3_zs_filter - - !##################################################################### - subroutine two_delta_filter(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles, & - q, area, dx, dy, dxa, dya, dxc, dyc, sin_sg, cd, zero_ocean, & - check_slope, filter_type, grid_type, mask, nested, ntmax) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in) :: npx, npy, grid_type - integer, intent(in) :: ntmax, ntiles - integer, intent(in) :: filter_type ! 0: strong, 1: weak - real, intent(in) :: cd - ! INPUT arrays - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxa(isd:ied, jsd:jed, ntiles) - real, intent(in):: dya(isd:ied, jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - logical, intent(in):: zero_ocean, check_slope - logical, intent(in):: nested - ! OUTPUT arrays - real, intent(inout):: q(isd:ied, jsd:jed,ntiles) - ! Local: - real, parameter:: p1 = 7./12. - real, parameter:: p2 = -1./12. - real, parameter:: c1 = -2./14. - real, parameter:: c2 = 11./14. - real, parameter:: c3 = 5./14. - - real:: ddx(is:ie+1,js:je), ddy(is:ie,js:je+1) - logical:: extm(is-1:ie+1) - logical:: ext2(is:ie,js-1:je+1) - real:: a1(is-1:ie+2) - real:: a2(is:ie,js-1:je+2) - real:: a3(is:ie,js:je,ntiles) - real:: smax, smin, m_slope, fac - integer:: i,j, nt, t - integer:: is1, ie2, js1, je2 - - - if ( .not. nested .and. grid_type<3 ) then - is1 = max(3,is-1); ie2 = min(npx-2,ie+2) - js1 = max(3,js-1); je2 = min(npy-2,je+2) - else - is1 = is-1; ie2 = ie+2 - js1 = js-1; je2 = je+2 - end if - - if ( check_slope ) then - m_slope = max_slope - else - m_slope = 10. - endif - - - do nt=1, ntmax - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - ! Check slope - if ( nt==1 .and. check_slope ) then - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = (q(i,j,t) - q(i-1,j,t))/dxc(i,j,t) - ddx(i,j) = abs(ddx(i,j)) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j,t) - q(i,j-1,t))/dyc(i,j,t) - ddy(i,j) = abs(ddy(i,j)) - enddo - enddo - do j=js,je - do i=is,ie - a3(i,j,t) = max( ddx(i,j), ddx(i+1,j), ddy(i,j), ddy(i,j+1) ) - enddo - enddo - enddo - smax = maxval(a3(is:ie,js:je,:)) - write(*,*) 'Before filter: Max_slope=', smax - endif - - - ! First step: average the corners: - if ( .not. nested .and. nt==1 ) then - do t = 1, ntiles - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx,je,t) = q(ie,je,t) - q(ie,npy,t) = q(ie,je,t) - enddo - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - endif - - do t = 1, ntiles - ! x-diffusive flux: - do j=js,je - - do i=is1, ie2 - a1(i) = p1*(q(i-1,j,t)+q(i,j,t)) + p2*(q(i-2,j,t)+q(i+1,j,t)) - enddo - - if ( .not. nested .and. grid_type<3 ) then - a1(0) = c1*q(-2,j,t) + c2*q(-1,j,t) + c3*q(0,j,t) - a1(1) = 0.5*(((2.*dxa(0,j,t)+dxa(-1,j,t))*q(0,j,t)-dxa(0,j,t)*q(-1,j,t))/(dxa(-1,j,t)+dxa(0,j,t)) & - + ((2.*dxa(1,j,t)+dxa( 2,j,t))*q(1,j,t)-dxa(1,j,t)*q( 2,j,t))/(dxa(1, j,t)+dxa(2,j,t))) - a1(2) = c3*q(1,j,t) + c2*q(2,j,t) +c1*q(3,j,t) - - a1(npx-1) = c1*q(npx-3,j,t) + c2*q(npx-2,j,t) + c3*q(npx-1,j,t) - a1(npx) = 0.5*(((2.*dxa(npx-1,j,t)+dxa(npx-2,j,t))*q(npx-1,j,t)-dxa(npx-1,j,t)*q(npx-2,j,t)) & - /(dxa(npx-2,j,t)+dxa(npx-1,j,t)) & - + ((2.*dxa(npx, j,t)+dxa(npx+1,j,t))*q(npx, j,t)-dxa(npx, j,t)*q(npx+1,j,t))/ & - (dxa(npx, j,t)+dxa(npx+1,j,t))) - a1(npx+1) = c3*q(npx,j,t) + c2*q(npx+1,j,t) + c1*q(npx+2,j,t) - endif - - if ( filter_type == 0 ) then - do i=is-1, ie+1 - if( abs(3.*(a1(i)+a1(i+1)-2.*q(i,j,t))) > abs(a1(i)-a1(i+1)) ) then - extm(i) = .true. - else - extm(i) = .false. - endif - enddo - else - do i=is-1, ie+1 - if ( (a1(i)-q(i,j,t))*(a1(i+1)-q(i,j,t)) > 0. ) then - extm(i) = .true. - else - extm(i) = .false. - endif - enddo - endif - - do i=is,ie+1 - ddx(i,j) = (q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) - if ( extm(i-1).and.extm(i) ) then - ddx(i,j) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*ddx(i,j) - elseif ( abs(ddx(i,j)) > m_slope ) then - fac = min(1., max( 0.1, ( abs(ddx(i,j))-m_slope )/m_slope) ) - ddx(i,j) = fac*0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*ddx(i,j) - else - ddx(i,j) = 0. - endif - enddo - enddo ! do j=js,je - - ! y-diffusive flux: - do j=js1,je2 - do i=is,ie - a2(i,j) = p1*(q(i,j-1,t)+q(i,j,t)) + p2*(q(i,j-2,t)+q(i,j+1,t)) - enddo - enddo - if ( .not. nested .and. grid_type<3 ) then - do i=is,ie - a2(i,0) = c1*q(i,-2,t) + c2*q(i,-1,t) + c3*q(i,0,t) - a2(i,1) = 0.5*(((2.*dya(i,0,t)+dya(i,-1,t))*q(i,0,t)-dya(i,0,t)*q(i,-1,t))/(dya(i,-1,t)+dya(i,0,t)) & - + ((2.*dya(i,1,t)+dya(i, 2,t))*q(i,1,t)-dya(i,1,t)*q(i, 2,t))/(dya(i, 1,t)+dya(i,2,t))) - a2(i,2) = c3*q(i,1,t) + c2*q(i,2,t) + c1*q(i,3,t) - enddo - - do i=is,ie - a2(i,npy-1) = c1*q(i,npy-3,t) + c2*q(i,npy-2,t) + c3*q(i,npy-1,t) - a2(i,npy) = 0.5*(((2.*dya(i,npy-1,t)+dya(i,npy-2,t))*q(i,npy-1,t)-dya(i,npy-1,t)*q(i,npy-2,t))/ & - (dya(i,npy-2,t)+dya(i,npy-1,t)) & - + ((2.*dya(i,npy,t)+dya(i,npy+1,t))*q(i,npy,t)-dya(i,npy,t)*q(i,npy+1,t))/& - (dya(i,npy,t)+dya(i,npy+1,t))) - a2(i,npy+1) = c3*q(i,npy,t) + c2*q(i,npy+1,t) + c1*q(i,npy+2,t) - enddo - endif - - if ( filter_type == 0 ) then - do j=js-1,je+1 - do i=is,ie - if( abs(3.*(a2(i,j)+a2(i,j+1)-2.*q(i,j,t))) > abs(a2(i,j)-a2(i,j+1)) ) then - ext2(i,j) = .true. - else - ext2(i,j) = .false. - endif - enddo - enddo - else - do j=js-1,je+1 - do i=is,ie - if ( (a2(i,j)-q(i,j,t))*(a2(i,j+1)-q(i,j,t)) > 0. ) then - ext2(i,j) = .true. - else - ext2(i,j) = .false. - endif - enddo - enddo - endif - - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) - if ( ext2(i,j-1) .and. ext2(i,j) ) then - ddy(i,j) = 0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t))*dx(i,j,t)*ddy(i,j) - elseif ( abs(ddy(i,j))>m_slope ) then - fac = min(1., max(0.1,(abs(ddy(i,j))-m_slope)/m_slope)) - ddy(i,j) = fac*0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t))*dx(i,j,t)*ddy(i,j) - else - ddy(i,j) = 0. - endif - enddo - enddo - - if ( zero_ocean ) then - ! Limit diffusive flux over water cells: - do j=js,je - do i=is,ie+1 - ddx(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * ddx(i,j) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * ddy(i,j) - enddo - enddo - endif - - do j=js,je - do i=is,ie - q(i,j,t) = q(i,j,t) + cd/area(i,j,t)*(ddx(i,j)-ddx(i+1,j)+ddy(i,j)-ddy(i,j+1)) - enddo - enddo - enddo ! do t = 1, ntiles - enddo ! nt=1, ntmax - -! Check slope - if ( check_slope ) then - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = (q(i,j,t) - q(i-1,j,t))/dxc(i,j,t) - ddx(i,j) = abs(ddx(i,j)) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j,t) - q(i,j-1,t))/dyc(i,j,t) - ddy(i,j) = abs(ddy(i,j)) - enddo - enddo - do j=js,je - do i=is,ie - a3(i,j,t) = max( ddx(i,j), ddx(i+1,j), ddy(i,j), ddy(i,j+1) ) - enddo - enddo - enddo - smax = maxval(a3(is:ie,js:je,:)) - write(*,*) 'After filter: Max_slope=', smax - endif - - end subroutine two_delta_filter - - !##################################################################### - subroutine del2_cubed_sphere(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles,& - q, area, dx, dy, dxc, dyc, sin_sg, nmax, cd, zero_ocean, mask, nested) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in):: npx, npy, ntiles - integer, intent(in):: nmax - real, intent(in):: cd - logical, intent(in):: zero_ocean - ! INPUT arrays - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - logical, intent(IN) :: nested - - ! OUTPUT arrays - real, intent(inout):: q(is-ng:ie+ng, js-ng:je+ng, ntiles) - ! Local: - real ddx(is:ie+1,js:je), ddy(is:ie,js:je+1) - integer i,j,n,t - - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - do t = 1, ntiles - ! First step: average the corners: - if ( .not. nested) then - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - endif - if ( .not. nested) then - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - endif - if ( .not. nested ) then - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx,je,t) = q(ie,je,t) - q(ie,npy,t) = q(ie,je,t) - endif - if ( .not. nested) then - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - endif - enddo - - do n=1,nmax - if( n>1 ) call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*(q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = dx(i,j,t)*(q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) & - *0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t)) - enddo - enddo - - if ( zero_ocean ) then - ! Limit diffusive flux over ater cells: - do j=js,je - do i=is,ie+1 - ddx(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * ddx(i,j) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * ddy(i,j) - enddo - enddo - endif - - do j=js,je - do i=is,ie - q(i,j,t) = q(i,j,t) + cd/area(i,j,t)*(ddx(i,j)-ddx(i+1,j)+ddy(i,j)-ddy(i,j+1)) - enddo - enddo - enddo - enddo - - end subroutine del2_cubed_sphere - - !##################################################################### - subroutine del4_cubed_sphere(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles, & - q, area, dx, dy, dxc, dyc, sin_sg, nmax, zero_ocean, mask, nested) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in) :: npx, npy, nmax, ntiles - logical, intent(in) :: zero_ocean - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(inout):: q(isd:ied, jsd:jed, ntiles) - logical, intent(IN) :: nested - ! Local: - ! diffusivity - real :: diff(is-1:ie+1,js-1:je+1, ntiles) - ! diffusive fluxes: - real :: fx1(is:ie+1,js:je), fy1(is:ie,js:je+1) - real :: fx2(is:ie+1,js:je,ntiles), fy2(is:ie,js:je+1,ntiles) - real :: fx4(is:ie+1,js:je,ntiles), fy4(is:ie,js:je+1,ntiles) - real, dimension(isd:ied,jsd:jed,ntiles):: d2, win, wou - real, dimension(is:ie,js:je, ntiles) :: qlow, qmin, qmax - real, parameter:: esl = 1.E-20 - integer i,j, n, t - - ! On a nested grid the haloes are not filled. Set to zero. - d2 = 0. - win = 0. - wou = 0. - - do t = 1, ntiles - do j=js-1,je+1 ; do i=is-1,ie+1 - diff(i,j,t) = cd4*area(i,j,t) ! area dependency is needed for stretched grid - enddo; enddo - - do j=js,je ; do i=is,ie - qmax(i,j,t) = q(i,j,t) * peak_fac - qmin(i,j,t) = q(i,j,t) / peak_fac - enddo; enddo - enddo - - do n=1,nmax - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - ! First step: average the corners: - if ( .not. nested .and. n==1 ) then - do t = 1, ntiles - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - q(0,0,t) = q(1,1,t) - - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - q(npx,0,t) = q(ie,1,t) - - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - q(0,npy,t) = q(1,je,t) - - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx, je,t) = q(ie,je,t) - q(ie, npy,t) = q(ie,je,t) - q(npx,npy,t) = q(ie,je,t) - enddo - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - endif - - do t = 1, ntiles - - !-------------- - ! Compute del-2 - !-------------- - ! call copy_corners(q, npx, npy, 1) - do j=js,je - do i=is,ie+1 - fx2(i,j,t) = 0.25*(diff(i-1,j,t)+diff(i,j,t))*dy(i,j,t)*(q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) & - *(sin_sg(1,i,j,t)+sin_sg(3,i-1,j,t)) - enddo - enddo - - ! call copy_corners(q, npx, npy, 2) - do j=js,je+1 - do i=is,ie - fy2(i,j,t) = 0.25*(diff(i,j-1,t)+diff(i,j,t))*dx(i,j,t)*(q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) & - *(sin_sg(2,i,j,t)+sin_sg(4,i,j-1,t)) - enddo - enddo - - do j=js,je - do i=is,ie - d2(i,j,t) = (fx2(i,j,t)-fx2(i+1,j,t)+fy2(i,j,t)-fy2(i,j+1,t)) / area(i,j,t) - enddo - enddo - - ! qlow == low order monotonic solution - if ( zero_ocean ) then - ! Limit diffusive flux over water cells: - do j=js,je - do i=is,ie+1 - fx1(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * fx2(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - fy1(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * fy2(i,j,t) - enddo - enddo - do j=js,je - do i=is,ie - qlow(i,j,t) = q(i,j,t) + (fx1(i,j)-fx1(i+1,j)+fy1(i,j)-fy1(i,j+1)) / area(i,j,t) - d2(i,j,t) = diff(i,j,t) * d2(i,j,t) - enddo - enddo - else - do j=js,je - do i=is,ie - qlow(i,j,t) = q(i,j,t) + d2(i,j,t) - d2(i,j,t) = diff(i,j,t) * d2(i,j,t) - enddo - enddo - endif - enddo - call fill_cubic_grid_halo(d2, d2, ng, 0, 0, 1, 1) - - !--------------------- - ! Compute del4 fluxes: - !--------------------- - ! call copy_corners(d2, npx, npy, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - fx4(i,j,t) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*(d2(i,j,t)-d2(i-1,j,t))/dxc(i,j,t)-fx2(i,j,t) - enddo - enddo - - ! call copy_corners(d2, npx, npy, 2) - do j=js,je+1 - do i=is,ie - fy4(i,j,t) = dx(i,j,t)*(d2(i,j,t)-d2(i,j-1,t))/dyc(i,j,t) & - *0.5*(sin_sg(2,i,j,t)+sin_sg(4,i,j-1,t))-fy2(i,j,t) - enddo - enddo - - do j=js,je - do i=is,ie - qmin(i,j,t) = min(qmin(i,j,t), q(i-1,j-1,t), q(i,j-1,t), q(i+1,j-1,t), & - q(i-1,j ,t), q(i,j ,t), q(i+1,j ,t), & - q(i-1,j+1,t), q(i,j+1,t), q(i+1,j+1,t) ) - qmax(i,j,t) = max(qmax(i,j,t), q(i-1,j-1,t), q(i,j-1,t), q(i+1,j-1,t), & - q(i-1,j ,t), q(i,j ,t), q(i+1,j ,t), & - q(i-1,j+1,t), q(i,j+1,t), q(i+1,j+1,t) ) - enddo - enddo - - !---------------- - ! Flux limitting: - !---------------- - do j=js,je - do i=is,ie - win(i,j,t) = max(0.,fx4(i, j,t)) - min(0.,fx4(i+1,j,t)) + & - max(0.,fy4(i, j,t)) - min(0.,fy4(i,j+1,t)) + esl - wou(i,j,t) = max(0.,fx4(i+1,j,t)) - min(0.,fx4(i, j,t)) + & - max(0.,fy4(i,j+1,t)) - min(0.,fy4(i, j,t)) + esl - win(i,j,t) = max(0., qmax(i,j,t) - qlow(i,j,t)) / win(i,j,t)*area(i,j,t) - wou(i,j,t) = max(0., qlow(i,j,t) - qmin(i,j,t)) / wou(i,j,t)*area(i,j,t) - enddo - enddo - enddo - call fill_cubic_grid_halo(win, win, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(wou, wou, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - if ( fx4(i,j,t) > 0. ) then - fx4(i,j,t) = min(1., wou(i-1,j,t), win(i,j,t)) * fx4(i,j,t) - else - fx4(i,j,t) = min(1., win(i-1,j,t), wou(i,j,t)) * fx4(i,j,t) - endif - enddo - enddo - do j=js,je+1 - do i=is,ie - if ( fy4(i,j,t) > 0. ) then - fy4(i,j,t) = min(1., wou(i,j-1,t), win(i,j,t)) * fy4(i,j,t) - else - fy4(i,j,t) = min(1., win(i,j-1,t), wou(i,j,t)) * fy4(i,j,t) - endif - enddo - enddo - - - if ( zero_ocean ) then - ! Limit diffusive flux over ocean cells: - do j=js,je - do i=is,ie+1 - fx4(i,j,t) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * fx4(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - fy4(i,j,t) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * fy4(i,j,t) - enddo - enddo - endif - - ! Update: - do j=js,je - do i=is,ie - q(i,j,t) = qlow(i,j,t) + (fx4(i,j,t)-fx4(i+1,j,t)+fy4(i,j,t)-fy4(i,j+1,t))/area(i,j,t) - enddo - enddo - enddo - enddo ! end n-loop - - - end subroutine del4_cubed_sphere - - !##################################################################### - subroutine handle_err(status, string) - integer, intent(in) :: status - character(len=*), intent(in) :: string - character(len=256) :: errmsg - - if (status .ne. nf_noerr) then - errmsg = nf_strerror(status) - errmsg = trim(errmsg)//trim(string) - print *, trim(errmsg) - stop 'Stopped' - endif - - end subroutine handle_err - - - !####################################################################### - ! reads the namelist file, write namelist to log file, - - subroutine read_namelist - - ! read namelist - integer :: unit=7, io_status - logical :: opened - - do - inquire( unit=unit, opened=opened ) - if( .NOT.opened )exit - unit = unit + 1 - if( unit.EQ.100 )call handle_err(-1, 'Unable to locate unit number.' ) - end do - open( unit=unit, file='input.nml', iostat=io_status ) - read( unit,filter_topo_nml, iostat=io_status ) - close(unit) - - if (io_status > 0) call handle_err(-1, 'Error reading input.nml') - - write (stdunit, nml=filter_topo_nml) - - end subroutine read_namelist - - -end program filter_topo diff --git a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/filter_topo_orig.F90 b/release/v0/sorc/fre-nctools.fd/tools/filter_topo/filter_topo_orig.F90 deleted file mode 100644 index 86df86eb07..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/filter_topo_orig.F90 +++ /dev/null @@ -1,1704 +0,0 @@ -program filter_topo - - - implicit none - -#include - -#ifdef NO_QUAD_PRECISION - ! 64-bit precision (kind=8) - integer, parameter:: f_p = selected_real_kind(15) -#else - ! Higher precision (kind=16) for grid geometrical factors: - integer, parameter:: f_p = selected_real_kind(20) -#endif - - integer, parameter :: XDir=1 - integer, parameter :: YDir=2 - real, parameter :: pi = 3.14159265358979323846d0 - real, parameter :: radius = 6371.d03 - real, parameter :: big_number=1.d8 - real, parameter :: tiny_number=1.d-8 - - - real:: cd4 = 0.16 ! Dimensionless coeff for del-4 difussion (with FCT) - real:: peak_fac = 1.05 ! overshoot factor for the mountain peak - real:: max_slope = 0.15 ! max allowable terrain slope: 1 --> 45 deg - ! 0.15 for C768 or lower; 0.25 C1536; 0.3 for C3072 - integer :: n_del2_weak = 12 - - logical :: zs_filter = .true. - logical :: zero_ocean = .true. ! if true, no diffusive flux into water/ocean area - real :: stretch_fac = 1.0 - logical :: nested = .false. - integer :: grid_type = 0 ! gnomoic_ed - character(len=128) :: topo_file = "orog" - character(len=128) :: topo_field = "orog_filt" - character(len=128) :: mask_field = "slmsk" - character(len=128) :: grid_file = "atmos_mosaic.nc" - namelist /filter_topo_nml/ topo_file, topo_field, mask_field, grid_file, zero_ocean, & - zs_filter, cd4, n_del2_weak, peak_fac, max_slope, stretch_fac, nested, grid_type - - integer :: stdunit = 6 - integer :: ntiles = 0 - - real da_min - - real, allocatable :: oro(:,:,:), mask(:,:,:) - real, allocatable :: dx(:,:,:), dy(:,:,:) - real, allocatable :: dxa(:,:,:), dya(:,:,:) - real, allocatable :: dxc(:,:,:), dyc(:,:,:) - real, allocatable :: area(:,:,:) - real, allocatable :: sin_sg(:,:,:,:) - - integer :: is,ie,js,je,isd,ied,jsd,jed - integer,parameter :: ng = 3 - integer :: nx, ny, npx, npy - - !--- read namelist - call read_namelist() - - !--- read the target grid. - call read_grid_file() - - !--- read the topography data - call read_topo_file - - !--- filter the data - call FV3_zs_filter(is,ie,js,je,isd,ied,jsd,jed,npx,npy,npx,ntiles,grid_type, & - stretch_fac, nested, area, dxa, dya, dx, dy, dxc, dyc, sin_sg, oro ) - - !--- write out the data - call write_topo_file(is,ie,js,je,ntiles,oro(is:ie,js:je,:) ) - -contains - - !##################################################################### - real function great_circle_dist( q1, q2, radius ) - real, intent(IN) :: q1(2), q2(2) - real, intent(IN), optional :: radius - - real (f_p):: p1(2), p2(2) - real (f_p):: beta - integer n - - do n=1,2 - p1(n) = q1(n) - p2(n) = q2(n) - enddo - - beta = asin( sqrt( sin((p1(2)-p2(2))/2.)**2 + cos(p1(2))*cos(p2(2))* & - sin((p1(1)-p2(1))/2.)**2 ) ) * 2. - - if ( present(radius) ) then - great_circle_dist = radius * beta - else - great_circle_dist = beta ! Returns the angle - endif - - end function great_circle_dist - - !#################################################################### - real function spherical_angle(p1, p2, p3) - - ! p3 - ! / - ! / - ! p1 ---> angle - ! \ - ! \ - ! p2 - - real p1(3), p2(3), p3(3) - - real (f_p):: e1(3), e2(3), e3(3) - real (f_p):: px, py, pz - real (f_p):: qx, qy, qz - real (f_p):: angle, ddd - integer n - - do n=1,3 - e1(n) = p1(n) - e2(n) = p2(n) - e3(n) = p3(n) - enddo - - !------------------------------------------------------------------- - ! Page 41, Silverman's book on Vector Algebra; spherical trigonmetry - !------------------------------------------------------------------- - ! Vector P: - px = e1(2)*e2(3) - e1(3)*e2(2) - py = e1(3)*e2(1) - e1(1)*e2(3) - pz = e1(1)*e2(2) - e1(2)*e2(1) - ! Vector Q: - qx = e1(2)*e3(3) - e1(3)*e3(2) - qy = e1(3)*e3(1) - e1(1)*e3(3) - qz = e1(1)*e3(2) - e1(2)*e3(1) - - ddd = (px*px+py*py+pz*pz)*(qx*qx+qy*qy+qz*qz) - - if ( ddd <= 0.0d0 ) then - angle = 0.d0 - else - ddd = (px*qx+py*qy+pz*qz) / sqrt(ddd) - if ( abs(ddd)>1.d0) then - angle = 2.d0*atan(1.0) ! 0.5*pi - !FIX (lmh) to correctly handle co-linear points (angle near pi or 0) - if (ddd < 0.d0) then - angle = 4.d0*atan(1.0d0) !should be pi - else - angle = 0.d0 - end if - else - angle = acos( ddd ) - endif - endif - - spherical_angle = angle - - end function spherical_angle - - - !#################################################################### - real function get_area(p1, p4, p2, p3, radius) - !----------------------------------------------- - real, intent(in), dimension(2):: p1, p2, p3, p4 - real, intent(in), optional:: radius - !----------------------------------------------- - real e1(3), e2(3), e3(3) - real ang1, ang2, ang3, ang4 - - ! S-W: 1 - call latlon2xyz(p1, e1) ! p1 - call latlon2xyz(p2, e2) ! p2 - call latlon2xyz(p4, e3) ! p4 - ang1 = spherical_angle(e1, e2, e3) - !---- - ! S-E: 2 - !---- - call latlon2xyz(p2, e1) - call latlon2xyz(p3, e2) - call latlon2xyz(p1, e3) - ang2 = spherical_angle(e1, e2, e3) - !---- - ! N-E: 3 - !---- - call latlon2xyz(p3, e1) - call latlon2xyz(p4, e2) - call latlon2xyz(p2, e3) - ang3 = spherical_angle(e1, e2, e3) - !---- - ! N-W: 4 - !---- - call latlon2xyz(p4, e1) - call latlon2xyz(p3, e2) - call latlon2xyz(p1, e3) - ang4 = spherical_angle(e1, e2, e3) - - if ( present(radius) ) then - get_area = (ang1 + ang2 + ang3 + ang4 - 2.*pi) * radius**2 - else - get_area = ang1 + ang2 + ang3 + ang4 - 2.*pi - endif - - end function get_area - - subroutine fill_AGRID_scalar_corners(q, ng, npx, npy, isd, jsd, fill) - integer, intent(in) :: ng, npx, npy, isd, jsd - integer, intent(in) :: fill - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: q - - integer :: i, j - - select case (FILL) - case (XDir) - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i ,:) !SW Corner - q(1-i ,npy-1+j,:) = q(1-j ,npy-1-i+1,:) !NW Corner - q(npx-1+i,1-j ,:) = q(npx-1+j,i ,:) !SE Corner - q(npx-1+i,npy-1+j,:) = q(npx-1+j,npy-1-i+1,:) !NE Corner - enddo - enddo - case (YDir) - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i ,1-j ,:) !SW Corner - q(1-j ,npy-1+i,:) = q(i ,npy-1+j,:) !NW Corner - q(npx-1+j,1-i ,:) = q(npx-1-i+1,1-j ,:) !SE Corner - q(npx-1+j,npy-1+i,:) = q(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - case default - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i ,1-j ,:) !SW Corner - q(1-j ,npy-1+i,:) = q(i ,npy-1+j,:) !NW Corner - q(npx-1+j,1-i ,:) = q(npx-1-i+1,1-j ,:) !SE Corner - q(npx-1+j,npy-1+i,:) = q(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - end select - - - end subroutine fill_AGRID_scalar_corners - - - !#################################################################### - subroutine fill_BGRID_scalar_corners(q, ng, npx, npy, isd, jsd, fill) - integer, intent(in) :: ng, npx, npy, isd, jsd - integer, intent(in) :: fill - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: q - - integer :: i, j - - select case (fill) - case (XDir) - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i+1 ,:) !SW Corner - q(1-i ,npy+j,:) = q(1-j ,npy-i ,:) !NW Corner - q(npx+i,1-j ,:) = q(npx+j,i+1 ,:) !SE Corner - q(npx+i,npy+j,:) = q(npx+j,npy-i ,:) !NE Corner - enddo - enddo - case (YDir) - do j=1,ng - do i=1,ng - q(1-j ,1-i ,:) = q(i+1 ,1-j ,:) !SW Corner - q(1-j ,npy+i,:) = q(i+1 ,npy+j ,:) !NW Corner - q(npx+j,1-i ,:) = q(npx-i,1-j ,:) !SE Corner - q(npx+j,npy+i,:) = q(npx-i,npy+j ,:) !NE Corner - enddo - enddo - case default - do j=1,ng - do i=1,ng - q(1-i ,1-j ,:) = q(1-j ,i+1 ,:) !SW Corner - q(1-i ,npy+j,:) = q(1-j ,npy-i ,:) !NW Corner - q(npx+i,1-j ,:) = q(npx+j,i+1 ,:) !SE Corner - q(npx+i,npy+j,:) = q(npx+j,npy-i ,:) !NE Corner - enddo - enddo - end select - - - - end subroutine fill_BGRID_scalar_corners - - !#################################################################### - subroutine fill_AGRID_xy_corners(x, y, ng, npx, npy, isd, jsd) - integer, intent(in) :: ng, npx, npy, isd, jsd - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: x - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: y - integer :: i,j - - do j=1,ng - do i=1,ng - x(1-i ,1-j ,:) = y(1-j ,i ,:) !SW Corner - x(1-i ,npy-1+j,:) = y(1-j ,npy-1-i+1,:) !NW Corner - x(npx-1+i,1-j ,:) = y(npx-1+j,i ,:) !SE Corner - x(npx-1+i,npy-1+j,:) = y(npx-1+j,npy-1-i+1,:) !NE Corner - - y(1-j ,1-i ,:) = x(i ,1-j ,:) !SW Corner - y(1-j ,npy-1+i,:) = x(i ,npy-1+j,:) !NW Corner - y(npx-1+j,1-i ,:) = x(npx-1-i+1,1-j ,:) !SE Corner - y(npx-1+j,npy-1+i,:) = x(npx-1-i+1,npy-1+j,:) !NE Corner - enddo - enddo - - end subroutine fill_AGRID_xy_corners - - - - !#################################################################### - subroutine fill_DGRID_xy_corners(x, y, ng, npx, npy, isd, jsd) - integer, intent(in) :: ng, npx, npy, isd, jsd - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: x - real, DIMENSION(isd:,jsd:,:), intent(INOUT):: y - integer :: i,j - - do j=1,ng - do i=1,ng - x(1-i ,1-j , :) = y(1-j ,i , :) !SW Corner - x(1-i ,npy+j , :) = y(1-j ,npy-i, :) !NW Corner - x(npx-1+i,1-j , :) = y(npx+j,i , :) !SE Corner - x(npx-1+i,npy+j , :) = y(npx+j,npy-i, :) !NE Corner - y(1-i ,1-j , :) = x(j ,1-i , :) !SW Corner - y(1-i ,npy-1+j, :) = x(j ,npy+i, :) !NW Corner - y(npx+i ,1-j , :) = x(npx-j,1-i , :) !SE Corner - y(npx+i ,npy-1+j, :) = x(npx-j,npy+i, :) !NE Corner - enddo - enddo - - end subroutine fill_DGRID_xy_corners - - !############################################################### - subroutine mid_pt_sphere(p1, p2, pm) - real, intent(IN) :: p1(2), p2(2) - real, intent(OUT) :: pm(2) - !------------------------------------------ - real :: e1(3), e2(3), e3(3) - - call latlon2xyz(p1, e1) - call latlon2xyz(p2, e2) - call mid_pt3_cart(e1, e2, e3) - call cart_to_latlon(1, e3, pm(1), pm(2)) - - end subroutine mid_pt_sphere - - - !##################################################################### - subroutine mid_pt3_cart(p1, p2, e) - real, intent(IN) :: p1(3), p2(3) - real, intent(OUT) :: e(3) - ! - real (f_p):: q1(3), q2(3) - real (f_p):: dd, e1, e2, e3 - integer k - - do k=1,3 - q1(k) = p1(k) - q2(k) = p2(k) - enddo - - e1 = q1(1) + q2(1) - e2 = q1(2) + q2(2) - e3 = q1(3) + q2(3) - - dd = sqrt( e1**2 + e2**2 + e3**2 ) - e1 = e1 / dd - e2 = e2 / dd - e3 = e3 / dd - - e(1) = e1 - e(2) = e2 - e(3) = e3 - - end subroutine mid_pt3_cart - - subroutine latlon2xyz(p, e) - ! - ! Routine to map (lon, lat) to (x,y,z) - ! - real, intent(in) :: p(2) - real, intent(out):: e(3) - - integer n - real (f_p):: q(2) - real (f_p):: e1, e2, e3 - - do n=1,2 - q(n) = p(n) - enddo - - e1 = cos(q(2)) * cos(q(1)) - e2 = cos(q(2)) * sin(q(1)) - e3 = sin(q(2)) - !----------------------------------- - ! Truncate to the desired precision: - !----------------------------------- - e(1) = e1 - e(2) = e2 - e(3) = e3 - - end subroutine latlon2xyz - - - - subroutine cart_to_latlon(np, q, xs, ys) - ! vector version of cart_to_latlon1 - integer, intent(in):: np - real, intent(inout):: q(3,np) - real, intent(inout):: xs(np), ys(np) - ! local - real, parameter:: esl=1.d-10 - real (f_p):: p(3) - real (f_p):: dist, lat, lon - integer i,k - - do i=1,np - do k=1,3 - p(k) = q(k,i) - enddo - dist = sqrt(p(1)**2 + p(2)**2 + p(3)**2) - do k=1,3 - p(k) = p(k) / dist - enddo - - if ( (abs(p(1))+abs(p(2))) < esl ) then - lon = real(0.,kind=f_p) - else - lon = atan2( p(2), p(1) ) ! range [-pi,pi] - endif - - if ( lon < 0.) lon = real(2.,kind=f_p)*pi + lon - ! RIGHT_HAND system: - lat = asin(p(3)) - - xs(i) = lon - ys(i) = lat - ! q Normalized: - do k=1,3 - q(k,i) = p(k) - enddo - enddo - - end subroutine cart_to_latlon - - !##################################################################### - real function cos_angle(p1, p2, p3) - ! As spherical_angle, but returns the cos(angle) - ! p3 - ! ^ - ! | - ! | - ! p1 ---> p2 - ! - real, intent(in):: p1(3), p2(3), p3(3) - - real (f_p):: e1(3), e2(3), e3(3) - real (f_p):: px, py, pz - real (f_p):: qx, qy, qz - real (f_p):: angle, ddd - integer n - - do n=1,3 - e1(n) = p1(n) - e2(n) = p2(n) - e3(n) = p3(n) - enddo - - !------------------------------------------------------------------- - ! Page 41, Silverman's book on Vector Algebra; spherical trigonmetry - !------------------------------------------------------------------- - ! Vector P:= e1 X e2 - px = e1(2)*e2(3) - e1(3)*e2(2) - py = e1(3)*e2(1) - e1(1)*e2(3) - pz = e1(1)*e2(2) - e1(2)*e2(1) - - ! Vector Q: e1 X e3 - qx = e1(2)*e3(3) - e1(3)*e3(2) - qy = e1(3)*e3(1) - e1(1)*e3(3) - qz = e1(1)*e3(2) - e1(2)*e3(1) - - ! ddd = sqrt[ (P*P) (Q*Q) ] - ddd = sqrt( (px**2+py**2+pz**2)*(qx**2+qy**2+qz**2) ) - if ( ddd > 0.d0 ) then - angle = (px*qx+py*qy+pz*qz) / ddd - else - angle = 1.d0 - endif - cos_angle = angle - - end function cos_angle - - - !##################################################################### - subroutine cell_center2(q1, q2, q3, q4, e2) - real, intent(in ) :: q1(2), q2(2), q3(2), q4(2) - real, intent(out) :: e2(2) - ! Local - real p1(3), p2(3), p3(3), p4(3) - real ec(3) - real dd - integer k - - call latlon2xyz(q1, p1) - call latlon2xyz(q2, p2) - call latlon2xyz(q3, p3) - call latlon2xyz(q4, p4) - - do k=1,3 - ec(k) = p1(k) + p2(k) + p3(k) + p4(k) - enddo - dd = sqrt( ec(1)**2 + ec(2)**2 + ec(3)**2 ) - - do k=1,3 - ec(k) = ec(k) / dd - enddo - - call cart_to_latlon(1, ec, e2(1), e2(2)) - - end subroutine cell_center2 - - - !##################################################################### - subroutine read_grid_file() - - integer :: fsize=65536 - integer :: status, ncid, id_dim, id_var, ncid2, t - integer :: ni, nj, i, j, tw, te, ip - real :: g1(2), g2(2), g3(2), g4(2), g5(2) - real :: p1(3), p3(3) - real :: p_lL(2), p_uL(2), p_lR(2), p_uR(2) - character(len=256) :: tile_file - real, allocatable, dimension(:,:) :: tmpvar - real, allocatable, dimension(:,:,:) :: geolon_c, geolat_c - real, allocatable, dimension(:,:,:) :: geolon_t, geolat_t, cos_sg, grid3 - integer :: start(4), nread(4) - - print*, "Read the grid from file "//trim(grid_file) - - status=NF__OPEN(trim(grid_file),NF_NOWRITE,fsize,ncid) - call handle_err(status, 'Open file '//trim(grid_file) ) - - status=nf_inq_dimid(ncid, 'ntiles', id_dim) - call handle_err(status, 'inquire dimension ntiles from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid,id_dim,ntiles) - call handle_err(status, 'inquire dimension ntiles length from file '//trim(grid_file) ) - - !--- currently only support cubic sphere grid. - if( ntiles .NE. 6 .and. ntiles .NE. 7) call handle_err(-1, "ntiles should be 6 or 7 for file "//trim(grid_file) ) - if( ntiles == 7 ) print*, " This grid is a nested grid " - - !--- loop through ntiles and make sure the grid size match between all the tiles. - - start(:) = 1 - nread(:) = 1 - - do t = 1, ntiles - start(2) = t; nread(1) = 255 - status = nf_inq_varid(ncid, 'gridfiles', id_var) - call handle_err(status, 'inquire varid of gridfiles from file '//trim(grid_file) ) - status = nf_get_vara_text(ncid, id_var, start, nread, tile_file ) - call handle_err(status, 'get value of gridfiles from file '//trim(grid_file) ) - - status=NF__OPEN(trim(tile_file),NF_NOWRITE,fsize,ncid2) - call handle_err(status, 'Open file '//trim(tile_file) ) - - status=nf_inq_dimid(ncid2, 'nx', id_dim) - call handle_err(status, 'inquire dimension nx from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid2,id_dim,ni) - call handle_err(status, 'inquire dimension nx length from file '//trim(grid_file) ) - status=nf_inq_dimid(ncid2, 'ny', id_dim) - call handle_err(status, 'inquire dimension ny from file '//trim(grid_file) ) - status=nf_inq_dimlen(ncid2,id_dim,nj) - call handle_err(status, 'inquire dimension ny length '//'from file '//trim(grid_file) ) - if( t == 1 ) then - ! ni and nj must be even - if(mod(ni,2) .NE. 0 .or. mod(nj,2) .NE. 0) & - call handle_err(-1, "read_grid_file: ni and nj must be even") - - nx = ni/2 - ny = nj/2 - npx = nx + 1 - npy = ny + 1 - is = 1 ; ie = nx - js = 1 ; je = ny - isd=is-ng; ied=ie+ng - jsd=js-ng; jed=je+ng - - allocate(tmpvar(ni+1,nj+1)) - allocate(geolon_c(isd:ied+1,jsd:jed+1,6)) - allocate(geolat_c(isd:ied+1,jsd:jed+1,6)) - else if ( t == 7 ) then ! nested grid - if(mod(ni,2) .NE. 0 .or. mod(nj,2) .NE. 0) & - call handle_err(-1, "read_grid_file: ni and nj must be even") - - nx_nest = ni/2 - ny_nest = nj/2 - npx_nest = nx_nest + 1 - npy_nest = ny_nest + 1 - is_nest = 1 ; ie_nest = nx - js_nest = 1 ; je_nest = ny - isd_nest=is_nest-ng; ied_nest=ie_nest+ng - jsd_nest=js_nest-ng; jed_nest=je_nest+ng - deallocate(tmpvar) - allocate(tmpvar(ni+1,nj+1)) - allocate(geolon_c_nest(isd:ied+1,jsd:jed+1)) - allocate(geolat_c_nest(isd:ied+1,jsd:jed+1)) - else - !-- make sure ni and nj match between tiles - if(ni .ne. nx*2 .OR. nj .ne. ny*2) & - call handle_err(-1, "mismatch of grid size between tiles") - endif - - status=nf_inq_varid(ncid2, 'x', id_var) - call handle_err(status, 'inquire varid of x from file '//trim(grid_file) ) - status=nf_get_var_double(ncid2, id_var, tmpvar) - call handle_err(status, 'inquire data of x from file '//trim(grid_file) ) - if(t==7) then - geolon_c_nest(1:npx,1:npy) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - else - geolon_c(1:npx,1:npy,t) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - endif - - status=nf_inq_varid(ncid2, 'y', id_var) - call handle_err(status, 'inquire varid of y from file '//trim(grid_file) ) - status=nf_get_var_double(ncid2, id_var, tmpvar) - call handle_err(status, 'inquire data of y from file '//trim(grid_file) ) - if(t==7) then - geolat_c_nest(1:npx,1:npy) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - else - geolat_c(1:npx,1:npy,t) = tmpvar(1:ni+1:2,1:nj+1:2)*PI/180. - endif - status = nf_close(ncid2) - call handle_err(status, "close file "//trim(tile_file)) - enddo - - deallocate(tmpvar) - - status = nf_close(ncid) - call handle_err(status, "close file "//trim(grid_file)) - - is = 1 ; ie = nx - js = 1 ; je = ny - isd=is-ng; ied=ie+ng - jsd=js-ng; jed=je+ng - - call fill_cubic_grid_halo(geolon_c, geolon_c, ng, 1, 1, 1, 1) - call fill_cubic_grid_halo(geolat_c, geolat_c, ng, 1, 1, 1, 1) - if(.not. nested) call fill_bgrid_scalar_corners(geolon_c, ng, npx, npy, isd, jsd, XDir) - if(.not. nested) call fill_bgrid_scalar_corners(geolat_c, ng, npx, npy, isd, jsd, YDir) - - !--- compute grid cell center - allocate(geolon_t(isd:ied,jsd:jed,ntiles), geolat_t(isd:ied,jsd:jed,ntiles)) - - geolon_t(:,:,:) = -1.e25 - geolat_t(:,:,:) = -1.e25 - - do t = 1, ntiles - do j=js,je ; do i=is,ie - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i+1,j,t); g2(2) = geolat_c(i+1,j,t) - g3(1) = geolon_c(i,j+1,t); g3(2) = geolat_c(i,j+1,t) - g4(1) = geolon_c(i+1,j+1,t); g4(2) = geolat_c(i+1,j+1,t) - call cell_center2(g1, g2, g3, g4, g5 ) - geolon_t(i,j,t) = g5(1) - geolat_t(i,j,t) = g5(2) - enddo ; enddo - enddo - - - call fill_cubic_grid_halo(geolon_t, geolon_t, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(geolat_t, geolat_t, ng, 0, 0, 1, 1) - - if (.not. nested) call fill_AGRID_scalar_corners(geolon_t, ng, npx, npy, isd, jsd, XDir) - if (.not. nested) call fill_AGRID_scalar_corners(geolat_t, ng, npx, npy, isd, jsd, YDir) - - !--- compute dx, dy - allocate(dx(isd:ied,jsd:jed+1,ntiles)) - allocate(dy(isd:ied+1,jsd:jed,ntiles)) - do t = 1, ntiles - do j = js, je+1 ; do i = is, ie - g1(1) = geolon_c(i ,j,t) - g1(2) = geolat_c(i ,j,t) - g2(1) = geolon_c(i+1,j,t) - g2(2) = geolat_c(i+1,j,t) - dx(i,j,t) = great_circle_dist( g2, g1, radius ) - enddo ; enddo - enddo - if( stretch_fac .NE. 1 ) then - do t = 1, ntiles - do j = js, je - do i = is, ie+1 - g1(1) = geolon_c(i,j, t) - g1(2) = geolat_c(i,j, t) - g2(1) = geolon_c(i,j+1,t) - g2(2) = geolat_c(i,j+1,t) - dy(i,j,t) = great_circle_dist( g2, g1, radius ) - enddo - enddo - enddo - else - do t = 1, ntiles - do j = js, je - do i = is, ie+1 - dy(i,j,t) = dx(j,i,t) - enddo - enddo - enddo - endif - - !--- make sure it is consitent between tiles. The following maybe not necessary. - do t = 1, ntiles - if(mod(t,2) ==0) then ! tile 2 4 6 - tw = t - 1 - te = t + 2 - if(te > ntiles) te = te - ntiles - dy(is, js:je,t) = dy(ie+1,js:je,tw) ! west boundary - dy(ie+1, js:je, t) = dx(ie:is:-1,js, te) ! east boundary - else - tw = t - 2 - if( tw <= 0) tw = tw + ntiles - te = t + 1 - dy(is, js:je, t) = dx(ie:is:-1, je+1, tw) ! west boundary - dy(ie+1, js:je,t) = dy(1,js:je,te) ! east boundary - endif - enddo - - call fill_cubic_grid_halo(dx, dy, ng, 0, 1, 1, 1) - call fill_cubic_grid_halo(dy, dx, ng, 1, 0, 1, 1) - - if (.not. nested) call fill_dgrid_xy_corners(dx, dy, ng, npx, npy, isd, jsd) - - !--- compute dxa and dya ----- - allocate(dxa(isd:ied,jsd:jed,ntiles)) - allocate(dya(isd:ied,jsd:jed,ntiles)) - do t = 1, ntiles - do j=js,je ; do i=is,ie - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i,j+1,t); g2(2) = geolat_c(i,j+1,t) - call mid_pt_sphere(g1, g2, g3) - g1(1) = geolon_c(i+1,j,t); g1(2) = geolat_c(i+1,j,t) - g2(1) = geolon_c(i+1,j+1,t); g2(2) = geolat_c(i+1,j+1,t) - call mid_pt_sphere(g1, g2, g4) - dxa(i,j,t) = great_circle_dist( g4, g3, radius ) - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i+1,j,t); g2(2) = geolat_c(i+1,j,t) - call mid_pt_sphere(g1, g2, g3) - g1(1) = geolon_c(i,j+1,t); g1(2) = geolat_c(i,j+1,t) - g2(1) = geolon_c(i+1,j+1,t); g2(2) = geolat_c(i+1,j+1,t) - call mid_pt_sphere(g1, g2, g4) - dya(i,j,t) = great_circle_dist( g4, g3, radius ) - enddo; enddo - enddo - - call fill_cubic_grid_halo(dxa, dya, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(dya, dxa, ng, 0, 0, 1, 1) - - if (.not. nested) call fill_AGRID_xy_corners(dxa, dya, ng, npx, npy, isd, jsd) - - !--- compute dxc and dyc - allocate(dxc(isd:ied+1,jsd:jed,ntiles)) - allocate(dyc(isd:ied,jsd:jed+1,ntiles)) - do t = 1, ntiles - do j=jsd,jed - do i=isd+1,ied - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i-1,j,t); g2(2) = geolat_c(i-1,j,t) - dxc(i,j,t) = great_circle_dist(g1, g2, radius) - enddo - dxc(isd,j,t) = dxc(isd+1,j,t) - dxc(ied+1,j,t) = dxc(ied,j,t) - enddo - - do j=jsd+1,jed - do i=isd,ied - g1(1) = geolon_c(i,j,t); g1(2) = geolat_c(i,j,t) - g2(1) = geolon_c(i,j-1,t); g2(2) = geolat_c(i,j-1,t) - dyc(i,j,t) = great_circle_dist(g1, g2, radius) - enddo - enddo - do i=isd,ied - dyc(i,jsd,t) = dyc(i,jsd+1,t) - dyc(i,jed+1,t) = dyc(i,jed,t) - end do - enddo - - !--- compute area - allocate(area(isd:ied,jsd:jed,ntiles)) - do t = 1, ntiles - do j=js,je - do i=is,ie - p_lL(1) = geolon_c(i ,j ,t) ; p_lL(2) = geolat_c(i ,j ,t) - p_uL(1) = geolon_c(i ,j+1,t) ; p_uL(2) = geolat_c(i ,j+1,t) - p_lR(1) = geolon_c(i+1,j ,t) ; p_lR(2) = geolat_c(i+1,j ,t) - p_uR(1) = geolon_c(i+1,j+1,t) ; p_uR(2) = geolat_c(i+1,j+1,t) - - ! Spherical Excess Formula - area(i,j,t) = get_area(p_lL, p_uL, p_lR, p_uR, radius) - enddo - enddo - enddo - - call fill_cubic_grid_halo(area, area, ng, 0, 0, 1, 1) - - da_min = minval(area(is:ie,js:je,:)) - - !--- compute sin_sg - allocate(sin_sg(4,isd:ied,jsd:jed,ntiles)) - allocate(cos_sg(4,isd:ied,jsd:jed)) - allocate(grid3(3, npx, npy)) - cos_sg(:,:,:) = big_number - sin_sg(:,:,:,:) = tiny_number - - ! 9---4---8 - ! | | - ! 1 5 3 - ! | | - ! 6---2---7 - do t = 1, ntiles - do j=js,je+1 - do i = is,ie+1 - g1(1) = geolon_c(i,j,t) - g1(2) = geolat_c(i,j,t) - call latlon2xyz(g1, grid3(:,i,j)) - enddo - enddo - do j=js,je - do i=is,ie - g1(1) = geolon_t(i,j,t); g1(2) = geolat_t(i,j,t) - call latlon2xyz(g1, p3) ! righ-hand system consistent with grid3 - call mid_pt3_cart(grid3(1,i,j), grid3(1,i,j+1), p1) - cos_sg(1,i,j) = cos_angle( p1, p3, grid3(1,i,j+1) ) - call mid_pt3_cart(grid3(1,i,j), grid3(1,i+1,j), p1) - cos_sg(2,i,j) = cos_angle( p1, grid3(1,i+1,j), p3 ) - call mid_pt3_cart(grid3(1,i+1,j), grid3(1,i+1,j+1), p1) - cos_sg(3,i,j) = cos_angle( p1, p3, grid3(1,i+1,j) ) - call mid_pt3_cart(grid3(1,i,j+1), grid3(1,i+1,j+1), p1) - cos_sg(4,i,j) = cos_angle( p1, grid3(1,i,j+1), p3 ) - enddo - enddo - - do ip=1,4 - do j=js,je - do i=is,ie - sin_sg(ip,i,j,t) = min(1.0, sqrt( max(0., 1.-cos_sg(ip,i,j)**2) ) ) - enddo - enddo - enddo - enddo - - do ip=1,4 - call fill_cubic_grid_halo(sin_sg(ip,:,:,:), sin_sg(ip,:,:,:), ng, 0, 0, 1, 1) - enddo - - deallocate(cos_sg, grid3, geolon_c, geolat_c, geolon_t, geolat_t) - - - end subroutine read_grid_file - - - !##################################################################### - subroutine read_topo_file - - integer :: fsize=65536 - integer :: status, ncid, id_var, ndim, dimsiz - character(len=256) :: tile_file - character(len=32) :: text - integer :: len, t, dims(2) - real :: tmp(is:ie,js:je) - - allocate(oro(isd:ied,jsd:jed,ntiles)) - allocate(mask(isd:ied,jsd:jed,ntiles)) - oro = -big_number - mask = 0 - - !--- make sure topo_file suffix is not ".nc" - len = len_trim(topo_file) - if( index(topo_file, '.nc', back=.true.) == len-2) then - call handle_err(-1, "remove .nc from namelist topo_file="//trim(topo_file) ) - endif - - !--- loop through each tile file to get the orography - do t = 1, ntiles - write(text, '(i1.1)' ) t - tile_file = trim(topo_file)//'.tile'//trim(text)//'.nc' - status=NF__OPEN(trim(tile_file),NF_NOWRITE,fsize,ncid) - call handle_err(status, 'Open file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, topo_field, id_var) - call handle_err(status, 'inquire varid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_inq_varndims(ncid, id_var, ndim) - call handle_err(status, 'inquire ndims of '//trim(topo_field)//' from file '//trim(tile_file) ) - - if(ndim .NE. 2) call handle_err(-1, 'ndims of '//trim(topo_field)//' from file '// & - trim(tile_file)//' should be 2') - - ! get data dimension and should match grid file size - status = nf_inq_vardimid(ncid, id_var,dims); - call handle_err(status, 'inquire dimid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_inq_dimlen(ncid, dims(1), dimsiz) - call handle_err(status, 'inquire first dimension length of '//trim(topo_field)//' from file '//trim(tile_file) ) - if(dimsiz .NE. nx) call handle_err(-1, "mismatch of lon dimension size between "// & - trim(grid_file)//' and '//trim(tile_file) ) - - status = nf_inq_dimlen(ncid, dims(2), dimsiz) - call handle_err(status, 'inquire second dimension length of '//trim(topo_field)//' from file '//trim(tile_file) ) - - if(dimsiz .NE. ny) call handle_err(-1, "mismatch of lat dimension size between "// & - trim(grid_file)//' and '//trim(tile_file) ) - - status = nf_get_var_double(ncid, id_var, oro(is:ie,js:je,t)) - call handle_err(status, 'get the value of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, mask_field, id_var) - call handle_err(status, 'inquire varid of '//trim(mask_field)//' from file '//trim(tile_file) ) - - status = nf_get_var_double(ncid, id_var, tmp) - call handle_err(status, 'get the value of '//trim(mask_field)//' from file '//trim(tile_file) ) - - mask(is:ie,js:je,t) = tmp - - status = nf_close(ncid) - call handle_err(status, "close file "//trim(tile_file)) - enddo - - !--- update halo - call fill_cubic_grid_halo(oro, oro, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(mask, mask, ng, 0, 0, 1, 1) - - - - end subroutine read_topo_file - - !############################################################################## - !--- replace the topo_field - subroutine write_topo_file(is,ie,js,je,ntiles,q) - integer, intent(in) :: is,ie,js,je,ntiles - real, intent(in) :: q(is:ie,js:je,ntiles) - - integer :: fsize=65536 - integer :: t, status, ncid, id_var - character(len=256) :: tile_file - character(len=3) :: text - !--- loop through each tile file to update topo_field - - do t = 1, ntiles - write(text, '(i1.1)' ) t - tile_file = trim(topo_file)//'.tile'//trim(text)//'.nc' - status=NF__OPEN(trim(tile_file),NF_WRITE,fsize,ncid) - call handle_err(status, 'write_topo_file: Open file '//trim(tile_file) ) - - status=nf_inq_varid(ncid, topo_field, id_var) - call handle_err(status, 'write_topo_file:inquire varid of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_put_var_double(ncid, id_var, q(:,:,t)) - call handle_err(status, 'write_topo_file: put the value of '//trim(topo_field)//' from file '//trim(tile_file) ) - - status = nf_close(ncid) - call handle_err(status, "write_topo_file: close file "//trim(tile_file)) - enddo - - - end subroutine write_topo_file - - !############################################################################## - ! this routine fill the halo points for the cubic grid. ioff and joff is used to distinguish - ! T, C, E, or N-cell - subroutine fill_cubic_grid_halo(data, data2, halo, ioff, joff, sign1, sign2) - integer, intent(in) :: halo - real, dimension(1-halo:,1-halo:,:), intent(inout) :: data, data2 - integer, intent(in) :: ioff, joff, sign1, sign2 - integer :: lw, le, ls, ln - integer :: i, tile - - ntiles = size(data,3) - - do tile = 1, ntiles - if(mod(tile,2) == 0) then ! tile 2, 4, 6 - lw = tile - 1; le = tile + 2; ls = tile - 2; ln = tile + 1 - if(le > 6 ) le = le - 6 - if(ls < 1 ) ls = ls + 6 - if(ln > 6 ) ln = ln - 6 - data(1-halo:0, 1:ny+joff, tile) = data(nx-halo+1:nx, 1:ny+joff, lw) ! west - do i = 1, halo - data(nx+i+ioff, 1:ny+joff, tile) = sign1*data2(nx+joff:1:-1, i+ioff, le) ! east - end do - do i = 1, halo - data(1:nx+ioff, 1-i, tile) = sign2*data2(nx-i+1, ny+ioff:1:-1, ls) ! south - end do - data(1:nx+ioff, ny+1+joff:ny+halo+joff, tile) = data(1:nx+ioff, 1+joff:halo+joff, ln) ! north - else ! tile 1, 3, 5 - lw = tile - 2; le = tile + 1; ls = tile - 1; ln = tile + 2 - if(lw < 1 ) lw = lw + 6 - if(ls < 1 ) ls = ls + 6 - if(ln > 6 ) ln = ln - 6 - do i = 1, halo - data(1-i, 1:ny+joff, tile) = sign1*data2(nx+joff:1:-1, ny-i+1, lw) ! west - end do - data(nx+1+ioff:nx+halo+ioff, 1:ny+joff, tile) = data(1+ioff:halo+ioff, 1:ny+joff, le) ! east - data(1:nx+ioff, 1-halo:0, tile) = data(1:nx+ioff, ny-halo+1:ny, ls) ! south - do i = 1, halo - data(1:nx+ioff, ny+i+joff, tile) = sign2*data2(i+joff, ny+ioff:1:-1, ln) ! north - end do - end if - enddo - - end subroutine fill_cubic_grid_halo - - !##################################################################### - subroutine FV3_zs_filter (is, ie, js, je, isd, ied, jsd, jed, npx, npy, npx_global, ntiles, & - grid_type, stretch_fac, nested, area, dxa, dya, dx, dy, dxc, dyc, & - sin_sg, phis ) - integer, intent(in) :: is, ie, js, je, ntiles - integer, intent(in) :: isd, ied, jsd, jed, npx, npy, npx_global, grid_type - real, intent(in), dimension(isd:ied,jsd:jed, ntiles)::area, dxa, dya - real, intent(in), dimension(isd:ied, jsd:jed+1, ntiles):: dx, dyc - real, intent(in), dimension(isd:ied+1,jsd:jed, ntiles):: dy, dxc - - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed,ntiles) - real, intent(IN):: stretch_fac - logical, intent(IN) :: nested - real, intent(inout):: phis(isd:ied,jsd,jed,ntiles) - real:: cd2 - integer mdim, n_del2, n_del4 - - mdim = nint( real(npx_global) * min(10., stretch_fac) ) - - ! Del-2: high resolution only - if ( npx_global<=97 ) then - n_del2 = 0 - elseif ( npx_global<=193 ) then - n_del2 = 1 - else - n_del2 = 2 - endif - cd2 = 0.16*da_min - ! Applying strong 2-delta-filter: - if ( n_del2 > 0 ) & - call two_delta_filter(is,ie,js,je,isd,ied,jsd,jed, npx, npy, ntiles, phis, area, & - dx, dy, dxa, dya, dxc, dyc, sin_sg, cd2, zero_ocean, & - .true.,0, grid_type, mask, nested, n_del2) - - ! MFCT Del-4: - if ( mdim<=193 ) then - n_del4 = 1 - elseif ( mdim<=1537 ) then - n_del4 = 2 - else - n_del4 = 3 - endif - call del4_cubed_sphere(is,ie,js,je,isd,ied,jsd,jed,npx, npy, ntiles, & - phis, area, dx, dy, dxc, dyc, sin_sg, n_del4, zero_ocean, mask, nested) - ! Applying weak 2-delta-filter: - cd2 = 0.12*da_min - call two_delta_filter(is,ie,js,je,isd,ied,jsd,jed,npx, npy, ntiles, & - phis, area, dx, dy, dxa, dya, dxc, dyc, sin_sg, cd2, zero_ocean, & - .true., 1, grid_type, mask, nested, n_del2_weak) - - end subroutine FV3_zs_filter - - !##################################################################### - subroutine two_delta_filter(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles, & - q, area, dx, dy, dxa, dya, dxc, dyc, sin_sg, cd, zero_ocean, & - check_slope, filter_type, grid_type, mask, nested, ntmax) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in) :: npx, npy, grid_type - integer, intent(in) :: ntmax, ntiles - integer, intent(in) :: filter_type ! 0: strong, 1: weak - real, intent(in) :: cd - ! INPUT arrays - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxa(isd:ied, jsd:jed, ntiles) - real, intent(in):: dya(isd:ied, jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - logical, intent(in):: zero_ocean, check_slope - logical, intent(in):: nested - ! OUTPUT arrays - real, intent(inout):: q(isd:ied, jsd:jed,ntiles) - ! Local: - real, parameter:: p1 = 7./12. - real, parameter:: p2 = -1./12. - real, parameter:: c1 = -2./14. - real, parameter:: c2 = 11./14. - real, parameter:: c3 = 5./14. - - real:: ddx(is:ie+1,js:je), ddy(is:ie,js:je+1) - logical:: extm(is-1:ie+1) - logical:: ext2(is:ie,js-1:je+1) - real:: a1(is-1:ie+2) - real:: a2(is:ie,js-1:je+2) - real:: a3(is:ie,js:je,ntiles) - real:: smax, smin, m_slope, fac - integer:: i,j, nt, t - integer:: is1, ie2, js1, je2 - - - if ( .not. nested .and. grid_type<3 ) then - is1 = max(3,is-1); ie2 = min(npx-2,ie+2) - js1 = max(3,js-1); je2 = min(npy-2,je+2) - else - is1 = is-1; ie2 = ie+2 - js1 = js-1; je2 = je+2 - end if - - if ( check_slope ) then - m_slope = max_slope - else - m_slope = 10. - endif - - - do nt=1, ntmax - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - ! Check slope - if ( nt==1 .and. check_slope ) then - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = (q(i,j,t) - q(i-1,j,t))/dxc(i,j,t) - ddx(i,j) = abs(ddx(i,j)) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j,t) - q(i,j-1,t))/dyc(i,j,t) - ddy(i,j) = abs(ddy(i,j)) - enddo - enddo - do j=js,je - do i=is,ie - a3(i,j,t) = max( ddx(i,j), ddx(i+1,j), ddy(i,j), ddy(i,j+1) ) - enddo - enddo - enddo - smax = maxval(a3(is:ie,js:je,:)) - write(*,*) 'Before filter: Max_slope=', smax - endif - - - ! First step: average the corners: - if ( .not. nested .and. nt==1 ) then - do t = 1, ntiles - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx,je,t) = q(ie,je,t) - q(ie,npy,t) = q(ie,je,t) - enddo - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - endif - - do t = 1, ntiles - ! x-diffusive flux: - do j=js,je - - do i=is1, ie2 - a1(i) = p1*(q(i-1,j,t)+q(i,j,t)) + p2*(q(i-2,j,t)+q(i+1,j,t)) - enddo - - if ( .not. nested .and. grid_type<3 ) then - a1(0) = c1*q(-2,j,t) + c2*q(-1,j,t) + c3*q(0,j,t) - a1(1) = 0.5*(((2.*dxa(0,j,t)+dxa(-1,j,t))*q(0,j,t)-dxa(0,j,t)*q(-1,j,t))/(dxa(-1,j,t)+dxa(0,j,t)) & - + ((2.*dxa(1,j,t)+dxa( 2,j,t))*q(1,j,t)-dxa(1,j,t)*q( 2,j,t))/(dxa(1, j,t)+dxa(2,j,t))) - a1(2) = c3*q(1,j,t) + c2*q(2,j,t) +c1*q(3,j,t) - - a1(npx-1) = c1*q(npx-3,j,t) + c2*q(npx-2,j,t) + c3*q(npx-1,j,t) - a1(npx) = 0.5*(((2.*dxa(npx-1,j,t)+dxa(npx-2,j,t))*q(npx-1,j,t)-dxa(npx-1,j,t)*q(npx-2,j,t)) & - /(dxa(npx-2,j,t)+dxa(npx-1,j,t)) & - + ((2.*dxa(npx, j,t)+dxa(npx+1,j,t))*q(npx, j,t)-dxa(npx, j,t)*q(npx+1,j,t))/ & - (dxa(npx, j,t)+dxa(npx+1,j,t))) - a1(npx+1) = c3*q(npx,j,t) + c2*q(npx+1,j,t) + c1*q(npx+2,j,t) - endif - - if ( filter_type == 0 ) then - do i=is-1, ie+1 - if( abs(3.*(a1(i)+a1(i+1)-2.*q(i,j,t))) > abs(a1(i)-a1(i+1)) ) then - extm(i) = .true. - else - extm(i) = .false. - endif - enddo - else - do i=is-1, ie+1 - if ( (a1(i)-q(i,j,t))*(a1(i+1)-q(i,j,t)) > 0. ) then - extm(i) = .true. - else - extm(i) = .false. - endif - enddo - endif - - do i=is,ie+1 - ddx(i,j) = (q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) - if ( extm(i-1).and.extm(i) ) then - ddx(i,j) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*ddx(i,j) - elseif ( abs(ddx(i,j)) > m_slope ) then - fac = min(1., max( 0.1, ( abs(ddx(i,j))-m_slope )/m_slope) ) - ddx(i,j) = fac*0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*ddx(i,j) - else - ddx(i,j) = 0. - endif - enddo - enddo ! do j=js,je - - ! y-diffusive flux: - do j=js1,je2 - do i=is,ie - a2(i,j) = p1*(q(i,j-1,t)+q(i,j,t)) + p2*(q(i,j-2,t)+q(i,j+1,t)) - enddo - enddo - if ( .not. nested .and. grid_type<3 ) then - do i=is,ie - a2(i,0) = c1*q(i,-2,t) + c2*q(i,-1,t) + c3*q(i,0,t) - a2(i,1) = 0.5*(((2.*dya(i,0,t)+dya(i,-1,t))*q(i,0,t)-dya(i,0,t)*q(i,-1,t))/(dya(i,-1,t)+dya(i,0,t)) & - + ((2.*dya(i,1,t)+dya(i, 2,t))*q(i,1,t)-dya(i,1,t)*q(i, 2,t))/(dya(i, 1,t)+dya(i,2,t))) - a2(i,2) = c3*q(i,1,t) + c2*q(i,2,t) + c1*q(i,3,t) - enddo - - do i=is,ie - a2(i,npy-1) = c1*q(i,npy-3,t) + c2*q(i,npy-2,t) + c3*q(i,npy-1,t) - a2(i,npy) = 0.5*(((2.*dya(i,npy-1,t)+dya(i,npy-2,t))*q(i,npy-1,t)-dya(i,npy-1,t)*q(i,npy-2,t))/ & - (dya(i,npy-2,t)+dya(i,npy-1,t)) & - + ((2.*dya(i,npy,t)+dya(i,npy+1,t))*q(i,npy,t)-dya(i,npy,t)*q(i,npy+1,t))/& - (dya(i,npy,t)+dya(i,npy+1,t))) - a2(i,npy+1) = c3*q(i,npy,t) + c2*q(i,npy+1,t) + c1*q(i,npy+2,t) - enddo - endif - - if ( filter_type == 0 ) then - do j=js-1,je+1 - do i=is,ie - if( abs(3.*(a2(i,j)+a2(i,j+1)-2.*q(i,j,t))) > abs(a2(i,j)-a2(i,j+1)) ) then - ext2(i,j) = .true. - else - ext2(i,j) = .false. - endif - enddo - enddo - else - do j=js-1,je+1 - do i=is,ie - if ( (a2(i,j)-q(i,j,t))*(a2(i,j+1)-q(i,j,t)) > 0. ) then - ext2(i,j) = .true. - else - ext2(i,j) = .false. - endif - enddo - enddo - endif - - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) - if ( ext2(i,j-1) .and. ext2(i,j) ) then - ddy(i,j) = 0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t))*dx(i,j,t)*ddy(i,j) - elseif ( abs(ddy(i,j))>m_slope ) then - fac = min(1., max(0.1,(abs(ddy(i,j))-m_slope)/m_slope)) - ddy(i,j) = fac*0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t))*dx(i,j,t)*ddy(i,j) - else - ddy(i,j) = 0. - endif - enddo - enddo - - if ( zero_ocean ) then - ! Limit diffusive flux over water cells: - do j=js,je - do i=is,ie+1 - ddx(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * ddx(i,j) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * ddy(i,j) - enddo - enddo - endif - - do j=js,je - do i=is,ie - q(i,j,t) = q(i,j,t) + cd/area(i,j,t)*(ddx(i,j)-ddx(i+1,j)+ddy(i,j)-ddy(i,j+1)) - enddo - enddo - enddo ! do t = 1, ntiles - enddo ! nt=1, ntmax - -! Check slope - if ( check_slope ) then - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = (q(i,j,t) - q(i-1,j,t))/dxc(i,j,t) - ddx(i,j) = abs(ddx(i,j)) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = (q(i,j,t) - q(i,j-1,t))/dyc(i,j,t) - ddy(i,j) = abs(ddy(i,j)) - enddo - enddo - do j=js,je - do i=is,ie - a3(i,j,t) = max( ddx(i,j), ddx(i+1,j), ddy(i,j), ddy(i,j+1) ) - enddo - enddo - enddo - smax = maxval(a3(is:ie,js:je,:)) - write(*,*) 'After filter: Max_slope=', smax - endif - - end subroutine two_delta_filter - - !##################################################################### - subroutine del2_cubed_sphere(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles,& - q, area, dx, dy, dxc, dyc, sin_sg, nmax, cd, zero_ocean, mask, nested) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in):: npx, npy, ntiles - integer, intent(in):: nmax - real, intent(in):: cd - logical, intent(in):: zero_ocean - ! INPUT arrays - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - logical, intent(IN) :: nested - - ! OUTPUT arrays - real, intent(inout):: q(is-ng:ie+ng, js-ng:je+ng, ntiles) - ! Local: - real ddx(is:ie+1,js:je), ddy(is:ie,js:je+1) - integer i,j,n,t - - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - do t = 1, ntiles - ! First step: average the corners: - if ( .not. nested) then - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - endif - if ( .not. nested) then - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - endif - if ( .not. nested ) then - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx,je,t) = q(ie,je,t) - q(ie,npy,t) = q(ie,je,t) - endif - if ( .not. nested) then - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - endif - enddo - - do n=1,nmax - if( n>1 ) call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - ddx(i,j) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*(q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = dx(i,j,t)*(q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) & - *0.5*(sin_sg(4,i,j-1,t)+sin_sg(2,i,j,t)) - enddo - enddo - - if ( zero_ocean ) then - ! Limit diffusive flux over ater cells: - do j=js,je - do i=is,ie+1 - ddx(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * ddx(i,j) - enddo - enddo - do j=js,je+1 - do i=is,ie - ddy(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * ddy(i,j) - enddo - enddo - endif - - do j=js,je - do i=is,ie - q(i,j,t) = q(i,j,t) + cd/area(i,j,t)*(ddx(i,j)-ddx(i+1,j)+ddy(i,j)-ddy(i,j+1)) - enddo - enddo - enddo - enddo - - end subroutine del2_cubed_sphere - - !##################################################################### - subroutine del4_cubed_sphere(is, ie, js, je, isd, ied, jsd, jed, npx, npy, ntiles, & - q, area, dx, dy, dxc, dyc, sin_sg, nmax, zero_ocean, mask, nested) - integer, intent(in) :: is, ie, js, je - integer, intent(in) :: isd, ied, jsd, jed - integer, intent(in) :: npx, npy, nmax, ntiles - logical, intent(in) :: zero_ocean - real, intent(in):: mask(isd:ied, jsd:jed, ntiles) ! 0==water, 1==land - real, intent(in)::area(isd:ied, jsd:jed, ntiles) - real, intent(in):: dx(isd:ied, jsd:jed+1, ntiles) - real, intent(in):: dy(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dxc(isd:ied+1,jsd:jed, ntiles) - real, intent(in):: dyc(isd:ied, jsd:jed+1, ntiles) - real, intent(IN):: sin_sg(4,isd:ied,jsd:jed, ntiles) - real, intent(inout):: q(isd:ied, jsd:jed, ntiles) - logical, intent(IN) :: nested - ! Local: - ! diffusivity - real :: diff(is-1:ie+1,js-1:je+1, ntiles) - ! diffusive fluxes: - real :: fx1(is:ie+1,js:je), fy1(is:ie,js:je+1) - real :: fx2(is:ie+1,js:je,ntiles), fy2(is:ie,js:je+1,ntiles) - real :: fx4(is:ie+1,js:je,ntiles), fy4(is:ie,js:je+1,ntiles) - real, dimension(isd:ied,jsd:jed,ntiles):: d2, win, wou - real, dimension(is:ie,js:je, ntiles) :: qlow, qmin, qmax - real, parameter:: esl = 1.E-20 - integer i,j, n, t - - ! On a nested grid the haloes are not filled. Set to zero. - d2 = 0. - win = 0. - wou = 0. - - do t = 1, ntiles - do j=js-1,je+1 ; do i=is-1,ie+1 - diff(i,j,t) = cd4*area(i,j,t) ! area dependency is needed for stretched grid - enddo; enddo - - do j=js,je ; do i=is,ie - qmax(i,j,t) = q(i,j,t) * peak_fac - qmin(i,j,t) = q(i,j,t) / peak_fac - enddo; enddo - enddo - - do n=1,nmax - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - - ! First step: average the corners: - if ( .not. nested .and. n==1 ) then - do t = 1, ntiles - q(1,1,t) = (q(1,1,t)*area(1,1,t)+q(0,1,t)*area(0,1,t)+q(1,0,t)*area(1,0,t)) & - / ( area(1,1,t)+ area(0,1,t)+ area(1,0,t) ) - q(0,1,t) = q(1,1,t) - q(1,0,t) = q(1,1,t) - q(0,0,t) = q(1,1,t) - - q(ie, 1,t) = (q(ie,1,t)*area(ie,1,t)+q(npx,1,t)*area(npx,1,t)+q(ie,0,t)*area(ie,0,t)) & - / ( area(ie,1,t)+ area(npx,1,t)+ area(ie,0,t)) - q(npx,1,t) = q(ie,1,t) - q(ie, 0,t) = q(ie,1,t) - q(npx,0,t) = q(ie,1,t) - - q(1, je,t) = (q(1,je,t)*area(1,je,t)+q(0,je,t)*area(0,je,t)+q(1,npy,t)*area(1,npy,t)) & - / ( area(1,je,t)+ area(0,je,t)+ area(1,npy,t)) - q(0, je,t) = q(1,je,t) - q(1,npy,t) = q(1,je,t) - q(0,npy,t) = q(1,je,t) - - q(ie, je,t) = (q(ie,je,t)*area(ie,je,t)+q(npx,je,t)*area(npx,je,t)+q(ie,npy,t)*area(ie,npy,t)) & - / ( area(ie,je,t)+ area(npx,je,t)+ area(ie,npy,t)) - q(npx, je,t) = q(ie,je,t) - q(ie, npy,t) = q(ie,je,t) - q(npx,npy,t) = q(ie,je,t) - enddo - call fill_cubic_grid_halo(q, q, ng, 0, 0, 1, 1) - endif - - do t = 1, ntiles - - !-------------- - ! Compute del-2 - !-------------- - ! call copy_corners(q, npx, npy, 1) - do j=js,je - do i=is,ie+1 - fx2(i,j,t) = 0.25*(diff(i-1,j,t)+diff(i,j,t))*dy(i,j,t)*(q(i-1,j,t)-q(i,j,t))/dxc(i,j,t) & - *(sin_sg(1,i,j,t)+sin_sg(3,i-1,j,t)) - enddo - enddo - - ! call copy_corners(q, npx, npy, 2) - do j=js,je+1 - do i=is,ie - fy2(i,j,t) = 0.25*(diff(i,j-1,t)+diff(i,j,t))*dx(i,j,t)*(q(i,j-1,t)-q(i,j,t))/dyc(i,j,t) & - *(sin_sg(2,i,j,t)+sin_sg(4,i,j-1,t)) - enddo - enddo - - do j=js,je - do i=is,ie - d2(i,j,t) = (fx2(i,j,t)-fx2(i+1,j,t)+fy2(i,j,t)-fy2(i,j+1,t)) / area(i,j,t) - enddo - enddo - - ! qlow == low order monotonic solution - if ( zero_ocean ) then - ! Limit diffusive flux over water cells: - do j=js,je - do i=is,ie+1 - fx1(i,j) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * fx2(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - fy1(i,j) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * fy2(i,j,t) - enddo - enddo - do j=js,je - do i=is,ie - qlow(i,j,t) = q(i,j,t) + (fx1(i,j)-fx1(i+1,j)+fy1(i,j)-fy1(i,j+1)) / area(i,j,t) - d2(i,j,t) = diff(i,j,t) * d2(i,j,t) - enddo - enddo - else - do j=js,je - do i=is,ie - qlow(i,j,t) = q(i,j,t) + d2(i,j,t) - d2(i,j,t) = diff(i,j,t) * d2(i,j,t) - enddo - enddo - endif - enddo - call fill_cubic_grid_halo(d2, d2, ng, 0, 0, 1, 1) - - !--------------------- - ! Compute del4 fluxes: - !--------------------- - ! call copy_corners(d2, npx, npy, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - fx4(i,j,t) = 0.5*(sin_sg(3,i-1,j,t)+sin_sg(1,i,j,t))*dy(i,j,t)*(d2(i,j,t)-d2(i-1,j,t))/dxc(i,j,t)-fx2(i,j,t) - enddo - enddo - - ! call copy_corners(d2, npx, npy, 2) - do j=js,je+1 - do i=is,ie - fy4(i,j,t) = dx(i,j,t)*(d2(i,j,t)-d2(i,j-1,t))/dyc(i,j,t) & - *0.5*(sin_sg(2,i,j,t)+sin_sg(4,i,j-1,t))-fy2(i,j,t) - enddo - enddo - - do j=js,je - do i=is,ie - qmin(i,j,t) = min(qmin(i,j,t), q(i-1,j-1,t), q(i,j-1,t), q(i+1,j-1,t), & - q(i-1,j ,t), q(i,j ,t), q(i+1,j ,t), & - q(i-1,j+1,t), q(i,j+1,t), q(i+1,j+1,t) ) - qmax(i,j,t) = max(qmax(i,j,t), q(i-1,j-1,t), q(i,j-1,t), q(i+1,j-1,t), & - q(i-1,j ,t), q(i,j ,t), q(i+1,j ,t), & - q(i-1,j+1,t), q(i,j+1,t), q(i+1,j+1,t) ) - enddo - enddo - - !---------------- - ! Flux limitting: - !---------------- - do j=js,je - do i=is,ie - win(i,j,t) = max(0.,fx4(i, j,t)) - min(0.,fx4(i+1,j,t)) + & - max(0.,fy4(i, j,t)) - min(0.,fy4(i,j+1,t)) + esl - wou(i,j,t) = max(0.,fx4(i+1,j,t)) - min(0.,fx4(i, j,t)) + & - max(0.,fy4(i,j+1,t)) - min(0.,fy4(i, j,t)) + esl - win(i,j,t) = max(0., qmax(i,j,t) - qlow(i,j,t)) / win(i,j,t)*area(i,j,t) - wou(i,j,t) = max(0., qlow(i,j,t) - qmin(i,j,t)) / wou(i,j,t)*area(i,j,t) - enddo - enddo - enddo - call fill_cubic_grid_halo(win, win, ng, 0, 0, 1, 1) - call fill_cubic_grid_halo(wou, wou, ng, 0, 0, 1, 1) - do t = 1, ntiles - do j=js,je - do i=is,ie+1 - if ( fx4(i,j,t) > 0. ) then - fx4(i,j,t) = min(1., wou(i-1,j,t), win(i,j,t)) * fx4(i,j,t) - else - fx4(i,j,t) = min(1., win(i-1,j,t), wou(i,j,t)) * fx4(i,j,t) - endif - enddo - enddo - do j=js,je+1 - do i=is,ie - if ( fy4(i,j,t) > 0. ) then - fy4(i,j,t) = min(1., wou(i,j-1,t), win(i,j,t)) * fy4(i,j,t) - else - fy4(i,j,t) = min(1., win(i,j-1,t), wou(i,j,t)) * fy4(i,j,t) - endif - enddo - enddo - - - if ( zero_ocean ) then - ! Limit diffusive flux over ocean cells: - do j=js,je - do i=is,ie+1 - fx4(i,j,t) = max(0., min(mask(i-1,j,t), mask(i,j,t))) * fx4(i,j,t) - enddo - enddo - do j=js,je+1 - do i=is,ie - fy4(i,j,t) = max(0., min(mask(i,j-1,t), mask(i,j,t))) * fy4(i,j,t) - enddo - enddo - endif - - ! Update: - do j=js,je - do i=is,ie - q(i,j,t) = qlow(i,j,t) + (fx4(i,j,t)-fx4(i+1,j,t)+fy4(i,j,t)-fy4(i,j+1,t))/area(i,j,t) - enddo - enddo - enddo - enddo ! end n-loop - - - end subroutine del4_cubed_sphere - - !##################################################################### - subroutine handle_err(status, string) - integer, intent(in) :: status - character(len=*), intent(in) :: string - character(len=256) :: errmsg - - if (status .ne. nf_noerr) then - errmsg = nf_strerror(status) - errmsg = trim(errmsg)//trim(string) - print *, trim(errmsg) - stop 'Stopped' - endif - - end subroutine handle_err - - - !####################################################################### - ! reads the namelist file, write namelist to log file, - - subroutine read_namelist - - ! read namelist - integer :: unit=7, io_status - logical :: opened - - do - inquire( unit=unit, opened=opened ) - if( .NOT.opened )exit - unit = unit + 1 - if( unit.EQ.100 )call handle_err(-1, 'Unable to locate unit number.' ) - end do - open( unit=unit, file='input.nml', iostat=io_status ) - read( unit,filter_topo_nml, iostat=io_status ) - close(unit) - - if (io_status > 0) call handle_err(-1, 'Error reading input.nml') - - write (stdunit, nml=filter_topo_nml) - - end subroutine read_namelist - - -end program filter_topo diff --git a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_theia b/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_theia deleted file mode 100755 index 563538c4c6..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_theia +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/csh -f - -source $MODULESHOME/init/csh -source ${PWD}/../../../../modulefiles/fv3gfs/fre-nctools.theia - -ifort -o filter_topo -I${NETCDF}/include -fltconsistency -fno-alias -stack_temps -safe_cray_ptr -ftz -assume byterecl -g -O2 -i4 -real_size 64 -traceback filter_topo.F90 -L${NETCDF}/lib -L${HDF5}/lib -lnetcdf -lnetcdff -lhdf5_hl -lhdf5 diff --git a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_wcoss_cray b/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_wcoss_cray deleted file mode 100755 index 757e5e0a80..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/filter_topo/make.csh_wcoss_cray +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/csh -f - -source /opt/modules/default/init/csh -source ${PWD}/../../../../modulefiles/fv3gfs/fre-nctools.wcoss_cray - -ftn -o filter_topo -fltconsistency -fno-alias -stack_temps -safe_cray_ptr -ftz -assume byterecl -g -O2 -i4 -real_size 64 -traceback filter_topo.F90 diff --git a/release/v0/sorc/fre-nctools.fd/tools/fregrid/COPYING b/release/v0/sorc/fre-nctools.fd/tools/fregrid/COPYING deleted file mode 100644 index 93a221957b..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/fregrid/COPYING +++ /dev/null @@ -1,159 +0,0 @@ -TERMS AND CONDITIONS -0. Definitions. - -“This License” refers to version 3 of the GNU General Public License. - -“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. - -To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. - -A “covered work” means either the unmodified Program or a work based on the Program. - -To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. - -A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. - -A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Use with the GNU Affero General Public License. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. diff --git a/release/v0/sorc/fre-nctools.fd/tools/fregrid/bilinear_interp.c b/release/v0/sorc/fre-nctools.fd/tools/fregrid/bilinear_interp.c deleted file mode 100644 index 1c99cf21f0..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/fregrid/bilinear_interp.c +++ /dev/null @@ -1,1137 +0,0 @@ -#include -#include -#include -#include "globals.h" -#include "mosaic_util.h" -#include "bilinear_interp.h" -#include "mpp_io.h" -#include "mpp.h" - -#define min(a,b) (ab ? a:b) -#define sign(a,b)(b<0 ? -fabs(a):fabs(a)) - - -int max_weight_index( double *var, int nvar); -double normalize_great_circle_distance(const double *v1, const double *v2); -/*double spherical_angle(double *v1, double *v2, double *v3);*/ -double dist2side(const double *v1, const double *v2, const double *point); -void redu2x(const double *varfin, const double *yfin, int nxfin, int nyfin, double *varcrs, - int nxcrs, int nycrs, int nz, int has_missing, double missvalue); -void do_latlon_coarsening(const double *var_latlon, const double *ylat, int nlon, int nlat, int nz, - double *var_latlon_crs, int finer_steps, int has_missing, double missvalue); -void do_c2l_interp(const Interp_config *interp, int nx_in, int ny_in, int nz, const Field_config *field_in, - int nx_out, int ny_out, double *data_out, int has_missing, double missing, int fill_missing ); -void sort_index(int ntiles, int *index, double *shortest); -int get_index(const Grid_config *grid_in, const Grid_config *grid_out, int *index, - int i_in, int j_in, int l_in, int i_out, int j_out); -int get_closest_index(const Grid_config *grid_in, const Grid_config *grid_out, int *index, - int i_in, int j_in, int l_in, int i_out, int j_out); - -/******************************************************************************* - void setup_bilinear_interp( ) - !------------------------------------------------------------------! - ! calculate weights for bilinear interpolation ! - ! from cubed sphere to latlon grid ! - ! ! - ! input: ! - ! sph_corner cubed sphere corner location in spherical coor ! - ! npx, npy number of corners per tile ! - ! ntiles number of tiles ! - ! xlon, ylat latlon grid coor ! - ! nlon, nlat latlon grid dimension ! - ! ! - ! output: ! - ! c2l_index cubed sphere index for latlon interpolation ! - ! c2l_weight weights for cubsph_to_latlon interpolation ! - ! elon_cubsph lon unit vector for cubed sphere center ! - ! elat_cubsph lat unit vector for cubed sphere center ! - ! elon_latlon lon unit vector for latlon grid ! - ! elat_latlon lat unit vector for latlon grid ! - !------------------------------------------------------------------! -*******************************************************************************/ -void setup_bilinear_interp(int ntiles_in, const Grid_config *grid_in, int ntiles_out, const Grid_config *grid_out, - Interp_config *interp, unsigned int opcode) -{ - const int max_iter = 10; - double abs_center, dcub, dlon, dlat, coslat, distance; - double dist1, dist2, dist3, dist4, sum; - double *shortest; - int i, j, n, l, ic, jc, lc, icc, jcc, i_min, i_max, j_min, j_max, iter; - int n0, n1, n2, n3, n4, m0, m1; - int nx_in, ny_in, nx_out, ny_out, nxd, nyd; - double v0[3], v1[3], v2[3], v3[3], v4[3]; - int all_done; - int *found, *index; - - /* ntiles_in must be six and ntiles_out must be one */ - if(ntiles_in != 6) mpp_error("Error from bilinear_interp: source mosaic should be cubic mosaic " - "and have six tiles when using bilinear option"); - if(ntiles_out != 1) mpp_error("Error from bilinear_interp: destination mosaic should be " - "one tile lat-lon grid when using bilinear option"); - /*-----------------------------------------------------------------! - ! cubed sphere: cartesian coordinates of cell corners, ! - ! cell lenghts between corners, ! - ! cartesian and spherical coordinates of cell centers! - ! calculate latlon unit vector ! - !-----------------------------------------------------------------*/ - - /* calculation is done on the fine grid */ - nx_out = grid_out->nx_fine; - ny_out = grid_out->ny_fine; - nx_in = grid_in->nx; /* the cubic grid has same resolution on each face */ - ny_in = grid_in->ny; - nxd = nx_in + 2; - nyd = ny_in + 2; - - interp->index = (int *)malloc(3*nx_out*ny_out*sizeof(int )); - interp->weight = (double *)malloc(4*nx_out*ny_out*sizeof(double)); - - if( (opcode & READ) && interp->file_exist ) { /* reading from file */ - int nx2, ny2, fid, vid; - - /* check the size of the grid matching the size in remapping file */ - printf("NOTE: reading index and weight for bilinear interpolation from file.\n"); - fid = mpp_open(interp->remap_file, MPP_READ); - nx2 = mpp_get_dimlen(fid, "nlon"); - ny2 = mpp_get_dimlen(fid, "nlat"); - printf("grid size is nx=%d, ny=%d, remap file size is nx=%d, ny=%d.\n", nx_out, ny_out, nx2, ny2); - if(nx2 != nx_out || ny2 != ny_out ) mpp_error("bilinear_interp: size mismatch between grid size and remap file size"); - vid = mpp_get_varid(fid, "index"); - mpp_get_var_value(fid, vid, interp->index); - vid = mpp_get_varid(fid, "weight"); - mpp_get_var_value(fid, vid, interp->weight); - mpp_close(fid); - return; - } - - /*------------------------------------------------------------------ - find lower left corner on cubed sphere for given latlon location - ------------------------------------------------------------------*/ - found = (int *)malloc(nx_out*ny_out*sizeof(int)); - index = (int *)malloc(ntiles_in*3*sizeof(int)); - shortest = (double *)malloc(ntiles_in*sizeof(double)); - for(i=0; ixt[n2]; - v2[1] = grid_out->yt[n2]; - v2[2] = grid_out->zt[n2]; - distance=normalize_great_circle_distance(v1, v2); - if (distance < shortest[l]) { - shortest[l]=distance; - index[3*l] =icc; - index[3*l+1]=jcc; - index[3*l+2]=l; - } - } - /*------------------------------------------------ - determine lower left corner - ------------------------------------------------*/ - found[n0] = get_closest_index(&(grid_in[l]), grid_out, &(interp->index[3*(j*nx_out+i)]), index[3*l], - index[3*l+1], index[3*l+2], i, j); - } - } - } - } - if (iter>1) { - all_done = 1; - for(i=0; iindex[3*(j*nx_out+i)]), index[3*l], - index[3*l+1], index[3*l+2], i, j); - if (found[n0]) break; - } - } - if (! found[n0] ) mpp_error("error from bilinear_interp: couldn't find lower left corner"); - } - /*------------------------------------------------------------ - calculate shortest distance to each side of rectangle - formed by cubed sphere cell centers - special corner treatment - ------------------------------------------------------------*/ - ic=interp->index[m0]; - jc=interp->index[m0+1]; - l =interp->index[m0+2]; - if (ic==nx_in && jc==ny_in) { - /*------------------------------------------------------------ - calculate weights for bilinear interpolation near corner - ------------------------------------------------------------*/ - n1 = jc*nxd+ic; - n2 = jc*nxd+ic+1; - n3 = (jc+1)*nxd+ic; - v1[0] = grid_in[l].xt[n1]; - v1[1] = grid_in[l].yt[n1]; - v1[2] = grid_in[l].zt[n1]; - v2[0] = grid_in[l].xt[n2]; - v2[1] = grid_in[l].yt[n2]; - v2[2] = grid_in[l].zt[n2]; - v3[0] = grid_in[l].xt[n3]; - v3[1] = grid_in[l].yt[n3]; - v3[2] = grid_in[l].zt[n3]; - v0[0] = grid_out->xt[n0]; - v0[1] = grid_out->yt[n0]; - v0[2] = grid_out->zt[n0]; - dist1=dist2side(v2, v3, v0); - dist2=dist2side(v2, v1, v0); - dist3=dist2side(v1, v3, v0); - interp->weight[m1] =dist1; /* ic, jc weight */ - interp->weight[m1+1]=dist2; /* ic, jc+1 weight */ - interp->weight[m1+2]=0.; /* ic+1, jc+1 weight */ - interp->weight[m1+3]=dist3; /* ic+1, jc weight */ - - sum=interp->weight[m1]+interp->weight[m1+1]+interp->weight[m1+3]; - interp->weight[m1] /=sum; - interp->weight[m1+1]/=sum; - interp->weight[m1+3]/=sum; - } - else if (ic==0 && jc==ny_in) { - /*------------------------------------------------------------ - calculate weights for bilinear interpolation near corner - ------------------------------------------------------------*/ - - n1 = jc*nxd+ic; - n2 = jc*nxd+ic+1; - n3 = (jc+1)*nxd+ic+1; - v1[0] = grid_in[l].xt[n1]; - v1[1] = grid_in[l].yt[n1]; - v1[2] = grid_in[l].zt[n1]; - v2[0] = grid_in[l].xt[n2]; - v2[1] = grid_in[l].yt[n2]; - v2[2] = grid_in[l].zt[n2]; - v3[0] = grid_in[l].xt[n3]; - v3[1] = grid_in[l].yt[n3]; - v3[2] = grid_in[l].zt[n3]; - v0[0] = grid_out->xt[n0]; - v0[1] = grid_out->yt[n0]; - v0[2] = grid_out->zt[n0]; - dist1=dist2side(v3, v2, v0); - dist2=dist2side(v2, v1, v0); - dist3=dist2side(v3, v1, v0); - interp->weight[m1] =dist1; /* ic, jc weight */ - interp->weight[m1+1]=0.; /* ic, jc+1 weight */ - interp->weight[m1+2]=dist2; /* ic+1, jc+1 weight */ - interp->weight[m1+3]=dist3; /* ic+1, jc weight */ - - sum=interp->weight[m1]+interp->weight[m1+2]+interp->weight[m1+3]; - interp->weight[m1] /=sum; - interp->weight[m1+2]/=sum; - interp->weight[m1+3]/=sum; - } - else if (jc==0 && ic==nx_in) { - /*------------------------------------------------------------ - calculate weights for bilinear interpolation near corner - ------------------------------------------------------------*/ - n1 = jc*nxd+ic; - n2 = (jc+1)*nxd+ic; - n3 = (jc+1)*nxd+ic+1; - v1[0] = grid_in[l].xt[n1]; - v1[1] = grid_in[l].yt[n1]; - v1[2] = grid_in[l].zt[n1]; - v2[0] = grid_in[l].xt[n2]; - v2[1] = grid_in[l].yt[n2]; - v2[2] = grid_in[l].zt[n2]; - v3[0] = grid_in[l].xt[n3]; - v3[1] = grid_in[l].yt[n3]; - v3[2] = grid_in[l].zt[n3]; - v0[0] = grid_out->xt[n0]; - v0[1] = grid_out->yt[n0]; - v0[2] = grid_out->zt[n0]; - dist1=dist2side(v2, v3, v0); - dist2=dist2side(v1, v3, v0); - dist3=dist2side(v1, v2, v0); - - interp->weight[m1] =dist1; /* ic, jc weight */ - interp->weight[m1+1]=dist2; /* ic, jc+1 weight */ - interp->weight[m1+2]=dist3; /* ic+1, jc+1 weight */ - interp->weight[m1+3]=0.; /* ic+1, jc weight */ - - sum=interp->weight[m1]+interp->weight[m1+1]+interp->weight[m1+2]; - interp->weight[m1] /=sum; - interp->weight[m1+1]/=sum; - interp->weight[m1+2]/=sum; - } - else { - /*------------------------------------------------------------ - calculate weights for bilinear interpolation if no corner - ------------------------------------------------------------*/ - n1 = jc*nxd+ic; - n2 = jc*nxd+ic+1; - n3 = (jc+1)*nxd+ic; - n4 = (jc+1)*nxd+ic+1; - v1[0] = grid_in[l].xt[n1]; - v1[1] = grid_in[l].yt[n1]; - v1[2] = grid_in[l].zt[n1]; - v2[0] = grid_in[l].xt[n2]; - v2[1] = grid_in[l].yt[n2]; - v2[2] = grid_in[l].zt[n2]; - v3[0] = grid_in[l].xt[n3]; - v3[1] = grid_in[l].yt[n3]; - v3[2] = grid_in[l].zt[n3]; - v4[0] = grid_in[l].xt[n4]; - v4[1] = grid_in[l].yt[n4]; - v4[2] = grid_in[l].zt[n4]; - v0[0] = grid_out->xt[n0]; - v0[1] = grid_out->yt[n0]; - v0[2] = grid_out->zt[n0]; - dist1=dist2side(v1, v3, v0); - dist2=dist2side(v3, v4, v0); - dist3=dist2side(v4, v2, v0); - dist4=dist2side(v2, v1, v0); - - interp->weight[m1] =dist2*dist3; /* ic, jc weight */ - interp->weight[m1+1]=dist3*dist4; /* ic, jc+1 weight */ - interp->weight[m1+2]=dist4*dist1; /* ic+1, jc+1 weight */ - interp->weight[m1+3]=dist1*dist2; /* ic+1, jc weight */ - - sum=interp->weight[m1]+interp->weight[m1+1]+interp->weight[m1+2]+interp->weight[m1+3]; - interp->weight[m1] /=sum; - interp->weight[m1+1]/=sum; - interp->weight[m1+2]/=sum; - interp->weight[m1+3]/=sum; - } - } - - /* write out weight information if needed */ - if( opcode & WRITE ) { - int fid, dim_three, dim_four, dim_nlon, dim_nlat, dims[3]; - int fld_index, fld_weight; - - fid = mpp_open( interp->remap_file, MPP_WRITE); - dim_nlon = mpp_def_dim(fid, "nlon", nx_out); - dim_nlat = mpp_def_dim(fid, "nlat", ny_out); - dim_three = mpp_def_dim(fid, "three", 3); - dim_four = mpp_def_dim(fid, "four", 4); - - dims[0] = dim_three; dims[1] = dim_nlat; dims[2] = dim_nlon; - fld_index = mpp_def_var(fid, "index", NC_INT, 3, dims, 0); - dims[0] = dim_four; dims[1] = dim_nlat; dims[2] = dim_nlon; - fld_weight = mpp_def_var(fid, "weight", NC_DOUBLE, 3, dims, 0); - mpp_end_def(fid); - mpp_put_var_value(fid, fld_index, interp->index); - mpp_put_var_value(fid, fld_weight, interp->weight); - mpp_close(fid); - } - - /* release the memory */ - free(found); - free(shortest); - free(index); - - printf("\n done calculating interp_index and interp_weight\n"); -}; /* setup_bilinear_interp */ - -/*---------------------------------------------------------------------------- - void do_scalar_bilinear_interp(Mosaic_config *input, Mosaic_config *output, int varid ) - interpolate scalar data to latlon, ! - --------------------------------------------------------------------------*/ -void do_scalar_bilinear_interp(const Interp_config *interp, int vid, int ntiles_in, const Grid_config *grid_in, const Grid_config *grid_out, - const Field_config *field_in, Field_config *field_out, int finer_step, int fill_missing) -{ - int nx_in, ny_in, nx_out, ny_out, nz; - int n, ts, tn, tw, te; - int has_missing; - double missing; - double *data_fine; - - /*------------------------------------------------------------------ - determine target grid resolution - ------------------------------------------------------------------*/ - nx_out = grid_out->nx_fine; - ny_out = grid_out->ny_fine; - nx_in = grid_in->nx; - ny_in = grid_in->ny; - /* currently we are regridding one vertical level for each call to reduce the memory usage */ - nz = 1; - missing = field_in[0].var[vid].missing; - has_missing = field_in[0].var[vid].has_missing; - - data_fine = (double *)malloc(nx_out*ny_out*nz*sizeof(double)); - - do_c2l_interp(interp, nx_in, ny_in, nz, field_in, nx_out, ny_out, data_fine, has_missing, missing, fill_missing); - do_latlon_coarsening(data_fine, grid_out->latt1D_fine, nx_out, ny_out, nz, field_out->data, - finer_step, has_missing, missing); - free(data_fine); - -}; /* do_c2l_scalar_interp */ - - - -/*---------------------------------------------------------------------------- - void do_vector_bilinear_interp() - interpolate vector data to latlon, ! - --------------------------------------------------------------------------*/ -void do_vector_bilinear_interp(Interp_config *interp, int vid, int ntiles_in, const Grid_config *grid_in, int ntiles_out, - const Grid_config *grid_out, const Field_config *u_in, const Field_config *v_in, - Field_config *u_out, Field_config *v_out, int finer_step, int fill_missing) -{ - Field_config *var_cubsph; - int nx_in, ny_in, nx_out, ny_out, nxd, nyd, nz, has_missing; - int i, j, k, n, n1, n2, ts, tn, tw, te; - double missing; - double *x_latlon, *y_latlon, *z_latlon, *var_latlon; - - nx_out = grid_out->nx_fine; - ny_out = grid_out->ny_fine; - nx_in = grid_in->nx; - ny_in = grid_in->ny; - nxd = nx_in + 2; - nyd = ny_in + 2; - /* currently we are regridding one vertical level for each call to reduce the memory usage */ - nz = 1; - missing = u_in[0].var[vid].missing; - has_missing = u_in[0].var[vid].has_missing; - - - x_latlon = (double *)malloc(nx_out*ny_out*nz*sizeof(double)); - y_latlon = (double *)malloc(nx_out*ny_out*nz*sizeof(double)); - z_latlon = (double *)malloc(nx_out*ny_out*nz*sizeof(double)); - var_latlon = (double *)malloc(nx_out*ny_out*nz*sizeof(double)); - var_cubsph = (Field_config *)malloc(ntiles_in*sizeof(Field_config)); - for(n=0; nvlon_t[3*n2] + y_latlon[n1]*grid_out->vlon_t[3*n2+1] + z_latlon[n1]*grid_out->vlon_t[3*n2+2]; - } - do_latlon_coarsening(var_latlon, grid_out->latt1D_fine, nx_out, ny_out, nz, u_out->data, - finer_step, has_missing, missing); - - for(k=0; kvlat_t[3*n2] + y_latlon[n1]*grid_out->vlat_t[3*n2+1] + z_latlon[n1]*grid_out->vlat_t[3*n2+2]; - } - - do_latlon_coarsening(var_latlon, grid_out->latt1D_fine, nx_out, ny_out, nz, v_out->data, - finer_step, has_missing, missing); - - free(x_latlon); - free(y_latlon); - free(z_latlon); - -}; /* do_vector_bilinear_interp */ - - -void do_c2l_interp(const Interp_config *interp, int nx_in, int ny_in, int nz, const Field_config *field_in, - int nx_out, int ny_out, double *data_out, int has_missing, double missing, int fill_missing ) -{ - int i, j, k, nxd, nyd, ic, jc, ind, n1, tile; - double d_in[4]; - - nxd = nx_in + 2; - nyd = ny_in + 2; - - if (has_missing) { - for(k=0; kindex[3*n1]; - jc = interp->index[3*n1+1]; - tile = interp->index[3*n1+2]; - d_in[0] = field_in[tile].data[k*nxd*nyd+jc *nxd+ic]; - d_in[1] = field_in[tile].data[k*nxd*nyd+(jc+1)*nxd+ic]; - d_in[2] = field_in[tile].data[k*nxd*nyd+(jc+1)*nxd+ic+1]; - d_in[3] = field_in[tile].data[k*nxd*nyd+jc *nxd+ic+1]; - if (d_in[0] == missing || d_in[1] == missing || d_in[2] == missing || d_in[3] == missing ) { - if (fill_missing) { - ind = max_weight_index( &(interp->weight[4*n1]), 4); - data_out[k*nx_out*ny_out+n1] = d_in[ind]; - } - else { - data_out[k*nx_out*ny_out+n1] = missing; - } - } - else { - data_out[k*nx_out*ny_out+n1] = d_in[0]*interp->weight[4*n1] + d_in[1]*interp->weight[4*n1+1] - + d_in[2]*interp->weight[4*n1+2] + d_in[3]*interp->weight[4*n1+3]; - } - } - } - else { - for(k=0; kindex[3*n1]; - jc = interp->index[3*n1+1]; - tile = interp->index[3*n1+2]; - d_in[0] = field_in[tile].data[k*nxd*nyd+jc *nxd+ic]; - d_in[1] = field_in[tile].data[k*nxd*nyd+(jc+1)*nxd+ic]; - d_in[2] = field_in[tile].data[k*nxd*nyd+(jc+1)*nxd+ic+1]; - d_in[3] = field_in[tile].data[k*nxd*nyd+jc *nxd+ic+1]; - data_out[k*nx_out*ny_out+n1] = d_in[0]*interp->weight[4*n1] + d_in[1]*interp->weight[4*n1+1] - + d_in[2]*interp->weight[4*n1+2] + d_in[3]*interp->weight[4*n1+3]; - } - } - -}; /* do_c2l_interp */ - - -/*------------------------------------------------------------------ - void sort_index() - sort index by shortest - ----------------------------------------------------------------*/ -void sort_index(int ntiles, int *index, double *shortest) -{ - int l, ll, lll, i; - double *shortest_sort; - int *index_sort; - - shortest_sort = (double *)malloc(3*ntiles*sizeof(double)); - index_sort = (int *)malloc( ntiles*sizeof(int )); - - for(l=0; l<3*ntiles; l++)index_sort[l] = 0; - for(l=0; l=ll; lll--) { - index_sort[3*lll+1]=index_sort[3*lll]; - shortest_sort[lll+1]=shortest_sort[lll]; - } - for(i=0; i<3; i++) index_sort[3*ll+i]=index[3*l+i]; - shortest_sort[ll]=shortest[l]; - break; - } - } - } - - for(l=0; l<3*ntiles; l++) index[l] = index_sort[l]; - for(l=0; l< ntiles; l++) shortest[l] = shortest_sort[l]; - - free(shortest_sort); - free(index_sort); - -}; /* sort_index */ - - -/*------------------------------------------------------------------ - void get_index(ig, jg, lg) - determine lower left corner - ----------------------------------------------------------------*/ -int get_index(const Grid_config *grid_in, const Grid_config *grid_out, int *index, - int i_in, int j_in, int l_in, int i_out, int j_out) -{ - int ok, n0, n1, n2, n3, n4, n5; - int nx_in, ny_in, nx_out, ny_out; - double v0[3], v1[3], v2[3], v3[3], v4[3], v5[3]; - double angle_1, angle_1a, angle_1b, angle_2, angle_2a, angle_2b; - double angle_3, angle_3a, angle_3b, angle_4, angle_4a, angle_4b; - - ok=1; - nx_in = grid_in->nx_fine; - ny_in = grid_in->nx_fine; - nx_out = grid_out->nx; - ny_out = grid_out->nx; - n0 = j_out*nx_out + i_out; - n1 = j_in*nx_in + i_in; - n2 = j_in*nx_in + i_in+1; - n3 = (j_in+1)*nx_in + i_in; - v0[0] = grid_out->xt[n1]; - v0[1] = grid_out->yt[n1]; - v0[2] = grid_out->zt[n1]; - v1[0] = grid_in->xt[n1]; - v1[1] = grid_in->yt[n1]; - v1[2] = grid_in->zt[n1]; - v2[0] = grid_in->xt[n2]; - v2[1] = grid_in->yt[n2]; - v2[2] = grid_in->zt[n2]; - v3[0] = grid_in->xt[n3]; - v3[1] = grid_in->yt[n3]; - v3[2] = grid_in->zt[n3]; - angle_1 = spherical_angle(v1, v2, v3); - angle_1a= spherical_angle(v1, v2, v0); - angle_1b= spherical_angle(v1, v3, v0); - - if (max(angle_1a,angle_1b)xt[n4]; - v4[1] = grid_in->yt[n4]; - v4[2] = grid_in->zt[n4]; - angle_2 =spherical_angle(v1, v3, v4); - angle_2a=angle_1b; - angle_2b=spherical_angle(v1, v4, v0); - if (max(angle_2a,angle_2b)xt[n5]; - v5[1] = grid_in->yt[n5]; - v5[2] = grid_in->zt[n5]; - angle_3 =spherical_angle(v1, v4, v5); - angle_3a=angle_2b; - angle_3b=spherical_angle(v1, v5, v0); - if (max(angle_3a,angle_3b)1 && j_in>1) { - index[0]=i_in-1; - index[1]=j_in-1; - index[2]=l_in; - } - else { - angle_4 =spherical_angle(v1, v5, v2); - angle_4a=angle_3b; - angle_4b=spherical_angle(v1, v2, v0); - if (max(angle_4a,angle_4b)nx; - ny_in = grid_in->ny; - nxd = nx_in + 2; - nx_out = grid_out->nx_fine; - ny_out = grid_out->ny_fine; - n0 = j_out*nx_out+i_out; - n1 = j_in*nxd+i_in; - n2 = j_in*nxd+i_in+1; - n3 = (j_in+1)*nxd+i_in; - v1[0] = grid_in->xt[n1]; - v1[1] = grid_in->yt[n1]; - v1[2] = grid_in->zt[n1]; - v2[0] = grid_in->xt[n2]; - v2[1] = grid_in->yt[n2]; - v2[2] = grid_in->zt[n2]; - v3[0] = grid_in->xt[n3]; - v3[1] = grid_in->yt[n3]; - v3[2] = grid_in->zt[n3]; - v0[0] = grid_out->xt[n0]; - v0[1] = grid_out->yt[n0]; - v0[2] = grid_out->zt[n0]; - angle_1 =spherical_angle(v1, v2, v3); - angle_1a=spherical_angle(v1, v2, v0); - angle_1b=spherical_angle(v1, v3, v0); - if (max(angle_1a,angle_1b) <= angle_1) { - if (i_in==nx_in && j_in==ny_in) { - angle_11 =spherical_angle(v2, v3, v1); - angle_11a=spherical_angle(v2, v1, v0); - angle_11b=spherical_angle(v2, v3, v0); - } - else { - n4 = (j_in+1)*nxd+i_in+1; - v4[0] = grid_in->xt[n4]; - v4[1] = grid_in->yt[n4]; - v4[2] = grid_in->zt[n4]; - angle_11 =spherical_angle(v4, v3, v2); - angle_11a=spherical_angle(v4, v2, v0); - angle_11b=spherical_angle(v4, v3, v0); - } - if (max(angle_11a,angle_11b)<=angle_11) { - found = 1; - index[0]=i_in; - index[1]=j_in; - index[2]=l_in; - } - } - else { - n4 = j_in*nxd+i_in-1; - v4[0] = grid_in->xt[n4]; - v4[1] = grid_in->yt[n4]; - v4[2] = grid_in->zt[n4]; - angle_2 =spherical_angle(v1,v3,v4); - angle_2a=angle_1b; - angle_2b=spherical_angle(v1,v4,v0); - if (max(angle_2a,angle_2b)<=angle_2) { - if (i_in==1 && j_in==ny_in) { - angle_22 =spherical_angle(v3, v1, v4); - angle_22a=spherical_angle(v3, v4, v0); - angle_22b=spherical_angle(v3, v1, v0); - } - else { - n5 = (j_in+1)*nxd+i_in-1; - n6 = j_in *nxd+i_in-1; - v5[0] = grid_in->xt[n5]; - v5[1] = grid_in->yt[n5]; - v5[2] = grid_in->zt[n5]; - v6[0] = grid_in->xt[n6]; - v6[1] = grid_in->yt[n6]; - v6[2] = grid_in->zt[n6]; - angle_22 =spherical_angle(v5, v3, v6); - angle_22a=spherical_angle(v5, v6, v0); - angle_22b=spherical_angle(v5, v3, v0); - } - if (max(angle_22a,angle_22b)<=angle_22) { - found=1; - index[0]=i_in-1; - index[1]=j_in; - index[2]=l_in; - } - } - else { - n5 = j_in*nxd+i_in-1; - n6 = (j_in-1)*nxd+i_in; - v5[0] = grid_in->xt[n5]; - v5[1] = grid_in->yt[n5]; - v5[2] = grid_in->zt[n5]; - v6[0] = grid_in->xt[n6]; - v6[1] = grid_in->yt[n6]; - v6[2] = grid_in->zt[n6]; - angle_3 =spherical_angle(v1, v5, v6); - angle_3a=angle_2b; - angle_3b=spherical_angle(v1, v6, v0); - if (max(angle_3a,angle_3b)<=angle_3 && i_in>1 && j_in>1) { - n7 = (j_in-1)*nxd+i_in-1; - v7[0] = grid_in->xt[n7]; - v7[1] = grid_in->yt[n7]; - v7[2] = grid_in->zt[n7]; - angle_33 =spherical_angle(v7, v6, v5); - angle_33a=spherical_angle(v7, v5, v0); - angle_33b=spherical_angle(v7, v6, v0); - if (max(angle_33a,angle_33b)<=angle_33) { - found=1; - index[0]=i_in-1; - index[1]=j_in-1; - index[2]=l_in; - } - } - else { - angle_4 =spherical_angle(v1, v6, v2); - angle_4a=angle_3b; - angle_4b=spherical_angle(v1, v2, v0); - if (max(angle_4a,angle_4b)<=angle_4) { - if (i_in==nx_in && j_in==1) { - angle_44 =spherical_angle(v2, v1, v6); - angle_44a=spherical_angle(v2, v6, v0); - angle_44b=spherical_angle(v2, v1, v0); - } - else { - n8 = (j_in-1)*nxd+i_in+1; - v8[0] = grid_in->xt[n8]; - v8[1] = grid_in->yt[n8]; - v8[2] = grid_in->zt[n8]; - angle_44 =spherical_angle(v8, v2, v6); - angle_44a=spherical_angle(v8, v6, v0); - angle_44b=spherical_angle(v8, v2, v0); - } - if (max(angle_44a,angle_44b)<=angle_44) { - found=1; - index[0]=i_in; - index[1]=j_in-1; - index[2]=l_in; - } - } - } - } - } - return found; - -}; /* get_closest_index */ - - - -/*-------------------------------------------------------------------------- - -calculate normalized great circle distance between v1 and v2 -double normalize_great_circle_distance(v1, v2) ----------------------------------------------------------------------------*/ -double normalize_great_circle_distance(const double *v1, const double *v2) -{ - double dist; - - dist=(v1[0]*v2[0]+v1[1]*v2[1]+v1[2]*v2[2]) - /sqrt((v1[0]*v1[0]+v1[1]*v1[1]+v1[2]*v1[2]) - *(v2[0]*v2[0]+v2[1]*v2[1]+v2[2]*v2[2])); - dist = sign(min(1.,fabs(dist)),dist); - dist = acos(dist); - return dist; - -}; /* normalize_great_circle_distance */ - -/*------------------------------------------------------------------ - double spherical_angle(v1, v2, v3) - - calculate spherical angle of a triangle formed by v1, v2 and v3 at v1 - ------------------------------------------------------------------*/ -/* double spherical_angle(double *v1, double *v2, double *v3) */ -/* { */ -/* double angle; */ -/* double px, py, pz, qx, qy, qz, abs_p, abs_q; */ - -/* /* vector product between v1 and v2 */ -/* px = v1[1]*v2[2] - v1[2]*v2[1]; */ -/* py = v1[2]*v2[0] - v1[0]*v2[2]; */ -/* pz = v1[0]*v2[1] - v1[1]*v2[0]; */ -/* /* vector product between v1 and v3 */ -/* qx = v1[1]*v3[2] - v1[2]*v3[1]; */ -/* qy = v1[2]*v3[0] - v1[0]*v3[2]; */ -/* qz = v1[0]*v3[1] - v1[1]*v3[0]; */ - -/* /* angle between p and q */ -/* abs_p=px*px+py*py+pz*pz; */ -/* abs_q=qx*qx+qy*qy+qz*qz; */ -/* if (abs_p*abs_q==0.) */ -/* angle=0.; */ -/* else { */ -/* angle = (px*qx+py*qy+pz*qz)/sqrt(abs_p*abs_q); */ -/* angle = sign(min(1.,fabs(angle)),angle); */ -/* angle = acos(angle); */ -/* } */ - -/* return angle; */ -/* }; /* spherical_angle */ - -/*--------------------------------------------------------------------- - double dist2side(v1, v2, point) - calculate shortest normalized distance on sphere - from point to straight line defined by v1 and v2 - ------------------------------------------------------------------*/ -double dist2side(const double *v1, const double *v2, const double *point) -{ - double angle, side; - - angle = spherical_angle(v1, v2, point); - side = normalize_great_circle_distance(v1, point); - - return (asin(sin(side)*sin(angle))); - -};/* dist2side */ - - -int max_weight_index( double *var, int nvar) -{ - - int ind, i; - - ind = 0; - - for(i=1; ivar[ind]) ind = i; - } - - return ind; -} - -/*------------------------------------------------------------------------------ - void do_latlon_coarsening(var_latlon, ylat, nlon, nlat, nz, - var_latlon_crs, nlon_crs, nlat_crs, - finer_steps, misval, varmisval) - - calculate variable on coarser latlon grid - by doubling spatial resolution and preserving volume means - ---------------------------------------------------------------------------*/ -void do_latlon_coarsening(const double *var_latlon, const double *ylat, int nlon, int nlat, int nz, - double *var_latlon_crs, int finer_steps, int has_missing, double missvalue) -{ - - double *var_latlon_old, *ylat_old, *var_latlon_new; - double dlat; - int nlon_old, nlat_old, nlon_new, nlat_new, steps, i, j; - int nlon_crs, nlat_crs; - - nlon_crs=nlon/pow(2,finer_steps); - nlat_crs=(nlat-1)/pow(2,finer_steps)+1; - switch (finer_steps) { - case 0: - if (nlon_crs !=nlon || nlat_crs != nlat) mpp_error("bilinear_interp(do_latlon_coarsening): grid dimensions don't match"); - for(i=0; i -#include -#include -#include -#include -#include "constant.h" -#include "globals.h" -#include "create_xgrid.h" -#include "mosaic_util.h" -#include "conserve_interp.h" -#include "fregrid_util.h" -#include "mpp.h" -#include "mpp_io.h" -#include "read_mosaic.h" - -#define AREA_RATIO (1.e-3) -#define MAXVAL (1.e20) -#define TOLERANCE (1.e-10) -/******************************************************************************* - void setup_conserve_interp - Setup the interpolation weight for conservative interpolation -*******************************************************************************/ -void setup_conserve_interp(int ntiles_in, const Grid_config *grid_in, int ntiles_out, - Grid_config *grid_out, Interp_config *interp, unsigned int opcode) -{ - int n, m, i, ii, jj, nx_in, ny_in, nx_out, ny_out, tile; - size_t nxgrid, nxgrid2, nxgrid_prev; - int *i_in=NULL, *j_in=NULL, *i_out=NULL, *j_out=NULL; - int *tmp_t_in=NULL, *tmp_i_in=NULL, *tmp_j_in=NULL, *tmp_i_out=NULL, *tmp_j_out=NULL; - double *tmp_di_in, *tmp_dj_in; - double *xgrid_area=NULL, *tmp_area=NULL, *xgrid_clon=NULL, *xgrid_clat=NULL; - - double garea; - typedef struct{ - double *area; - double *clon; - double *clat; - } CellStruct; - CellStruct *cell_in; - - garea = 4*M_PI*RADIUS*RADIUS; - - if( opcode & READ) { - for(n=0; n= grid_out[n].isc && - j_out[i] <= grid_out[n].jec && j_out[i] >= grid_out[n].jsc ) - ind[interp[n].nxgrid++] = i; - } - interp[n].i_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].j_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].i_out = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].j_out = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].area = (double *)malloc(interp[n].nxgrid*sizeof(double)); - interp[n].t_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - - for(i=0; i< interp[n].nxgrid; i++) { - interp[n].i_in [i] = i_in [ind[i]]; - interp[n].j_in [i] = j_in [ind[i]]; - interp[n].t_in [i] = t_in [ind[i]] - 1; - interp[n].i_out[i] = i_out[ind[i]] - grid_out[n].isc; - interp[n].j_out[i] = j_out[ind[i]] - grid_out[n].jsc; - interp[n].area [i] = xgrid_area[ind[i]]; - } - if(opcode & CONSERVE_ORDER2) { - interp[n].di_in = (double *)malloc(interp[n].nxgrid*sizeof(double)); - interp[n].dj_in = (double *)malloc(interp[n].nxgrid*sizeof(double)); - for(i=0; i< interp[n].nxgrid; i++) { - interp[n].di_in[i] = xgrid_clon[ind[i]]; - interp[n].dj_in[i] = xgrid_clat[ind[i]]; - } - } - free(t_in); - free(ind); - } - } - if(mpp_pe() == mpp_root_pe())printf("NOTE: Finish reading index and weight for conservative interpolation from file.\n"); - } - else { - i_in = (int *)malloc(MAXXGRID * sizeof(int )); - j_in = (int *)malloc(MAXXGRID * sizeof(int )); - i_out = (int *)malloc(MAXXGRID * sizeof(int )); - j_out = (int *)malloc(MAXXGRID * sizeof(int )); - xgrid_area = (double *)malloc(MAXXGRID * sizeof(double)); - xgrid_clon = (double *)malloc(MAXXGRID * sizeof(double)); - xgrid_clat = (double *)malloc(MAXXGRID * sizeof(double));; - cell_in = (CellStruct *)malloc(ntiles_in * sizeof(CellStruct)); - for(m=0; m y_min ) { - if(j < jstart ) jstart = j; - } - if( yy < y_max ) { - if(j > jend ) jend = j; - } - - } - jstart = max(0, jstart-1); - jend = min(ny_in-1, jend+1); - ny_now = jend-jstart+1; - - if(opcode & CONSERVE_ORDER1) { - nxgrid = create_xgrid_2dx2d_order1(&nx_in, &ny_now, &nx_out, &ny_out, grid_in[m].lonc+jstart*(nx_in+1), - grid_in[m].latc+jstart*(nx_in+1), grid_out[n].lonc, grid_out[n].latc, - mask, i_in, j_in, i_out, j_out, xgrid_area); - for(i=0; i 0) { - g_i_in = (int *)malloc(g_nxgrid*sizeof(int )); - g_j_in = (int *)malloc(g_nxgrid*sizeof(int )); - g_area = (double *)malloc(g_nxgrid*sizeof(double)); - g_clon = (double *)malloc(g_nxgrid*sizeof(double)); - g_clat = (double *)malloc(g_nxgrid*sizeof(double)); - mpp_gather_field_int (nxgrid, i_in, g_i_in); - mpp_gather_field_int (nxgrid, j_in, g_j_in); - mpp_gather_field_double(nxgrid, xgrid_area, g_area); - mpp_gather_field_double(nxgrid, xgrid_clon, g_clon); - mpp_gather_field_double(nxgrid, xgrid_clat, g_clat); - for(i=0; i 0) { - nxgrid_prev = interp[n].nxgrid; - interp[n].nxgrid += nxgrid; - if(nxgrid_prev == 0 ) { - interp[n].i_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].j_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].i_out = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].j_out = (int *)malloc(interp[n].nxgrid*sizeof(int )); - interp[n].area = (double *)malloc(interp[n].nxgrid*sizeof(double)); - interp[n].t_in = (int *)malloc(interp[n].nxgrid*sizeof(int )); - for(i=0; i0) */ - } - } - if(opcode & CONSERVE_ORDER2) { - /* subtrack the grid_in clon and clat to get the distance between xgrid and grid_in */ - for(n=0; n 0) { - if( fabs(cell_in[n].area[ii]-grid_in[n].cell_area[ii])/grid_in[n].cell_area[ii] < AREA_RATIO ) { - cell_in[n].clon[ii] /= cell_in[n].area[ii]; - cell_in[n].clat[ii] /= cell_in[n].area[ii]; - } - else { - n0 = j*(nx_in+1)+i; n1 = j*(nx_in+1)+i+1; - n2 = (j+1)*(nx_in+1)+i+1; n3 = (j+1)*(nx_in+1)+i; - x1_in[0] = grid_in[n].lonc[n0]; y1_in[0] = grid_in[n].latc[n0]; - x1_in[1] = grid_in[n].lonc[n1]; y1_in[1] = grid_in[n].latc[n1]; - x1_in[2] = grid_in[n].lonc[n2]; y1_in[2] = grid_in[n].latc[n2]; - x1_in[3] = grid_in[n].lonc[n3]; y1_in[3] = grid_in[n].latc[n3]; - n1_in = fix_lon(x1_in, y1_in, 4, M_PI); - lon_in_avg = avgval_double(n1_in, x1_in); - clon = poly_ctrlon(x1_in, y1_in, n1_in, lon_in_avg); - clat = poly_ctrlat (x1_in, y1_in, n1_in ); - cell_in[n].clon[ii] = clon/grid_in[n].cell_area[ii]; - cell_in[n].clat[ii] = clat/grid_in[n].cell_area[ii]; - } - } - } - } - for(n=0; n 0) { - size_t start[4], nwrite[4]; - int fid, dim_string, dim_ncells, dim_two, dims[4]; - int id_xgrid_area, id_tile1_dist; - int id_tile1_cell, id_tile2_cell, id_tile1; - int *gdata_int, *ldata_int; - double *gdata_dbl; - - fid = mpp_open( interp[n].remap_file, MPP_WRITE); - dim_string = mpp_def_dim(fid, "string", STRING); - dim_ncells = mpp_def_dim(fid, "ncells", nxgrid); - dim_two = mpp_def_dim(fid, "two", 2); - dims[0] = dim_ncells; dims[1] = dim_two; - id_tile1 = mpp_def_var(fid, "tile1", NC_INT, 1, &dim_ncells, 1, - "standard_name", "tile_number_in_mosaic1"); - id_tile1_cell = mpp_def_var(fid, "tile1_cell", NC_INT, 2, dims, 1, - "standard_name", "parent_cell_indices_in_mosaic1"); - id_tile2_cell = mpp_def_var(fid, "tile2_cell", NC_INT, 2, dims, 1, - "standard_name", "parent_cell_indices_in_mosaic2"); - id_xgrid_area = mpp_def_var(fid, "xgrid_area", NC_DOUBLE, 1, &dim_ncells, 2, - "standard_name", "exchange_grid_area", "units", "m2"); - if(opcode & CONSERVE_ORDER2) id_tile1_dist = mpp_def_var(fid, "tile1_distance", NC_DOUBLE, 2, dims, 1, - "standard_name", "distance_from_parent1_cell_centroid"); - mpp_end_def(fid); - for(i=0; i<4; i++) { - start[i] = 0; nwrite[i] = 1; - } - nwrite[0] = nxgrid; - gdata_int = (int *)malloc(nxgrid*sizeof(int)); - if(interp[n].nxgrid>0) ldata_int = (int *)malloc(interp[n].nxgrid*sizeof(int)); - mpp_gather_field_int(interp[n].nxgrid, interp[n].t_in, gdata_int); - for(i=0; i0)free(ldata_int); - - gdata_dbl = (double *)malloc(nxgrid*sizeof(double)); - mpp_gather_field_double(interp[n].nxgrid, interp[n].area, gdata_dbl); - mpp_put_var_value(fid, id_xgrid_area, gdata_dbl); - - if(opcode & CONSERVE_ORDER2) { - start[1] = 0; - mpp_gather_field_double(interp[n].nxgrid, interp[n].di_in, gdata_dbl); - mpp_put_var_value_block(fid, id_tile1_dist, start, nwrite, gdata_dbl); - start[1] = 1; - mpp_gather_field_double(interp[n].nxgrid, interp[n].dj_in, gdata_dbl); - mpp_put_var_value_block(fid, id_tile1_dist, start, nwrite, gdata_dbl); - } - - free(gdata_dbl); - mpp_close(fid); - } - } - } - if(mpp_pe() == mpp_root_pe())printf("NOTE: done calculating index and weight for conservative interpolation\n"); - } - - /* check the input area match exchange grid area */ - if(opcode & CHECK_CONSERVE) { - int nx1, ny1, max_i, max_j, i, j; - double max_ratio, ratio_change; - double *area2; - - /* sum over exchange grid to get the area of grid_in */ - nx1 = grid_out[0].nxc; - ny1 = grid_out[0].nyc; - - area2 = (double *)malloc(nx1*ny1*sizeof(double)); - - for(n=0; n max_ratio) { - max_ratio = ratio_change; - max_i = i; - max_j = j; - } - if( ratio_change > 1.e-4 ) { - printf("(i,j)=(%d,%d), change = %g, area1=%g, area2=%g\n", i, j, ratio_change, grid_out[n].cell_area[ii],area2[ii]); - } - } - ii = max_j*nx1+max_i; - printf("The maximum ratio change at (%d,%d) = %g, area1=%g, area2=%g\n", max_i, max_j, max_ratio, grid_out[n].cell_area[ii],area2[ii]); - - } - - free(area2); - - } - - free(i_in); - free(j_in); - free(i_out); - free(j_out); - free(xgrid_area); - if(xgrid_clon) free(xgrid_clon); - if(xgrid_clat) free(xgrid_clat); - -}; /* setup_conserve_interp */ - - -/******************************************************************************* - void do_scalar_conserve_interp( ) - doing conservative interpolation -*******************************************************************************/ -void do_scalar_conserve_interp(Interp_config *interp, int varid, int ntiles_in, const Grid_config *grid_in, - int ntiles_out, const Grid_config *grid_out, const Field_config *field_in, - Field_config *field_out, unsigned int opcode, int nz) -{ - int nx1, ny1, nx2, ny2, i1, j1, i2, j2, tile, n, m, i, j, n1, n2; - int k, n0; - int has_missing, halo, interp_method; - int weight_exist; - int cell_measures, cell_methods; - double area, missing, di, dj, area_missing; - double *out_area; - double gsum_out; - int monotonic; - Monotone_config *monotone_data; - - gsum_out = 0; - interp_method = field_in->var[varid].interp_method; - halo = 0; - monotonic = 0; - if(interp_method == CONSERVE_ORDER2) { - halo = 1; - monotonic = opcode & MONOTONIC; - } - - area_missing = field_in->var[varid].area_missing; - has_missing = field_in->var[varid].has_missing; - weight_exist = grid_in[0].weight_exist; - cell_measures = field_in->var[varid].cell_measures; - cell_methods = field_in->var[varid].cell_methods; - - missing = -MAXVAL; - if(has_missing) missing = field_in->var[varid].missing; - - if( nz>1 && has_missing ) mpp_error("conserve_interp: has_missing should be false when nz > 1"); - if( nz>1 && cell_measures ) mpp_error("conserve_interp: cell_measures should be false when nz > 1"); - if( nz>1 && cell_methods == CELL_METHODS_SUM ) mpp_error("conserve_interp: cell_methods should not be sum when nz > 1"); - /* if( nz>1 && monotonic ) mpp_error("conserve_interp: monotonic should be false when nz > 1"); */ - - if(monotonic) monotone_data = (Monotone_config *)malloc(ntiles_in*sizeof(Monotone_config)); - - for(m=0; m monotone_data[n].f_bar_max[n1] ) monotone_data[n].f_bar_max[n1] = field_in[n].data[n2]; - if( field_in[n].data[n2] < monotone_data[n].f_bar_min[n1] ) monotone_data[n].f_bar_min[n1] = field_in[n].data[n2]; - } - } - } - } - - xdata = (double *)malloc(interp[m].nxgrid*sizeof(double)); - for(n=0; n monotone_data[tile].f_max[n1]) monotone_data[tile].f_max[n1] = xdata[n]; - if( xdata[n] < monotone_data[tile].f_min[n1]) monotone_data[tile].f_min[n1] = xdata[n]; - } - } - else - xdata[n] = missing; - } - - /* get the global f_max and f_min */ - if(mpp_npes() >1) { - for(n=0; n monotone_data[tile].f_bar_max[n1] ) { - /* z1l: Due to truncation error, we might get xdata[n] > f_bar_max[n1]. So - we allow some tolerance. What is the suitable tolerance? */ - xdata[n] = f_bar + ((xdata[n]-f_bar)/(monotone_data[tile].f_max[n1]-f_bar)) - * (monotone_data[tile].f_bar_max[n1]-f_bar); - if( xdata[n] > monotone_data[tile].f_bar_max[n1]) { - if(xdata[n] - monotone_data[tile].f_bar_max[n1] < TOLERANCE ) xdata[n] = monotone_data[tile].f_bar_max[n1]; - if( xdata[n] > monotone_data[tile].f_bar_max[n1]) { - printf(" n = %d, n1 = %d, xdata = %f, f_bar_max=%f\n", n, n1, xdata[n], monotone_data[tile].f_bar_max[n1]); - mpp_error(" xdata is greater than f_bar_max "); - } - } - } - else if( monotone_data[tile].f_min[n1] < monotone_data[tile].f_bar_min[n1] ) { - /* z1l: Due to truncation error, we might get xdata[n] < f_bar_min[n1]. So - we allow some tolerance. What is the suitable tolerance? */ - xdata[n] = f_bar + ((xdata[n]-f_bar)/(monotone_data[tile].f_min[n1]-f_bar)) * (monotone_data[tile].f_bar_min[n1]-f_bar); - if( xdata[n] < monotone_data[tile].f_bar_min[n1]) { - if(monotone_data[tile].f_bar_min[n1] - xdata[n]< TOLERANCE ) xdata[n] = monotone_data[tile].f_bar_min[n1]; - if( xdata[n] < monotone_data[tile].f_bar_min[n1]) { - printf(" n = %d, n1 = %d, xdata = %f, f_bar_min=%f\n", n, n1, xdata[n], monotone_data[tile].f_bar_min[n1]); - mpp_error(" xdata is less than f_bar_min "); - } - } - } - } - for(n=0; n 0) gsum_out += field_out[m].data[i]; - } - } - - if( cell_measures || ( !(opcode & TARGET) && !(cell_methods == CELL_METHODS_SUM)) ) { - for(i=0; i 0) - field_out[m].data[i] /= out_area[i]; - else - field_out[m].data[i] = missing; - } - } - else if( opcode & TARGET ) { - for(i=0; i 0) - for(k=0; kvar[varid].name, gsum_in, gsum_out, gsum_out-gsum_in); - - } - - -}; /* do_scalar_conserve_interp */ - - -/******************************************************************************* - void do_vector_conserve_interp( ) - doing conservative interpolation -*******************************************************************************/ -void do_vector_conserve_interp(Interp_config *interp, int varid, int ntiles_in, const Grid_config *grid_in, int ntiles_out, - const Grid_config *grid_out, const Field_config *u_in, const Field_config *v_in, - Field_config *u_out, Field_config *v_out, unsigned int opcode) -{ - int nx1, ny1, nx2, ny2, i1, j1, i2, j2, tile, n, m, i; - double area, missing, tmp_x, tmp_y; - double *out_area; - - missing = u_in->var[varid].missing; - /* first rotate input data */ - for(n = 0; n < ntiles_in; n++) { - if(grid_in[n].rotate) { - nx1 = grid_in[n].nx; - ny1 = grid_in[n].ny; - for(i=0; i 0) { - u_out[m].data[i] /= grid_out[m].area[i]; - v_out[m].data[i] /= grid_out[m].area[i]; - } - else { - u_out[m].data[i] = missing; - v_out[m].data[i] = missing; - } - } - } - else { - for(i=0; i 0) { - u_out[m].data[i] /= out_area[i]; - v_out[m].data[i] /= out_area[i]; - } - else { - u_out[m].data[i] = missing; - v_out[m].data[i] = missing; - } - } - } - /* rotate the data if needed */ - if(grid_out[m].rotate) { - for(i=0; i -#include -#include -#include -#include -#include -#include "globals.h" -#include "constant.h" -#include "read_mosaic.h" -#include "mpp_io.h" -#include "mpp.h" -#include "mosaic_util.h" -#include "conserve_interp.h" -#include "bilinear_interp.h" -#include "fregrid_util.h" - -char *usage[] = { - "", - " fregrid --input_mosaic input_mosaic --input_file input_file ", - " [--scalar_field scalar_fld] [--u_field u_fld] [--v_field v_fld] ", - " [--output_mosaic output_mosaic] [--lonBegin #decimal] [--lonEnd #decimal] ", - " [--latBegin #decimal] [--latEnd #decimal] [--nlon #integer] ", - " [--nlat #integer] [--KlevelBegin #integer] [--KlevelEnd #integer] ", - " [--LstepBegin #integer] [--LstepEnd #integer] ", - " [--output_file output_file] [--input_dir input_dir] ", - " [--output_dir output_dir] [--remap_file remap_file] ", - " [--interp_method method] [--grid_type grid_type] [--test_case test_case] ", - " [--symmetry] [--target_grid] [--finer_step #] [--fill_missing] ", - " [--center_y] [--check_conserve] [--weight_file weight_file] ", - " [--weight_field --weight_field] [--dst_vgrid dst_vgrid] ", - " [--extrapolate] [--stop_crit #] [--standard_dimension] ", - " [--associated_file_dir dir] ", - " ", - "fregrid remaps data (scalar or vector) from input_mosaic onto ", - "output_mosaic. Note that the target grid also could be specified ", - "through lonBegin, lonEnd, latBegin, latEnd, nlon and nlat. Currently ", - "only T-cell scalar regridding and AGRID vector regridding is ", - "available. Bilinear interpolation is implemented only for cubic grid ", - "vector interpolation. The interpolation algorithm used is controlled ", - "by --interp_method with default 'conserve_order1'. Currently the ", - "'conserve_order1', 'conserve_order2' and 'bilinear' remapping schemes ", - "are implemented. 'bilinear' is only used to remap data from cubic grid ", - "to latlon grid. Alternative schemes can be added if needed. fregrid ", - "expects NetCDF format input. scalar_field and/or u_field/v_field must ", - "be specified. u_fld and v_fld must be paired together. ", - " ", - "fregrid takes the following flags: ", - " ", - "REQUIRED: ", - " ", - "--input_mosaic input_mosaic specify the input mosaic information. This file ", - " contains list of tile files which specify the grid ", - " information for each tile. ", - " ", - "OPTIONAL FLAGS ", - " ", - "--input_file input_file specify the input file name. The suffix '.nc' can be ", - " omitted. The suffix 'tile#' should not present for ", - " multiple-tile files. The number of files must be 1 for ", - " scalar regridding and can be 1 or 2 for vector ", - " regridding. File path should not be includes. ", - " ", - "--scalar_field scalar_fld specify the scalar field name to be regridded. The ", - " multiple entry field names are seperated by comma. ", - " ", - "--u_field u_fld specify the vector field u-componentname to be ", - " regridded. The multiple entry field names are seperated ", - " by comma. u_field must be paired together with v_field. ", - " ", - "--v_field v_fld specify the vector field v-componentname to be ", - " regridded. The multiple entry field names are seperated ", - " by comma. v_field must be paired together with u_field. ", - " ", - "--output_mosaic output_mosaic specify the output mosaic information. This file ", - " contains list of tile files which specify the grid ", - " information for each tile. If output_mosaic is not ", - " specified, nlon and nlat must be specified. ", - " ", - "--lonBegin #decimal specify the starting longitude(in degree) of the ", - " geographical region of the target grid on which the ", - " output is desired. The default value is 0. ", - " ", - "--lonEnd #decimal specify the ending longitude(in degree) of the ", - " geographical region of the target grid on which the ", - " output is desired. The default value is 360. ", - " ", - "--latBegin #decimal specify the starting latitude(in degree) of the ", - " geographical region of the target grid on which the ", - " output is desired. The default value is -90. ", - " ", - "--latEnd #decimal specify the ending latitude(in degree) of the ", - " geographical region of the target grid on which the ", - " output is desired. The default value is 90. ", - " ", - "--nlon #integer specify number of grid box cells in x-direction for a ", - " regular lat-lon grid. ", - " ", - "--nlat #integer specify number of grid box cells in y-direction for a ", - " regular lat-lon grid. ", - " ", - "--KlevelBegin #integer specify begin index of the k-level (depth axis) that ", - " to be regridded. ", - " ", - "--KlevelEnd #integer specify end index of the k-level (depth axis) that ", - " to be regridded. ", - " ", - "--LstepBegin #integer specify the begin index of L-step (time axis) that ", - " to be regridded. ", - " ", - "--LstepEnd #integer specify the end index of L-step (time axis) that ", - " to be regridded. ", - " ", - "--output_file output_file specify the output file name. If not presented, ", - " output_file will take the value of input_file. The ", - " suffix '.nc' can be omitted. The suffix 'tile#' should ", - " not present for multiple-tile files. The number of ", - " files must be 1 for scalar regridding and can be 1 or 2 ", - " for vector regridding. File path should not be includes.", - " ", - "--input_dir input_dir specify the path that stores input_file. If not ", - " presented, the input file is assumed to be stored in ", - " current diretory. ", - " ", - "--output_dir output_dir specify the path that will store output file. If not ", - " presented, the output file will be stored in current ", - " diretory. ", - " ", - "--remap_file remap_file specify the file name that saves remapping information. ", - " If remap_file is specified and the file does not exist, ", - " remapping information will be calculated ans stored in ", - " remap_file. If remap_file is specified and the file ", - " exists, remapping information will be read from ", - " remap_file. ", - " ", - "--interp_method interp_method specify the remapping algorithm to be used. Default is ", - " 'conserve_order1'. Currently only 'conserve_order1', ", - " 'conserve_order2', 'conserve_order2_monotonic' and ", - " 'bilinear' remapping scheme are ", - " implemented in this tool. The bilinear scheme can only ", - " be used to remap data from cubic grid to regular latlon ", - " grid. When interp_method is 'bilinear', nlon and nlat ", - " must be specified and the output data in y-direction ", - " will be located at the center of cell or bound of the ", - " cell depending on the setting of y_center. ", - " ", - "--test_case test_case specify the test function to be used for testing. ", - " ", - "--grid_type grid_type specify the vector field grid location. default is ", - " AGRID and only AGRID is implemented yet. ", - " ", - "--symmetry indicate the grid is symmetry or not. ", - " ", - "--target_grid use taget grid cell area instead of calculating based on", - " exchange grid area. default is off. ", - " ", - "---finer_step #integer This is used only for bilinear interpolation. Set ", - " finer_step to a positive integer to reduce noise in ", - " interpolation and get a relatively smooth output. The ", - " default value is 0. When finer_step is greater than 0, ", - " fregrid will first remap data from source grid onto a ", - " finer grid with resolution that is power of 2 of ", - " destination grid resolution using bilinear ", - " interpolation, then using volume averaging to remap ", - " data from finer grid onto destination grid. ", - " ", - "--center_y output latitude will locate at cell center, i.e., the ", - " starting latitude will be -89 when nlat = 90. when ", - " center_y is not set, starting latitude will be -90. for ", - " bilinear interpolation. For conservative interpolation, ", - " center_y is assumed. ", - " ", - "--check_conserve check the conservation of conservative interpolation. ", - " The area sum will be printed out for input and output ", - " mosaic. ", - " ", - "--monotonic When specified, use monotonic interpolation when ", - " interp_method is 'conserve_order2'. ", - " ", - "--weight_file Specify the filename that store weight_field. The ", - " suffix '.tile#.nc' should not present for multiple-tile ", - " files. weight_field is used to adjust the source weight.", - " Normally it could be area fraction. When weight_field ", - " is specified, the weight_file will default to be ", - " input_file if weight_file is not specified. ", - " ", - "--weight_field Specify the name of weight field in weight_file ", - " ", - "--dst_vgrid specify the destination vertical grid file. Data will ", - " be remapped onto the destination vertical grid. ", - " When --dst_vgrid is specified, --extrapolate is ", - " assumed to be specified. ", - " ", - "--extrapolate Will extrapolate data onto masked points when specified.", - " ", - "--stop_crit # The stopping criteria when extrapping data onto missing ", - " points. Default is 0.005 ", - " ", - "--standard_dimension When specified, the dimension and field name for ", - " longitude and latitude axis will be 'lon' and 'lat'. ", - " 'lon_bnd' and 'lat_bnd' will be longitude and latitude ", - " bound name. The dimension of lon_bounds is (2,nlon) and ", - " the dimension of lat_bounds is (2,nlat). " - " ", - "--associated_file_dir dir Specify the path of the associated files ", - " ", - "--debug Will print out memory usage and running time ", - " ", - "--nthreads # Specify number of OpenMP threads. ", - " ", - " Example 1: Remap C48 data onto N45 grid. ", - " (use GFDL-CM3 data as example) ", - " fregrid --input_mosaic C48_mosaic.nc --input_dir input_dir --input_file input_file ", - " --scalar_field temp,salt --nlon 144 --nlat 90 ", - " ", - " Example 2: Remap data onto cm2m ocean grid with extrapolation ", - " and vertical interpolation. ", - " fregrid --input_mosaic levitus_mosaic.nc --input_dir inputdir ", - " --input_file WOA09_ann_theta.nc --scalar_field POTENTIAL_TEMP ", - " --output_file WOA09_ann_theta_cm2g_extrap.nc ", - " --output_mosaic cm2m_ocean_mosaic.nc --extrapolate ", - " --dst_vgrid inputdir/cm2m_ocean_vgrid.nc ", - " ", - NULL}; -#define EPSLN10 (1.e-10) -const double D2R = M_PI/180.; -char tagname[] = "$Name: bronx-10_performance_z1l $"; - -int main(int argc, char* argv[]) -{ - unsigned int opcode = 0; - char *mosaic_in=NULL; /* input mosaic file name */ - char *mosaic_out=NULL; /* input mosaic file name */ - char *dir_in=NULL; /* input file location */ - char *dir_out=NULL; /* output file location */ - int ntiles_in = 0; /* number of tiles in input mosaic */ - int ntiles_out = 0; /* number of tiles in output mosaic */ - unsigned int nfiles = 0; /* number of input file */ - unsigned int nfiles_out = 0; /* number of output file */ - char input_file [NFILE][STRING]; - char output_file[NFILE][STRING]; - char scalar_name[NVAR] [STRING]; - char scalar_name_remap[NVAR][STRING]; - char u_name [NVAR] [STRING]; - char v_name [NVAR] [STRING]; - char *test_case = NULL; - double test_param = 1; - char *associated_file_dir = NULL; - int check_conserve = 0; /* 0 means no check */ - double lonbegin = 0, lonend = 360; - double latbegin = -90, latend = 90; - int nlon = 0, nlat = 0; - int kbegin = 0, kend = -1; - int lbegin = 0, lend = -1; - char *remap_file = NULL; - char interp_method[STRING] = "conserve_order1"; - int y_at_center = 0; - int grid_type = AGRID; - unsigned int nscalar=0, nvector=0, nvector2=0; - unsigned int nscalar_orig; - int option_index, c, i, n, m, l; - char entry[MAXSTRING]; /* should be long enough */ - char txt[STRING]; - char history[MAXATT]; - int fill_missing = 0; - int extrapolate = 0; - int vertical_interp = 0; - char *dst_vgrid = NULL; - double stop_crit=0.005; - unsigned int finer_step = 0; - int debug = 0; - int great_circle_algorithm_in, great_circle_algorithm_out; - - char wt_file_obj[512]; - char *weight_file=NULL; - char *weight_field = NULL; - - VGrid_config vgrid_in; /* store vertical input grid */ - VGrid_config vgrid_out; /* store vertical output grid */ - Grid_config *grid_in = NULL; /* store input grid */ - Grid_config *grid_out = NULL; /* store output grid */ - Field_config *scalar_in = NULL; /* store input scalar data */ - Field_config *scalar_out = NULL; /* store output scalar data */ - Field_config *u_in = NULL; /* store input vector u-component */ - Field_config *v_in = NULL; /* store input vector v-component */ - Field_config *u_out = NULL; /* store input vector u-component */ - Field_config *v_out = NULL; /* store input vector v-component */ - File_config *file_in = NULL; /* store input file information */ - File_config *file_out = NULL; /* store output file information */ - File_config *file2_in = NULL; /* store input file information */ - File_config *file2_out = NULL; /* store output file information */ - Bound_config *bound_T = NULL; /* store halo update information for T-cell*/ - Interp_config *interp = NULL; /* store remapping information */ - int save_weight_only = 0; - int nthreads = 1; - - double time_get_in_grid=0, time_get_out_grid=0, time_get_input=0; - double time_setup_interp=0, time_do_interp=0, time_write=0; - clock_t time_start, time_end; - - int errflg = (argc == 1); - int fid; - - static struct option long_options[] = { - {"input_mosaic", required_argument, NULL, 'a'}, - {"output_mosaic", required_argument, NULL, 'b'}, - {"input_dir", required_argument, NULL, 'c'}, - {"output_dir", required_argument, NULL, 'd'}, - {"input_file", required_argument, NULL, 'e'}, - {"output_file", required_argument, NULL, 'f'}, - {"remap_file", required_argument, NULL, 'g'}, - {"test_case", required_argument, NULL, 'i'}, - {"interp_method", required_argument, NULL, 'j'}, - {"test_parameter", required_argument, NULL, 'k'}, - {"symmetry", no_argument, NULL, 'l'}, - {"grid_type", required_argument, NULL, 'm'}, - {"target_grid", no_argument, NULL, 'n'}, - {"finer_step", required_argument, NULL, 'o'}, - {"fill_missing", no_argument, NULL, 'p'}, - {"nlon", required_argument, NULL, 'q'}, - {"nlat", required_argument, NULL, 'r'}, - {"scalar_field", required_argument, NULL, 's'}, - {"check_conserve", no_argument, NULL, 't'}, - {"u_field", required_argument, NULL, 'u'}, - {"v_field", required_argument, NULL, 'v'}, - {"center_y", no_argument, NULL, 'y'}, - {"lonBegin", required_argument, NULL, 'A'}, - {"lonEnd", required_argument, NULL, 'B'}, - {"latBegin", required_argument, NULL, 'C'}, - {"latEnd", required_argument, NULL, 'D'}, - {"KlevelBegin", required_argument, NULL, 'E'}, - {"KlevelEnd", required_argument, NULL, 'F'}, - {"LstepBegin", required_argument, NULL, 'G'}, - {"LstepEnd", required_argument, NULL, 'H'}, - {"weight_file", required_argument, NULL, 'I'}, - {"weight_field", required_argument, NULL, 'J'}, - {"extrapolate", no_argument, NULL, 'L'}, - {"dst_vgrid", required_argument, NULL, 'M'}, - {"stop_crit", required_argument, NULL, 'N'}, - {"standard_dimension", no_argument, NULL, 'O'}, - {"debug", no_argument, NULL, 'P'}, - {"nthreads", required_argument, NULL, 'Q'}, - {"associated_file_dir", required_argument, NULL, 'R'}, - {"help", no_argument, NULL, 'h'}, - {0, 0, 0, 0}, - }; - - /* start parallel */ - mpp_init(&argc, &argv); - mpp_domain_init(); - - while ((c = getopt_long(argc, argv, "", long_options, &option_index)) != -1) { - switch (c) { - case 'a': - mosaic_in = optarg; - break; - case 'b': - mosaic_out = optarg; - break; - case 'c': - dir_in = optarg; - break; - case 'd': - dir_out = optarg; - break; - case 'e': - if(strlen(optarg) >= MAXSTRING) mpp_error("fregrid: the entry is not long for option -e"); - strcpy(entry, optarg); - tokenize(entry, ",", STRING, NFILE, (char *)input_file, &nfiles); - break; - case 'f': - if(strlen(optarg) >= MAXSTRING) mpp_error("fregrid: the entry is not long for option -f"); - strcpy(entry, optarg); - tokenize(entry, ",", STRING, NFILE, (char *)output_file, &nfiles_out); - break; - case 'g': - remap_file = optarg; - break; - case 's': - if(strlen(optarg) >= MAXSTRING) mpp_error("fregrid: the entry is not long for option -s"); - strcpy(entry, optarg); - tokenize(entry, ",", STRING, NVAR, (char *)scalar_name, &nscalar); - break; - case 'u': - if(strlen(optarg) >= MAXSTRING) mpp_error("fregrid: the entry is not long for option -u"); - strcpy(entry, optarg); - tokenize(entry, ",", STRING, NVAR, (char *)u_name, &nvector); - break; - case 'v': - if(strlen(optarg) >= MAXSTRING) mpp_error("fregrid: the entry is not long for option -v"); - strcpy(entry, optarg); - tokenize(entry, ",", STRING, NVAR, (char *)v_name, &nvector2); - break; - case 'j': - strcpy(interp_method, optarg); - break; - case 'i': - test_case = optarg; - break; - case 'k': - test_param = atof(optarg); - break; - case 'l': - opcode |= SYMMETRY; - break; - case 'm': - if(strcmp(optarg, "AGRID") == 0) - grid_type = AGRID; - else if(strcmp(optarg, "BGRID") == 0) - grid_type = BGRID; - else - mpp_error("fregrid: only AGRID and BGRID vector regridding are implmented, contact developer"); - break; - case 'n': - opcode |= TARGET; - break; - case 'o': - finer_step = atoi(optarg); - break; - case 'p': - fill_missing = 1; - break; - case 'q': - nlon = atoi(optarg); - break; - case 'r': - nlat = atoi(optarg); - break; - case 't': - check_conserve = 1; - break; - case 'y': - y_at_center = 1; - break; - case 'A': - lonbegin = atof(optarg); - break; - case 'B': - lonend = atof(optarg); - break; - case 'C': - latbegin = atof(optarg); - break; - case 'D': - latend = atof(optarg); - break; - case 'E': - kbegin = atoi(optarg); - break; - case 'F': - kend = atoi(optarg); - break; - case 'G': - lbegin = atoi(optarg); - break; - case 'H': - lend = atoi(optarg); - break; - case 'I': - weight_file = optarg; - break; - case 'J': - weight_field = optarg; - break; - case 'L': - extrapolate = 1; - break; - case 'M': - dst_vgrid = optarg; - vertical_interp = 1; - break; - case 'N': - stop_crit = atof(optarg); - break; - case 'O': - opcode |= STANDARD_DIMENSION; - break; - case 'P': - debug = 1; - break; - case 'Q': - nthreads = atoi(optarg); - break; - case 'R': - associated_file_dir = optarg; - break; - case '?': - errflg++; - break; - } - } - - if (errflg) { - char **u = usage; - while (*u) { fprintf(stderr, "%s\n", *u); u++; } - exit(2); - } - /* check the arguments */ - if( !mosaic_in ) mpp_error("fregrid: input_mosaic is not specified"); - if( !mosaic_out ) { - if(nlon == 0 || nlat ==0 ) mpp_error("fregrid: when output_mosaic is not specified, nlon and nlat should be specified"); - if(lonend <= lonbegin) mpp_error("fregrid: when output_mosaic is not specified, lonEnd should be larger than lonBegin"); - if(latend <= latbegin) mpp_error("fregrid: when output_mosaic is not specified, latEnd should be larger than latBegin"); - } - else { - if(nlon !=0 || nlat != 0) mpp_error("fregrid: when output_mosaic is specified, nlon and nlat should not be specified"); - } - - if(!strcmp(interp_method, "conserve_order1") ) { - if(mpp_pe() == mpp_root_pe())printf("****fregrid: first order conservative scheme will be used for regridding.\n"); - opcode |= CONSERVE_ORDER1; - } - else if(!strcmp(interp_method, "conserve_order2") ) { - if(mpp_pe() == mpp_root_pe())printf("****fregrid: second order conservative scheme will be used for regridding.\n"); - opcode |= CONSERVE_ORDER2; - } - else if(!strcmp(interp_method, "conserve_order2_monotonic") ) { - if(mpp_pe() == mpp_root_pe())printf("****fregrid: second order monotonic conservative scheme will be used for regridding.\n"); - opcode |= CONSERVE_ORDER2; - opcode |= MONOTONIC; - } - else if(!strcmp(interp_method, "bilinear") ) { - if(mpp_pe() == mpp_root_pe())printf("****fregrid: bilinear remapping scheme will be used for regridding.\n"); - opcode |= BILINEAR; - } - else - mpp_error("fregrid: interp_method must be 'conserve_order1', 'conserve_order2', 'conserve_order2_monotonic' or 'bilinear'"); - - if( nfiles == 0) { - if(nvector > 0 || nscalar > 0 || nvector2 > 0) - mpp_error("fregrid: when --input_file is not specified, --scalar_field, --u_field and --v_field should also not be specified"); - if(!remap_file) mpp_error("fregrid: when --input_file is not specified, remap_file must be specified to save weight information"); - save_weight_only = 1; - if(mpp_pe()==mpp_root_pe())printf("NOTE: No input file specified in this run, no data file will be regridded " - "and only weight information is calculated.\n"); - } - else if( nfiles == 1 || nfiles ==2) { - if( nvector != nvector2 ) mpp_error("fregrid: number of fields specified in u_field must be the same as specified in v_field"); - if( nscalar+nvector==0 ) mpp_error("fregrid: both scalar_field and vector_field are not specified"); - /* when nvector =2 and nscalar=0, nfiles can be 2 otherwise nfiles must be 1 */ - if( nscalar && nfiles != 1 ) - mpp_error("fregrid: when scalar_field is specified, number of files must be 1"); - if( nfiles_out == 0 ) { - for(i=0; i0) mpp_error("fregrid: weight_field should not be specified for vector interpolation, contact developer"); - if(!weight_file) { - - if(nfiles==0) mpp_error("fregrid: weight_field is specified, but both weight_file and input_file are not specified"); - if(dir_in) - sprintf(wt_file_obj, "%s/%s", dir_in, input_file[0]); - else - sprintf(wt_file_obj, "./%s", input_file[0]); - weight_file = wt_file_obj; - } - } - - if(nvector > 0) { - opcode |= VECTOR; - if(grid_type == AGRID) - opcode |= AGRID; - else if(grid_type == BGRID) - opcode |= BGRID; - } - - /* define history to be the history in the grid file */ - strcpy(history,argv[0]); - - for(i=1;i MAXENTRY) { /* limit the size of each entry, here we are assume the only entry that is longer than - MAXENTRY= 256 is the option --scalar_field --u_field and v_field */ - if(strcmp(argv[i-1], "--scalar_field") && strcmp(argv[i-1], "--u_field") && strcmp(argv[i-1], "--v_field") ) - mpp_error("fregrid: the entry ( is not scalar_field, u_field, v_field ) is too long, need to increase parameter MAXENTRY"); - strcat(history, "(**please see the field list in this file**)" ); - } - else - strcat(history, argv[i]); - } - -{ - int base_cpu; - -#if defined(_OPENMP) - omp_set_num_threads(nthreads); - base_cpu = get_cpu_affinity(); -#pragma omp parallel - set_cpu_affinity(base_cpu+omp_get_thread_num() ); -#endif - -} - - /* get the mosaic information of input and output mosaic*/ - fid = mpp_open(mosaic_in, MPP_READ); - ntiles_in = mpp_get_dimlen(fid, "ntiles"); - mpp_close(fid); - - /* second order conservative interpolation is only avail for the cubic sphere input grid */ - if( ntiles_in != 6 && (opcode & CONSERVE_ORDER2) ) - mpp_error("fregrid: when the input grid is not cubic sphere grid, interp_method can not be conserve_order2"); - - if(mosaic_out) { - fid = mpp_open(mosaic_out, MPP_READ); - ntiles_out = mpp_get_dimlen(fid, "ntiles"); - mpp_close(fid); - } - else - ntiles_out = 1; - - if(test_case) { - if(nfiles != 1) mpp_error("fregrid: when test_case is specified, nfiles should be 1"); - sprintf(output_file[0], "%s.%s.output", test_case, interp_method); - } - - if(check_conserve) opcode |= CHECK_CONSERVE; - - if( opcode & STANDARD_DIMENSION ) printf("fregrid: --standard_dimension is set\n"); - - if( opcode & BILINEAR ) { - int ncontact; - ncontact = read_mosaic_ncontacts(mosaic_in); - if( nlon == 0 || nlat == 0) mpp_error("fregrid: when interp_method is bilinear, nlon and nlat should be specified"); - if(ntiles_in != 6) mpp_error("fregrid: when interp_method is bilinear, the input mosaic should be 6 tile cubic grid"); - if(ncontact !=12) mpp_error("fregrid: when interp_method is bilinear, the input mosaic should be 12 contact cubic grid"); - if(mpp_npes() > 1) mpp_error("fregrid: parallel is not implemented for bilinear remapping"); - } - else - y_at_center = 1; - - if(extrapolate) opcode |= EXTRAPOLATE; - - /* memory allocation for data structure */ - grid_in = (Grid_config *)malloc(ntiles_in *sizeof(Grid_config)); - grid_out = (Grid_config *)malloc(ntiles_out*sizeof(Grid_config)); - bound_T = (Bound_config *)malloc(ntiles_in *sizeof(Bound_config)); - interp = (Interp_config *)malloc(ntiles_out*sizeof(Interp_config)); - - if(debug) { - print_mem_usage("Before calling get_input_grid"); - time_start = clock(); - } - get_input_grid( ntiles_in, grid_in, bound_T, mosaic_in, opcode, &great_circle_algorithm_in, save_weight_only ); - if(debug) { - time_end = clock(); - time_get_in_grid = 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - print_mem_usage("After calling get_input_grid"); - time_start = clock(); - } - if(mosaic_out) - get_output_grid_from_mosaic( ntiles_out, grid_out, mosaic_out, opcode, &great_circle_algorithm_out ); - else { - great_circle_algorithm_out = 0; - get_output_grid_by_size(ntiles_out, grid_out, lonbegin, lonend, latbegin, latend, - nlon, nlat, finer_step, y_at_center, opcode); - } - if(debug) { - time_end = clock(); - time_get_out_grid = 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - print_mem_usage("After calling get_output_grid"); - } - /* find out if great_circle algorithm is used in the input grid or output grid */ - - if( great_circle_algorithm_in == 0 && great_circle_algorithm_out == 0 ) - opcode |= LEGACY_CLIP; - else { - opcode |= GREAT_CIRCLE; - /* currently only first-order conservative is implemented */ - if( !(opcode & CONSERVE_ORDER1) ) - mpp_error("fregrid: when clip_method is 'conserve_great_circle', interp_methos need to be 'conserve_order1', contact developer"); - } - - /* get the grid cell_area */ - get_input_output_cell_area(ntiles_in, grid_in, ntiles_out, grid_out, opcode); - if(debug) print_mem_usage("After get_input_output_cell_area"); - /* currently extrapolate are limited to ntiles = 1. extrapolate are limited to lat-lon input grid */ - if( extrapolate ) { - int i, j, ind0, ind1, ind2; - if(test_case ) mpp_error("fregrid: extrapolate is limited to test_case is false"); - if(ntiles_in != 1) mpp_error("fregrid: extrapolate is limited to ntile_in = 1"); - /* check if the grid is lat-lon grid */ - for(j=1; j<=grid_in[0].ny; j++) for(i=1; i<=grid_in[0].nx; i++) { - ind0 = j*(grid_in[0].nx+2)+i; - ind1 = j*(grid_in[0].nx+2)+1; - ind2 = 1*(grid_in[0].nx+2)+i; - if(fabs( grid_in[0].lont[ind0]-grid_in[0].lont[ind2] ) > EPSLN10 || - fabs( grid_in[0].latt[ind0]-grid_in[0].latt[ind1] ) > EPSLN10 ) - mpp_error("fregrid: extrapolate is limited to lat-lon grid"); - - } - } - - /* when vertical_interp is set, extrapolate must be set */ - if( vertical_interp) extrapolate = 1; - /* vertical_interp and extrapolate is not supported for vector interpolation */ - if( nvector > 0) { - if(vertical_interp) mpp_error("fregrid: vertical_interp is not supported for vector fields"); - if(extrapolate) mpp_error("fregrid: extrapolate is not supported for vector fields"); - } - - if(remap_file) set_remap_file(ntiles_out, mosaic_out, remap_file, interp, &opcode, save_weight_only); - - if(!save_weight_only) { - file_in = (File_config *)malloc(ntiles_in *sizeof(File_config)); - file_out = (File_config *)malloc(ntiles_out*sizeof(File_config)); - - if(nfiles == 2) { - file2_in = (File_config *)malloc(ntiles_in *sizeof(File_config)); - file2_out = (File_config *)malloc(ntiles_out*sizeof(File_config)); - } - if(nscalar > 0) { - scalar_in = (Field_config *)malloc(ntiles_in *sizeof(Field_config)); - scalar_out = (Field_config *)malloc(ntiles_out *sizeof(Field_config)); - } - if(nvector > 0) { - u_in = (Field_config *)malloc(ntiles_in *sizeof(Field_config)); - u_out = (Field_config *)malloc(ntiles_out *sizeof(Field_config)); - v_in = (Field_config *)malloc(ntiles_in *sizeof(Field_config)); - v_out = (Field_config *)malloc(ntiles_out *sizeof(Field_config)); - } - - set_mosaic_data_file(ntiles_in, mosaic_in, dir_in, file_in, input_file[0]); - set_mosaic_data_file(ntiles_out, mosaic_out, dir_out, file_out, output_file[0]); - - vgrid_out.nz = 0; - vgrid_in.nz = 0; - if(vertical_interp) { - get_output_vgrid(&vgrid_out, dst_vgrid); - get_input_vgrid(&vgrid_in, file_in[0].name, scalar_name[0]); - setup_vertical_interp(&vgrid_in, &vgrid_out); - } - - if(nfiles == 2) { - set_mosaic_data_file(ntiles_in, mosaic_in, dir_in, file2_in, input_file[1]); - set_mosaic_data_file(ntiles_out, mosaic_out, dir_out, file2_out, output_file[1]); - } - - for(n=0; nhas_cell_measure_att); - - set_output_metadata(ntiles_in, nfiles, file_in, file2_in, scalar_in, u_in, v_in, - ntiles_out, file_out, file2_out, scalar_out, u_out, v_out, grid_out, &vgrid_out, history, tagname, opcode); - - if(debug) print_mem_usage("After set_output_metadata"); - /* when the interp_method specified through command line is CONSERVE_ORDER1, but the interp_method in the source file - field attribute is CONSERVE_ORDER2, need to modify the interp_method value */ - if(opcode & CONSERVE_ORDER1) { - for(l=0; lvar[l].interp_method == CONSERVE_ORDER2) { - if(mpp_pe() == mpp_root_pe())printf("NOTE from fregrid: even though the interp_method specified through command line is " - "conserve_order1, the interp_method is reset to conserve_order2 because some fields in " - "the source data have interp_method attribute value conserve_order2"); - opcode = opcode & ~CONSERVE_ORDER1; - opcode |= CONSERVE_ORDER2; - break; - } - } - } - if(opcode & CONSERVE_ORDER1) { - for(l=0; lvar[l].interp_method == CONSERVE_ORDER2) { - if(mpp_pe() == mpp_root_pe())printf("NOTE from fregrid: even though the interp_method specified through command line is " - "conserve_order1, the interp_method is reset to conserve_order2 because some fields in " - "the source data have interp_method attribute value conserve_order2"); - opcode = opcode & ~CONSERVE_ORDER1; - opcode |= CONSERVE_ORDER2; - break; - } - } - } - } - - /* preparing for the interpolation, if remapping information exist, read it from remap_file, - otherwise create the remapping information and write it to remap_file - */ - - if(debug) time_start = clock(); - if( opcode & BILINEAR ) /* bilinear interpolation from cubic to lalon */ - setup_bilinear_interp(ntiles_in, grid_in, ntiles_out, grid_out, interp, opcode ); - else - setup_conserve_interp(ntiles_in, grid_in, ntiles_out, grid_out, interp, opcode); - if(debug) { - time_end = clock(); - time_setup_interp = 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - print_mem_usage("After setup interp"); - } - if(debug) { - print_time("get_input_grid", time_get_in_grid); - print_time("get_output_grid", time_get_out_grid); - print_time("setup_interp", time_setup_interp); - } - if(save_weight_only) { - if(mpp_pe() == mpp_root_pe() ) { - printf("NOTE: Successfully running fregrid and the following files which store weight information are generated.\n"); - for(n=0; n 0) { - get_field_attribute(ntiles_in, scalar_in); - copy_field_attribute(ntiles_out, scalar_in, scalar_out); - } - - if(nvector > 0) { - get_field_attribute(ntiles_in, u_in); - get_field_attribute(ntiles_in, v_in); - copy_field_attribute(ntiles_out, u_in, u_out); - copy_field_attribute(ntiles_out, v_in, v_out); - } - - - - /* set time step to 1, only test scalar field now, nz need to be 1 */ - if(test_case) { - if(nscalar != 1 || nvector != 0) mpp_error("fregrid: when test_case is specified, nscalar must be 1 and nvector must be 0"); - if(scalar_in->var->nz != 1) mpp_error("fregrid: when test_case is specified, number of vertical level must be 1"); - file_in->nt = 1; - file_out->nt = 1; - } - - /* Then doing the regridding */ - for(m=0; mnt; m++) { - int memsize, level_z, level_n, level_t; - - write_output_time(ntiles_out, file_out, m); - if(nfiles > 1) write_output_time(ntiles_out, file2_out, m); - - /* first interp scalar variable */ - for(l=0; lvar[l].has_taxis && m>0) continue; - level_t = m + scalar_in->var[l].lstart; - /*--- to reduce memory usage, we are only do remapping for on horizontal level one time */ - for(level_n =0; level_n < scalar_in->var[l].nn; level_n++) { - if(extrapolate) { - get_input_data(ntiles_in, scalar_in, grid_in, bound_T, l, -1, level_n, level_t, extrapolate, stop_crit); - allocate_field_data(ntiles_out, scalar_out, grid_out, scalar_in->var[l].nz); - if( opcode & BILINEAR ) - do_scalar_bilinear_interp(interp, l, ntiles_in, grid_in, grid_out, scalar_in, scalar_out, finer_step, fill_missing); - else - do_scalar_conserve_interp(interp, l, ntiles_in, grid_in, ntiles_out, grid_out, scalar_in, scalar_out, opcode, scalar_in->var[l].nz); - if(vertical_interp) do_vertical_interp(&vgrid_in, &vgrid_out, grid_out, scalar_out, l); - write_field_data(ntiles_out, scalar_out, grid_out, l, -1, level_n, m); - if(scalar_out->var[l].interp_method == CONSERVE_ORDER2) { - for(n=0; nvar[l].kstart; level_z <= scalar_in->var[l].kend; level_z++) - { - if(debug) time_start = clock(); - if(test_case) - get_test_input_data(test_case, test_param, ntiles_in, scalar_in, grid_in, bound_T, opcode); - else - get_input_data(ntiles_in, scalar_in, grid_in, bound_T, l, level_z, level_n, level_t, extrapolate, stop_crit); - if(debug) { - time_end = clock(); - time_get_input += 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - } - - allocate_field_data(ntiles_out, scalar_out, grid_out, 1); - if(debug) time_start = clock(); - if( opcode & BILINEAR ) - do_scalar_bilinear_interp(interp, l, ntiles_in, grid_in, grid_out, scalar_in, scalar_out, finer_step, fill_missing); - else - do_scalar_conserve_interp(interp, l, ntiles_in, grid_in, ntiles_out, grid_out, scalar_in, scalar_out, opcode,1); - if(debug) { - time_end = clock(); - time_do_interp += 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - } - - if(debug) time_start = clock(); - write_field_data(ntiles_out, scalar_out, grid_out, l, level_z, level_n, m); - if(debug) { - time_end = clock(); - time_write += 1.0*(time_end - time_start)/CLOCKS_PER_SEC; - } - if(scalar_out->var[l].interp_method == CONSERVE_ORDER2) { - for(n=0; n0) continue; - level_t = m + u_in->var[l].lstart; - get_input_data(ntiles_in, u_in, grid_in, bound_T, l, level_z, level_n, level_t, extrapolate, stop_crit); - get_input_data(ntiles_in, v_in, grid_in, bound_T, l, level_z, level_n, level_t, extrapolate, stop_crit); - allocate_field_data(ntiles_out, u_out, grid_out, u_in[n].var[l].nz); - allocate_field_data(ntiles_out, v_out, grid_out, u_in[n].var[l].nz); - if( opcode & BILINEAR ) - do_vector_bilinear_interp(interp, l, ntiles_in, grid_in, ntiles_out, grid_out, u_in, v_in, u_out, v_out, finer_step, fill_missing); - else - do_vector_conserve_interp(interp, l, ntiles_in, grid_in, ntiles_out, grid_out, u_in, v_in, u_out, v_out, opcode); - - write_field_data(ntiles_out, u_out, grid_out, l, level_z, level_n, m); - write_field_data(ntiles_out, v_out, grid_out, l, level_z, level_n, m); - for(n=0; n 1 ) { - mpp_close(file2_out[n].fid); - printf("****%s\n", file2_out[n].name); - } - } - } - - mpp_end(); - return 0; - -} /* end of main */ - - - - diff --git a/release/v0/sorc/fre-nctools.fd/tools/fregrid/fregrid_util.c b/release/v0/sorc/fre-nctools.fd/tools/fregrid/fregrid_util.c deleted file mode 100644 index 199529c55c..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/fregrid/fregrid_util.c +++ /dev/null @@ -1,2685 +0,0 @@ -#include -#include -#include -#include -#include "fregrid_util.h" -#include "mpp.h" -#include "mpp_io.h" -#include "tool_util.h" -#include "mosaic_util.h" -#include "read_mosaic.h" -#include "gradient_c2l.h" -#include "globals.h" -#include "interp.h" - -#define D2R (M_PI/180) -#define R2D (180/M_PI) -#define EPSLN10 (1.e-10) -#define REL_COEF ( 0.9 ) -#define MAX_ITER 4000 - -void init_halo(double *var, int nx, int ny, int nz, int halo); -void update_halo(int nx, int ny, int nz, double *data, Bound_config *bound, Data_holder *dHold); -void setup_boundary(const char *mosaic_file, int ntiles, Grid_config *grid, Bound_config *bound, int halo, int position); -void delete_bound_memory(int ntiles, Bound_config *bound); -void copy_var_config(const Var_config *var_in, Var_config *var_out); -void init_var_config(Var_config *var, int interp_method); -void fill_boundaries(int ni, int nj, double *data, int is_cyclic); -int parse_string(const char *str1, const char *str2, char *strOut, char *errmsg); -void do_extrapolate (int ni, int nj, int nk, const double *lon, const double *lat, const double *data_in, - double *data_out, int is_cyclic, double missing_value, double stop_crit); -/******************************************************************************* - void setup_tile_data_file(Mosaic_config mosaic, const char *filename) - This routine will setup the data file name for each tile. -*******************************************************************************/ - -void set_mosaic_data_file(int ntiles, const char *mosaic_file, const char *dir, File_config *file, - const char *filename) -{ - char str1[STRING]="", str2[STRING]="", tilename[STRING]=""; - int i, n, len, fid, vid; - size_t start[4], nread[4]; - - len = strlen(filename); - if( strcmp(filename+len-3, ".nc") ==0 ) - strncpy(str1, filename, len-3); - else - strcpy(str1, filename); - if(dir) { - if(strlen(dir)+strlen(str1) >= STRING)mpp_error("set_mosaic_data_file(fregrid_util): length of str1 + " - "length of dir should be no greater than STRING"); - sprintf(str2, "%s/%s", dir, str1); - } - else - strcpy(str2, str1); - - for(i=0; i<4; i++) { - start[i] = 0; nread[i] = 1; - } - nread[1] = STRING; - if(ntiles > 1) { - if(!mosaic_file) mpp_error("fregrid_util: when ntiles is greater than 1, mosaic_file should be defined"); - fid = mpp_open(mosaic_file, MPP_READ); - vid = mpp_get_varid(fid, "gridtiles"); - } - for(i = 0; i < ntiles; i++) { - start[0] = i; - if(ntiles > 1) { - mpp_get_var_value_block(fid, vid, start, nread, tilename); - if(strlen(str2) + strlen(tilename) > STRING -5) mpp_error("set_mosaic_data_file(fregrid_util): length of str2 + " - "length of tilename should be no greater than STRING-5"); - sprintf(file[i].name, "%s.%s.nc", str2, tilename); - } - else - sprintf(file[i].name, "%s.nc", str2); - } - -}; /* setup_data_file */ - -/******************************************************************************* - void set_scalar_var() -*******************************************************************************/ -void set_field_struct(int ntiles, Field_config *field, int nvar, char * varname, File_config *file) -{ - int n, i; - - if(nvar == 0) return; - - for(n=0; n0) { - init_halo(grid[n].lonc, nx[n]+1, ny[n]+1, 1, halo); - init_halo(grid[n].latc, nx[n]+1, ny[n]+1, 1, halo); - } - for(j=0; j<=ny[n]; j++) for(i=0; i<=nx[n]; i++) { - ind1 = (j+halo)*(nx[n]+1+2*halo)+i+halo; - ind2 = 2*j*(2*nx[n]+1)+2*i; - grid[n].lonc[ind1] = x[ind2]*D2R; - grid[n].latc[ind1] = y[ind2]*D2R; - } - if(read_tgrid) { - grid[n].lont = (double *) malloc((nx[n]+2)*(ny[n]+2)*sizeof(double)); - grid[n].latt = (double *) malloc((nx[n]+2)*(ny[n]+2)*sizeof(double)); - for(j=0; j EPSLN10) grid[n].rotate = 1; - } - free(angle); - } - } - free(x); - free(y); - mpp_close(g_fid); - } - - mpp_close(m_fid); - - /* get the boundary condition */ - setup_boundary(mosaic_file, ntiles, grid, bound_T, 1, CENTER); - if(read_tgrid) { - for(n=0; n 0 ) { - dHold = (Data_holder *)malloc(nbound*sizeof(Data_holder)); - for(l=0; l 0) { - dHold = (Data_holder *)malloc(nbound*sizeof(Data_holder)); - for(l=0; lhalo; - for(n=0; n 2) { - sprintf(errmsg, "fregrid_util.c: " - "number of contacts should be no larger than 2 in file %s",mosaic_file ); - mpp_error(errmsg); - } - read_mosaic_contact( mosaic_file, tile1, tile2, istart1, iend1, jstart1, jend1, - istart2, iend2, jstart2, jend2 ); - - for(m=0; mis_tripolar = 1; - } - } - } - - m_fid = mpp_open(mosaic_file, MPP_READ); - get_file_path(mosaic_file, dir); - - for(n=0; n EPSLN10) grid[n].rotate = 1; - } - free(angle); - } - } - mpp_close(g_fid); - } - - mpp_close(m_fid); - - free(nx); - free(ny); -}; /* get_output_grid_from_mosaic*/ - -/******************************************************************************* - void get_output_grid_by_size(Mosaic_config *mosaic, int nlon, int nlat, int finer_steps, unsigned int opcode) - calculate output grid based on nlon, nlat and finer steps. - -*******************************************************************************/ -void get_output_grid_by_size(int ntiles, Grid_config *grid, double lonbegin, double lonend, double latbegin, double latend, - int nlon, int nlat, int finer_steps, int center_y, unsigned int opcode) -{ - double dlon, dlat, lon_fine, lat_fine, lon_range, lat_range; - int nx_fine, ny_fine, i, j, layout[2]; - int nxc, nyc, ii, jj; - - if(ntiles !=1) mpp_error("fregrid_utils: ntiles of output mosaic must be 1 for bilinear interpolation"); - if(finer_steps && !(opcode&BILINEAR)) mpp_error("fregrid_util: finer_steps must be 0 when interp_method is not bilinear"); - - grid->nx = nlon; - grid->ny = nlat; - grid->nx_fine = pow(2,finer_steps)*nlon; - grid->ny_fine = pow(2,finer_steps)*(nlat-1)+1; - nx_fine = grid->nx_fine; - ny_fine = grid->ny_fine; - lon_range = lonend - lonbegin; - lat_range = latend - latbegin; - grid->is_tripolar = 0; - grid->lont1D = (double *)malloc(nlon*sizeof(double)); - grid->latt1D = (double *)malloc(nlat*sizeof(double)); - grid->lonc1D = (double *)malloc((nlon+1)*sizeof(double)); - grid->latc1D = (double *)malloc((nlat+1)*sizeof(double)); - - dlon=lon_range/nlon; - for(i=0; ilont1D[i] = (lonbegin + (i + 0.5)*dlon)*D2R; - for(i=0; i<=nlon; i++) grid->lonc1D[i] = (lonbegin + i*dlon)*D2R; - - layout[0] = 1; - layout[1] = mpp_npes(); - mpp_define_domain2d(grid->nx, grid->ny, layout, 0, 0, &(grid->domain)); - mpp_get_compute_domain2d(grid->domain, &(grid->isc), &(grid->iec), &(grid->jsc), &(grid->jec)); - grid->nxc = grid->iec - grid->isc + 1; - grid->nyc = grid->jec - grid->jsc + 1; - nxc = grid->nxc; - nyc = grid->nyc; - if(center_y) { - dlat=lat_range/nlat; - for(j=0; jlatt1D[j] = (latbegin+(j+0.5)*dlat)*D2R; - for(j=0; j<=nlat; j++) grid->latc1D[j] = (latbegin+j*dlat)*D2R; - } - else { - dlat=lat_range/(nlat-1); - for(j=0; jlatt1D[j] = (latbegin+j*dlat)*D2R; - for(j=0; j<=nlat; j++) grid->latc1D[j] = (latbegin+(j-0.5)*dlat)*D2R; - } - - if(opcode & BILINEAR) { - grid->latt1D_fine = (double *)malloc(ny_fine*sizeof(double)); - grid->lont = (double *)malloc(nx_fine*ny_fine*sizeof(double)); - grid->latt = (double *)malloc(nx_fine*ny_fine*sizeof(double)); - grid->xt = (double *)malloc(nx_fine*ny_fine*sizeof(double)); - grid->yt = (double *)malloc(nx_fine*ny_fine*sizeof(double)); - grid->zt = (double *)malloc(nx_fine*ny_fine*sizeof(double)); - grid->vlon_t = (double *)malloc(3*nx_fine*ny_fine*sizeof(double)); - grid->vlat_t = (double *)malloc(3*nx_fine*ny_fine*sizeof(double)); - - dlon = lon_range/nx_fine; - for(i=0; ilont[j*nx_fine+i] = lon_fine; - } - if(center_y) { - dlat=lat_range/ny_fine; - for(j=0; jlatt1D_fine[j] = (latbegin+(j+0.5)*dlat)*D2R; - } - else { - dlat = lat_range/(ny_fine-1); - for(j=0; jlatt1D_fine[j] = (latbegin+j*dlat)*D2R; - - } - for(j=0; jlatt[j*nx_fine+i] = grid->latt1D_fine[j]; - } - /* get the cartesian coordinates */ - latlon2xyz(nx_fine*ny_fine, grid->lont, grid->latt, grid->xt, grid->yt, grid->zt); - - unit_vect_latlon(nx_fine*ny_fine, grid->lont, grid->latt, grid->vlon_t, grid->vlat_t); - - } - - grid->lonc = (double *) malloc((nxc+1)*(nyc+1)*sizeof(double)); - grid->latc = (double *) malloc((nxc+1)*(nyc+1)*sizeof(double)); - for(j=0; j<=nyc; j++) { - jj = j + grid->jsc; - for(i=0; i<=nxc; i++) { - ii = i + grid->isc; - grid->lonc[j*(nxc+1)+i] = grid->lonc1D[ii]; - grid->latc[j*(nxc+1)+i] = grid->latc1D[jj]; - } - } - if(opcode & VECTOR) { /* no rotation is needed for regular lat-lon grid. */ - grid->rotate = 0; - } - -}; /* get_output_grid_by_size */ - - -/******************************************************************************* -void init_var_config(Var_config *var) -*******************************************************************************/ -void init_var_config(Var_config *var, int interp_method) -{ - var->nz = 1; - var->nn = 1; - var->has_naxis = 0; - var->has_zaxis = 0; - var->has_taxis = 0; - var->kstart = 0; - var->kend = 0; - var->lstart = 0; - var->lend = 0; - var->ndim = 0; - var->interp_method = interp_method; - -} - -/******************************************************************************* -void copy_var_config(Var_config *var) -*******************************************************************************/ -void copy_var_config(const Var_config *var_in, Var_config *var_out) -{ - int i; - - var_out->nz = var_in->nz; - var_out->nn = var_in->nn; - var_out->has_naxis = var_in->has_naxis; - var_out->has_zaxis = var_in->has_zaxis; - var_out->has_taxis = var_in->has_taxis; - var_out->kstart = var_in->kstart; - var_out->kend = var_in->kend ; - var_out->lstart = var_in->lstart; - var_out->lend = var_in->lend; - var_out->ndim = var_in->ndim; - var_out->interp_method = var_in->interp_method; - for(i=0; indim; i++) var_out->index[i] = var_in->index[i]; -} - -/* We assume all the tiles have the same vgrid */ -void get_output_vgrid( VGrid_config *vgrid, const char *vgrid_file ) -{ - int fid, nz, vid, k; - double *z=NULL; - - /* first get number of levels */ - fid = mpp_open(vgrid_file, MPP_READ); - nz = mpp_get_dimlen(fid, "nzv"); - if((nz-1)%2) mpp_error("fregrid_util: size of dimension nzv should be 2*nlev+1"); - z = (double *)malloc(nz*sizeof(double)); - vid = mpp_get_varid(fid, "zeta"); - mpp_get_var_value(fid, vid, z); - mpp_close(fid); - - nz = (nz-1)/2; - vgrid->nz = nz; - vgrid->z = (double *)malloc(nz*sizeof(double)); - vgrid->zb = (double *)malloc((nz+1)*sizeof(double)); - for(k=0; kz[k] = z[2*k+1]; - for(k=0; k<=nz; k++) vgrid->zb[k] = z[2*k]; - free(z); -} - -void get_input_vgrid( VGrid_config *vgrid, const char *vgrid_file, const char *field ) -{ - int fid, vid, vid2, ndim, i, nz; - char dimname[32]; - char cart; - - /* first get number of levels */ - fid = mpp_open(vgrid_file, MPP_READ); - - vid = mpp_get_varid(fid, field); - ndim = mpp_get_var_ndim(fid, vid); - nz = 0; - for(i=0; inz = nz; - vgrid->z = (double *)malloc(nz*sizeof(double)); - mpp_get_var_value(fid, vid2, vgrid->z); - } - } - - mpp_close(fid); - - if(nz == 0) mpp_error("fregrid_util: no vertical levels found in the input file"); - -} - -void setup_vertical_interp(VGrid_config *vgrid_in, VGrid_config *vgrid_out) -{ - int nk1, nk2, kstart, kend, k; - - nk1 = vgrid_in->nz; - nk2 = vgrid_out->nz; - - - for(kstart=0; kstartz[kstart] >= vgrid_in->z[0]) break; - } - for(kend=nk2-1; kend>=0; kend--) { - if(vgrid_out->z[kend] <= vgrid_in->z[nk1-1]) break; - } - - - if(kstart >0 && mpp_pe()==mpp_root_pe()) { - printf("NOTE from fregrid_util: the value from level 0 to level %d will be set to the value at the shallowest source levle.\n", kstart-1); - } - if(kend kstart = kstart; - vgrid_out->kend = kend; - vgrid_out->need_interp = 1; - if(nk1 == nk2 ){ - for(k=0; kz[k]-vgrid_in->z[k]) > EPSLN10 ) break; - } - if(k==nk1) vgrid_out->need_interp = 0; - } -} - -void do_vertical_interp(VGrid_config *vgrid_in, VGrid_config *vgrid_out, Grid_config *grid_out, Field_config *field, int varid) -{ - int nk1, nk2, nx, ny, kstart, kend, i, k; - double *tmp; - - if(vgrid_out->need_interp && field->var[varid].has_zaxis ) { - nk1 = vgrid_in->nz; - nk2 = vgrid_out->nz; - nx = grid_out->nx; - ny = grid_out->ny; - tmp = (double *)malloc(nx*ny*nk1*sizeof(double)); - for(i=0; idata[i]; - if(nk1 != nk2 ) { - free(field->data); - field->data = (double *)malloc(nx*ny*nk2*sizeof(double)); - } - - kstart = vgrid_out->kstart; - kend = vgrid_out->kend; - for(k=0; kdata[k*nx*ny+i] = tmp[i]; - } - for(k=kend; kdata[k*nx*ny+i] = tmp[(nk1-1)*nx*ny+i]; - } - nk2 = kend - kstart + 1; - linear_vertical_interp(nx, ny, nk1, nk2, vgrid_in->z, vgrid_out->z+kstart, tmp, field->data+kstart*nx*ny); - free(tmp); - } - -} - -/******************************************************************************* - void get_input_metadata(Mosaic_config, *mosaic) -*******************************************************************************/ -void get_input_metadata(int ntiles, int nfiles, File_config *file1, File_config *file2, - Field_config *scalar, Field_config *u_comp, Field_config *v_comp, - const Grid_config *grid, int kbegin, int kend, int lbegin, int lend, - unsigned int opcode, char *associated_file_dir) -{ - int n, m, i, l, ll, nscalar, nvector, nfield; - int ndim, dimsize[5], nz; - nc_type type[5]; - char cart[5]; - char dimname[5][STRING], bndname[5][STRING], errmsg[STRING]; - File_config *file = NULL; - Field_config *field = NULL; - size_t start[4], nread[4]; - int interp_method, use_bilinear, use_conserve; - int len, found; - - - use_bilinear = 0; - use_conserve = 0; - if(opcode & CONSERVE_ORDER1) { - use_conserve = 1; - interp_method = CONSERVE_ORDER1; - } - else if(opcode & CONSERVE_ORDER2) { - use_conserve = 1; - interp_method = CONSERVE_ORDER2; - } - else if(opcode & BILINEAR) { - use_bilinear = 1; - interp_method = BILINEAR; - } - - /* First find out how many fields in file and file2. */ - nscalar = 0; - nvector = 0; - if( scalar) nscalar = scalar->nvar; - if( u_comp) nvector = u_comp->nvar; - - for(n=0; n<4; n++) { - start[n] = 0; nread[n] = 1; - } - - for(m=0; m= MAXLIST)mpp_error("fregrid_util(get_input_metadata): nfile_list > MAXLIST"); - strcpy(file_list[i], associated_file); - file_id[i] = field[n].var[ll].area_fid; - nfile_list++; - } - } - } - /* get the vid of area_name and check if area_name is time dependent or not */ - field[n].var[ll].area_vid = mpp_get_varid(field[n].var[ll].area_fid, field[n].var[ll].area_name); - ndim = mpp_get_var_ndim(field[n].var[ll].area_fid, field[n].var[ll].area_vid); - /* check if it has T-axis */ - mpp_get_var_dimname(field[n].var[ll].area_fid, field[n].var[ll].area_vid, 0, dimname); - vid2 = mpp_get_varid(field[n].var[ll].area_fid, dimname); - cart = mpp_get_var_cart(field[n].var[ll].area_fid, vid2); - - if( cart == 'T' ) { - if(ndim <=2) { - sprintf(errmsg, "fregrid_util(get_input_metadata): number of dimension of field %s in file %s has t-axis and <3" , - field[n].var[ll].area_name, associated_file ); - mpp_error(errmsg); - } - field[n].var[ll].area_has_taxis = 1; - } - else { - field[n].var[ll].area_has_taxis = 0; - } - /* check if has n-axis (diurnal data). */ - field[n].var[ll].area_has_naxis = 0; - if(ndim>2) { - if(field[n].var[ll].area_has_taxis) - mpp_get_var_dimname(field[n].var[ll].area_fid, field[n].var[ll].area_vid, 1, dimname); - else - mpp_get_var_dimname(field[n].var[ll].area_fid, field[n].var[ll].area_vid, 0, dimname); - vid2 = mpp_get_varid(field[n].var[ll].area_fid, dimname); - cart = mpp_get_var_cart(field[n].var[ll].area_fid, vid2); - if(cart == 'N') { - field[n].var[ll].area_has_naxis = 1; - if(ndim==3 && field[n].var[ll].area_has_taxis) { - sprintf(errmsg, "fregrid_util(get_input_metadata): ndim=3, has_taxis=T and hax_naxis=T for field %s in file %s", - field[n].var[ll].area_name, associated_file ); - } - else if(ndim==4 && !field[n].var[ll].area_has_taxis) { - sprintf(errmsg, "fregrid_util(get_input_metadata): ndim=4, has_taxis=F for field %s in file %s", - field[n].var[ll].area_name, associated_file ); - } - } - } - - if(ndim>4) { - sprintf(errmsg, "fregrid_util(get_input_metadata): number of dimension of field %s in file %s > 4" , - field[n].var[ll].area_name, associated_file ); - mpp_error(errmsg); - } - if( mpp_var_att_exist(field[n].var[ll].area_fid, field[n].var[ll].area_vid, "missing_value") ) { - mpp_get_var_att_double(field[n].var[ll].area_fid, field[n].var[ll].area_vid, "missing_value", &(field[n].var[ll].area_missing)); - } - else if( mpp_var_att_exist(field[n].var[ll].area_fid, field[n].var[ll].area_vid, "_FillValue") ) { - mpp_get_var_att_double(field[n].var[ll].area_fid, field[n].var[ll].area_vid, "_FillValue", &(field[n].var[ll].area_missing)); - } - else - field[n].var[ll].area_missing = 0; - } - } - else { - field[n].var[ll].cell_measures=0; - field[n].var[ll].area_missing = 0; - field[n].var[ll].area_has_taxis = 0; - } - - /* get the interp_method from the field attribute if existing - when interp_method is not conserve_order2_monotonic - */ - if( !(opcode & MONOTONIC) ) { - if(mpp_var_att_exist(file[n].fid, field[n].var[ll].vid, "interp_method")) { - char remap_method[STRING] = ""; - mpp_get_var_att(file[n].fid, field[n].var[ll].vid, "interp_method", remap_method); - if(!strcmp(remap_method, "conserve_order1") ) { - use_conserve = 1; - field[n].var[ll].interp_method = CONSERVE_ORDER1; - } - else if(!strcmp(remap_method, "conserve_order2") ) { - use_conserve = 1; - field[n].var[ll].interp_method = CONSERVE_ORDER2; - } - else if(!strcmp(remap_method, "bilinear") ) { - use_bilinear = 1; - field[n].var[ll].interp_method = BILINEAR; - } - else { - sprintf(errmsg, "get_input_metadata(fregrid_util.c): in file %s, attribute interp_method of field %s has value = %s" - "is not suitable, it should be conserve_order1, conserve_order2 or bilinear", file[n].name, - field[n].var[ll].name, remap_method); - mpp_error(errmsg); - } - } - } - ndim = mpp_get_var_ndim(file[n].fid, field[n].var[ll].vid); - if(ndim <2 || ndim>5) mpp_error("get_input_metadata(fregrid_util.c): ndim should be no less than 2 and no larger than 5"); - for(i=0; i 2) { - if(cart[ndim-3] == 'Z') { - field[n].var[ll].has_zaxis = 1; - field[n].var[ll].nz = dimsize[ndim-3]; - if(kend > field[n].var[ll].nz) { - sprintf(errmsg, "get_input_metadata(fregrid_util.c): KlevelEnd should be no larger than " - "number of vertical levels of field %s in file %s.", field[n].var[ll].name, file[n].name); - mpp_error(errmsg); - } - if(kbegin>0) { - field[n].var[ll].kstart = kbegin - 1; - field[n].var[ll].kend = kend - 1; - field[n].var[ll].nz = kend - kbegin + 1; - } - else { - field[n].var[ll].kstart = 0; - field[n].var[ll].kend = field[n].var[ll].nz - 1; - } - } - else if(cart[ndim-3] == 'N') { - field[n].var[ll].has_naxis = 1; - field[n].var[ll].nn = dimsize[ndim-3]; - } - } - if(ndim > 3) { - if(cart[ndim-4] == 'Z') { - mpp_error("get_input_metadata(fregrid_util.c): the Z-axis must be the third dimension"); - } - if(cart[ndim-4] == 'N') { - field[n].var[ll].has_naxis = 1; - field[n].var[ll].nn = dimsize[ndim-4]; - } - } - - if(cart[0] == 'T') { - field[n].var[ll].has_taxis = 1; - if(lend > dimsize[0]) { - sprintf(errmsg, "get_input_metadata(fregrid_util.c): LstepEnd should be no larger than " - "number of time levels of field %s in file %s.", field[n].var[ll].name, file[n].name); - mpp_error(errmsg); - } - if(lbegin>0) { - field[n].var[ll].lstart = lbegin - 1; - field[n].var[ll].lend = lend - 1; - file[n].nt = lend - lbegin + 1; - } - else { - field[n].var[ll].lstart = 0; - field[n].var[ll].lend = dimsize[0] - 1; - file[n].nt = dimsize[0]; - } - - } - for(i=0; i MAXDIM) mpp_error("get_input_metadata(fregrid_util.c):ndim is greater than MAXDIM"); - - file[n].axis[j].cart = cart[i]; - file[n].axis[j].type = type[i]; - strcpy(file[n].axis[j].name, dimname[i]); - strcpy(file[n].axis[j].bndname, bndname[i]); - file[n].axis[j].vid = mpp_get_varid(file[n].fid, dimname[i]); - if(cart[i] == 'T') { - start[0] = field[n].var[ll].lstart; - file[n].axis[j].size = file[n].nt; - } - else if(cart[i] == 'Z') { - start[0] = field[n].var[ll].kstart; - file[n].axis[j].size = field[n].var[ll].nz; - } - else { - start[0] = 0; - file[n].axis[j].size = dimsize[i]; - } - file[n].axis[j].data = (double *)malloc(file[n].axis[j].size*sizeof(double)); - nread[0] = file[n].axis[j].size; - mpp_get_var_value_block(file[n].fid, file[n].axis[j].vid, start, nread, file[n].axis[j].data); - file[n].axis[j].bndtype = 0; - if(strcmp(bndname[i], "none") ) { - file[n].axis[j].bndid = mpp_get_varid(file[n].fid, bndname[i]); - if(mpp_get_var_ndim(file[n].fid,file[n].axis[j].bndid) == 1) { - file[n].axis[j].bndtype = 1; - file[n].axis[j].bnddata = (double *)malloc((file[n].axis[j].size+1)*sizeof(double)); - nread[0] = file[n].axis[j].size+1; - } - else { - file[n].axis[j].bndtype = 2; - file[n].axis[j].bnddata = (double *)malloc(2*file[n].axis[j].size*sizeof(double)); - nread[0] = file[n].axis[j].size; nread[1] = 2; - } - mpp_get_var_value_block(file[n].fid, file[n].axis[j].bndid, start, nread, file[n].axis[j].bnddata); - } - else if( cart[i] == 'X' || cart[i] == 'Y' ) { - sprintf(file[n].axis[j].bndname, "%s_bnds", file[n].axis[j].name); - } - - } - } /*ndim*/ - } /* nvar */ - } /* ntile */ - /* make sure the consistency between tiles */ - for(n=1; n 0) - start[0] = lbegin-1; - else - start[0] = 0; - nread[0] = file[n].nt; nread[1] = 1; - mpp_get_var_value_block(file[n].fid, file[n].id_t1, start, nread, file[n].t1); - mpp_get_var_value_block(file[n].fid, file[n].id_t2, start, nread, file[n].t2); - mpp_get_var_value_block(file[n].fid, file[n].id_dt, start, nread, file[n].dt); - } - } - - } /*nfile*/ - - /* make sure bilinear and conservative interpolation do not co-exist. */ - if(use_bilinear && use_conserve) mpp_error("get_input_metadata(fregrid_util.c): bilinear interpolation and conservative " - "interpolation can not co-exist, check you option interp_method in command " - "line and field attribute interp_method in source file"); - -}; /* get_input_metadata */ - -/* get the string after str2 in str1 and save it into strOut - return 1 if the string is found, return 0 if not, return -1 if error found -*/ -int parse_string(const char *str1, const char *str2, char *strOut, char *errmsg) -{ - - char *str=NULL; - int len2, len, istart, attlen, i; - - len2 = strlen(str2); - str = strstr(str1, str2); - if( str ) { /* str2 is found */ - str = str+len2; - len = strlen(str); - - /* find the start position */ - istart = len; - for(i=0; invar; - if( u_in) nvector = u_in->nvar; - for(n=0; nnz > 0) scalar_out[n].var[l].nz = vgrid_out->nz; - } - - for(l=0; lnz >0 ) - file_out[n].axis[i].size = vgrid_out->nz; - else - file_out[n].axis[i].size = file_in[0].axis[i].size; - if(file_out[n].axis[i].cart == 'X') file_out[n].axis[i].size = grid_out[n].nx; - if(file_out[n].axis[i].cart == 'Y') file_out[n].axis[i].size = grid_out[n].ny; - file_out[n].axis[i].type = file_in[0].axis[i].type; - file_out[n].axis[i].bndtype = file_in[0].axis[i].bndtype; - if(standard_dimension && (file_out[n].axis[i].cart == 'X' || file_out[n].axis[i].cart == 'Y') ) - file_out[n].axis[i].bndtype = 3; - if(file_out[n].axis[i].bndtype ==0 && (file_out[n].axis[i].cart == 'X' || file_out[n].axis[i].cart == 'Y') - && dst_is_latlon) file_out[n].axis[i].bndtype = 3; - strcpy(file_out[n].axis[i].name, file_in[0].axis[i].name); - strcpy(file_out[n].axis[i].bndname, file_in[0].axis[i].bndname); - } - for(i=0; inz > 0 ) { /* z-axis */ - for(l=0; lz[l]; - } - else { - for(l=0; lnz > 0) { - for(l=0; l<=file_out[n].axis[i].size; l++) file_out[n].axis[i].bnddata[l ] = vgrid_out->zb[l]; - } - else{ - for(l=0; l<=file_out[n].axis[i].size; l++) file_out[n].axis[i].bnddata[l] = file_in[0].axis[i].bnddata[l]; - } - break; - case 2: - file_out[n].axis[i].bnddata = (double *)malloc(2*file_out[n].axis[i].size*sizeof(double)); - if( file_out[n].axis[i].cart == 'X' ) { /* x-axis */ - for(l=0; lnz > 0) { - for(l=0; lzb[l]; - file_out[n].axis[i].bnddata[2*l+1] = vgrid_out->zb[l+1]; - } - } - else { - for(l=0; l 0 ) - mpp_put_var_value(file_out[n].fid, file_out[n].axis[i].bndid, file_out[n].axis[i].bnddata); - } - } - } - } - -}; /* set_output_metadata */ - -/******************************************************************************* - void get_field_attribute( ) - *******************************************************************************/ -void get_field_attribute( int ntiles, Field_config *field) -{ - int n, l, nfield; - char str[128]; - - nfield = field->nvar; - - for(l=0; lnvar; l++) { - field_out[n].var[l].missing = field_in->var[l].missing; - field_out[n].var[l].scale = field_in->var[l].scale; - field_out[n].var[l].offset = field_in->var[l].offset; - } - - -} - - -/******************************************************************************* -void set_remap_file( ) -*******************************************************************************/ -void set_remap_file( int ntiles, const char *mosaic_file, const char *remap_file, Interp_config *interp, - unsigned int *opcode, int save_weight_only) -{ - int i, len, m, fid, vid; - size_t start[4], nread[4]; - char str1[STRING], tilename[STRING]; - int file_exist; - - if(!remap_file) return; - - for(i=0; i<4; i++) { - start[i] = 0; nread[i] = 1; - } - nread[1] = STRING; - - len = strlen(remap_file); - if(len >= STRING) mpp_error("setoutput_remap_file(fregrid_util): length of remap_file should be less than STRING"); - if( strcmp(remap_file+len-3, ".nc")==0 ) { - strncpy(str1, remap_file, len-3); - str1[len-3] = 0; - } - else - strcpy(str1, remap_file); - - (*opcode) |= WRITE; - - if(ntiles>1) { - fid = mpp_open(mosaic_file, MPP_READ); - vid = mpp_get_varid(fid, "gridtiles"); - } - - for(m=0; m 1) { - start[0] = m; - mpp_get_var_value_block(fid, vid, start, nread, tilename); - if(strlen(str1) + strlen(tilename) > STRING -5) mpp_error("set_output_remap_file(fregrid_util): length of str1 + " - "length of tilename should be no greater than STRING-5"); - sprintf(interp[m].remap_file, "%s.%s.nc", str1, tilename); - } - else - sprintf(interp[m].remap_file, "%s.nc", str1); - /* check xgrid file to be read (=1) or write ( = 2) */ - if(!save_weight_only && mpp_file_exist(interp[m].remap_file)) { - (*opcode) |= READ; - interp[m].file_exist = 1; - } - - } - - if(ntiles>1) mpp_close(fid); - -};/* set_remap_file */ - - -/*---------------------------------------------------------------------- - void write_output_axis_data( ) - write out time axis data of the output data file - --------------------------------------------------------------------*/ -void write_output_time(int ntiles, File_config *file, int level) -{ - int i, n; - size_t start[4], nwrite[4]; - - for(i=0; i<4; i++) { - start[i] = 0; nwrite[i] = 1; - } - start[0] = level; - if( mpp_pe() == mpp_root_pe()) { - for(n=0; nvar[varid].missing; - interp_method = field->var[varid].interp_method; - if(interp_method == CONSERVE_ORDER1) - halo = 0; - else - halo = 1; - - nz = 1; - if( level_z < 0 ) nz = field->var[varid].nz; - ndim = field->var[varid].ndim; - if(ndim < 2) mpp_error("fregrid_util(get_input_data): ndim must be no less than 2"); - nread = (size_t *)malloc(ndim*sizeof(size_t)); - start = (size_t *)malloc(ndim*sizeof(size_t)); - for(i=0; ivar[varid].has_taxis) start[pos++] = level_t; - if(field->var[varid].has_naxis) start[pos++] = level_n; - if(field->var[varid].has_zaxis) { - if( level_z <0 ) { - nread[pos] = field->var[varid].nz; - start[pos++] = field->var[varid].kstart; - } - else - start[pos++] = level_z; - } - if(ndim != pos + 2) mpp_error("fregrid_util(get_input_data): mimstch between ndim and has_taxis/has_zaxis/has_naxis"); - - /* first read input data for each tile */ - for(n=0; n 0 */ - if(halo > 0) { - for(n=0; n 0) { - dHold = (Data_holder *)malloc(nbound*sizeof(Data_holder)); - for(l=0; l 0 */ - if(halo > 0) { - for(n=0; n 0) { - dHold = (Data_holder *)malloc(nbound*sizeof(Data_holder)); - for(l=0; lvar[varid].ndim; - if(ndim < 2) mpp_error("fregrid_util(write_field_data): ndim must be no less than 2"); - - nwrite = (size_t *)malloc(ndim*sizeof(size_t)); - start = (size_t *)malloc(ndim*sizeof(size_t)); - nz = 1; - if(level_z<0) nz = field->var[varid].nz; - for(i=0; ivar[varid].missing; - pos = 0; - if(field->var[varid].has_taxis) start[pos++] = level_t; - if(field->var[varid].has_naxis) start[pos++] = level_n; - if(field->var[varid].has_zaxis) { - if(level_z < 0) - nwrite[pos++] = nz; - else - start[pos++] = level_z; - } - if(ndim != pos + 2) mpp_error("fregrid_util(write_field_data): mimstch between ndim and has_taxis/has_zaxis/has_naxis"); - - for(n=0; n 0) { - bound[n].is1 = (int *)malloc(nbound*sizeof(int)); - bound[n].ie1 = (int *)malloc(nbound*sizeof(int)); - bound[n].js1 = (int *)malloc(nbound*sizeof(int)); - bound[n].je1 = (int *)malloc(nbound*sizeof(int)); - bound[n].is2 = (int *)malloc(nbound*sizeof(int)); - bound[n].ie2 = (int *)malloc(nbound*sizeof(int)); - bound[n].js2 = (int *)malloc(nbound*sizeof(int)); - bound[n].je2 = (int *)malloc(nbound*sizeof(int)); - bound[n].rotate = (int *)malloc(nbound*sizeof(int)); - bound[n].tile2 = (int *)malloc(nbound*sizeof(int)); - nb = 0; - for(l=0; l<2*ncontacts; l++) { - if(tile[l] != n) continue; - switch(dir[l]) { - case WEST: - bound[n].is1[nb] = 0; - bound[n].ie1[nb] = halo-1; - bound[n].js1[nb] = min(jstart[l],jend[l])+halo; - bound[n].je1[nb] = max(jstart[l],jend[l])+halo+shift; - break; - case EAST: - bound[n].is1[nb] = nx+shift+halo; - bound[n].ie1[nb] = nx+shift+halo+halo-1; - bound[n].js1[nb] = min(jstart[l],jend[l])+halo; - bound[n].je1[nb] = max(jstart[l],jend[l])+halo+shift; - break; - case SOUTH: - bound[n].is1[nb] = min(istart[l],iend[l])+halo; - bound[n].ie1[nb] = max(istart[l],iend[l])+halo+shift; - bound[n].js1[nb] = 0; - bound[n].je1[nb] = halo-1; - break; - case NORTH: - bound[n].is1[nb] = min(istart[l],iend[l])+halo; - bound[n].ie1[nb] = max(istart[l],iend[l])+halo+shift; - bound[n].js1[nb] = ny+shift+halo; - bound[n].je1[nb] = ny+shift+halo+halo-1; - break; - } - l2 = (l+ncontacts)%(2*ncontacts); - bound[n].tile2[nb] = tile[l2]; - switch(dir[l2]) { - case WEST: - bound[n].is2[nb] = halo+shift; - bound[n].ie2[nb] = halo+shift+halo-1; - bound[n].js2[nb] = min(jstart[l2],jend[l2])+halo; - bound[n].je2[nb] = max(jstart[l2],jend[l2])+halo+shift; - break; - case EAST: - bound[n].is2[nb] = nx-halo+1; - bound[n].ie2[nb] = nx; - bound[n].js2[nb] = min(jstart[l2],jend[l2])+halo; - bound[n].je2[nb] = max(jstart[l2],jend[l2])+halo+shift; - break; - case SOUTH: - bound[n].is2[nb] = min(istart[l2],iend[l2])+halo; - bound[n].ie2[nb] = max(istart[l2],iend[l2])+halo+shift; - bound[n].js2[nb] = halo+shift; - bound[n].je2[nb] = halo+shift+halo-1; - break; - case NORTH: - bound[n].is2[nb] = min(istart[l2],iend[l2])+halo; - bound[n].ie2[nb] = max(istart[l2],iend[l2])+halo+shift; - bound[n].js2[nb] = ny-halo+1; - bound[n].je2[nb] = ny; - break; - } - bound[n].rotate[nb] = ZERO; - if(dir[l] == WEST && dir[l2] == NORTH) bound[n].rotate[nb] = NINETY; - if(dir[l] == EAST && dir[l2] == SOUTH) bound[n].rotate[nb]= NINETY; - if(dir[l] == SOUTH && dir[l2] == EAST) bound[n].rotate[nb] = MINUS_NINETY; - if(dir[l] == NORTH && dir[l2] == WEST) bound[n].rotate[nb] = MINUS_NINETY; - if(dir[l] == NORTH && dir[l2] == NORTH) bound[n].rotate[nb] = ONE_HUNDRED_EIGHTY; - /* make sure the size match at the boundary */ - if( (bound[n].ie2[nb]-bound[n].is2[nb]+1)*(bound[n].je2[nb]-bound[n].js2[nb]+1) != - (bound[n].ie1[nb]-bound[n].is1[nb]+1)*(bound[n].je1[nb]-bound[n].js1[nb]+1) ) - mpp_error("fregrid_util: size mismatch between the boundary"); - nb++; - } - } - } -}; /* setup_boundary */ - -void delete_bound_memory(int ntiles, Bound_config *bound) -{ - int n; - - for(n=0; n 0) { - free(bound[n].is1); - free(bound[n].ie1); - free(bound[n].js1); - free(bound[n].je1); - free(bound[n].is2); - free(bound[n].ie2); - free(bound[n].js2); - free(bound[n].je2); - free(bound[n].tile2); - free(bound[n].rotate); - } - } -} - - -/*----------------------------------------------------------------------------- - void init_halo(double *var, int nx, int ny, int nz, int halo) - initialze the halo data to be zero. - ---------------------------------------------------------------------------*/ -void init_halo(double *var, int nx, int ny, int nz, int halo) -{ - int i, j, k; - int nxd, nyd, nall; - - nxd = nx+2*halo; - nyd = ny+2*halo; - nall = nxd*nyd; - - for(k=0; knbound; - size1 = nx*ny; - - for(n=0; nis1[n]; - ie1 = bound->ie1[n]; - js1 = bound->js1[n]; - je1 = bound->je1[n]; - is2 = bound->is2[n]; - ie2 = bound->ie2[n]; - js2 = bound->js2[n]; - je2 = bound->je2[n]; - nx2 = dHold[n].nx; - ny2 = dHold[n].ny; - size2 = nx2*ny2; - bufsize = nz*(ie2-is2+1)*(je2-js2+1); - buffer = (double *)malloc(bufsize*sizeof(double)); - /* fill the buffer */ - l = 0; - switch(bound->rotate[n]) { - case ZERO: - for(k=0; k=is2; i--) for(j=js2; j<=je2; j++) buffer[l++] = dHold[n].data[k*size2+j*nx2+i]; - break; - case MINUS_NINETY: - for(k=0; k=js2; j--) buffer[l++] = dHold[n].data[k*size2+j*nx2+i]; - break; - case ONE_HUNDRED_EIGHTY: - for(k=0; k=js2; j--) for(i=ie2; i>=is2; i--) buffer[l++] = dHold[n].data[k*size2+j*nx2+i]; - break; - } - l = 0; - for(k=0; k -#include "constant.h" -#include "mpp_domain.h" - -#define MAXATT 4096 -#define MAXSTRING 10240 -#define MAXENTRY 512 -#define NVAR 2048 -#define NFILE 32 -#define MAXDIM 10 -/* constants for grid type and grid location */ -#define ZERO 0 -#define NINETY 1 -#define MINUS_NINETY -1 -#define ONE_HUNDRED_EIGHTY 2 -#define CENTER 3 -#define CORNER 4 -#define EAST 4 -#define NORTH 5 -#define WEST 6 -#define SOUTH 7 - - -/* constants for option */ -#define CONSERVE_ORDER1 1 -#define CONSERVE_ORDER2 2 -#define BILINEAR 4 -#define VECTOR 8 -#define TARGET 16 -#define SYMMETRY 32 -#define AGRID 64 -#define BGRID 128 -#define READ 256 -#define WRITE 512 -#define CHECK_CONSERVE 1024 -#define LEGACY_CLIP 2048 -#define GREAT_CIRCLE 4096 -#define STANDARD_DIMENSION 8192 -#define MONOTONIC 16384 -#define EXTRAPOLATE 32768 - -/* constant for cell_methods */ -#define CELL_METHODS_MEAN 0 -#define CELL_METHODS_SUM 1 - -typedef struct { - char name[STRING]; /* variable name */ - int vid; - nc_type type; - int ndim; - int index[4]; - int nz; - int nn; - int kstart; - int kend; - int lstart; - int lend; - int has_naxis; - int has_zaxis; - int has_taxis; - double missing; - double scale; - double offset; - int has_missing; - int interp_method; /* indicate which remapping method will be used to do regridding. */ - int cell_measures; - int cell_methods; - int area_vid; - int area_fid; - int area_has_taxis; - int area_has_naxis; - double area_missing; - char area_name[STRING]; - -} Var_config; - -typedef struct { - char *file; - int *fid; - int nvar; - double *data; /* array to store one variable data */ - double *area; /* fraction of cell area */ - double *grad_x; /* array to store one variable data gradient in x-direction */ - double *grad_y; /* array to store one variable data gradient in y-direction */ - int *grad_mask; /* array to store the mask for gradient */ - Var_config *var; -} Field_config; - -typedef struct { - char name[STRING]; - char bndname[STRING]; - int dimid; - int vid; - int bndid; - int size; - nc_type type; - char cart; - int bndtype; - double *bnddata; - double *data; -} Axis_config; - -typedef struct { - int nt; - char name[STRING]; - int fid; - int ndim; - Axis_config *axis; - int has_tavg_info; - int has_cell_measure_att; - int id_t1, id_t2, id_dt; - double *t1, *t2, *dt; -} File_config; - -typedef struct { - size_t nxgrid; - int *i_in; - int *j_in; - int *i_out; - int *j_out; - int *t_in; - double *di_in; - double *dj_in; - double *area; - double *weight; - int *index; - char remap_file[STRING]; - int file_exist; -} Interp_config; - -typedef struct { - int nz; - double *z; - double *zb; - int kstart; - int kend; - int need_interp; -} VGrid_config; - - -typedef struct { - int is_cyclic; - int is_tripolar; - int halo; - int nx; - int ny; - int nx_fine; - int ny_fine; - int isc; - int iec; - int jsc; - int jec; - int nxc; - int nyc; - double *lonc; - double *latc; - double *lont; - double *latt; - double *xt; - double *yt; - double *xc; - double *yc; - double *zt; - double *dx; - double *dy; - double *area; /* used for computing gradient */ - double *lonc1D; - double *latc1D; - double *lont1D; - double *latt1D; - double *latt1D_fine; - double *en_e; - double *en_n; - double *edge_w; - double *edge_e; - double *edge_s; - double *edge_n; - double *vlon_t; - double *vlat_t; - double *cosrot; - double *sinrot; - double *weight; - double *cell_area; /* cell area */ - int weight_exist; - int rotate; - domain2D domain; -} Grid_config; - -typedef struct{ - int nbound; - int *tile2; - int *is1, *ie1, *js1, *je1; - int *is2, *ie2, *js2, *je2; - int *rotate; -} Bound_config; - -typedef struct{ - double *data; - int nx; - int ny; -} Data_holder; - -typedef struct{ - double *f_bar_max; - double *f_bar_min; - double *f_max; - double *f_min; -} Monotone_config; - -#endif diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/COPYING b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/COPYING deleted file mode 100644 index 93a221957b..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/COPYING +++ /dev/null @@ -1,159 +0,0 @@ -TERMS AND CONDITIONS -0. Definitions. - -“This License” refers to version 3 of the GNU General Public License. - -“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. - -To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. - -A “covered work” means either the unmodified Program or a work based on the Program. - -To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. - -A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. - -A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Use with the GNU Affero General Public License. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_conformal_cubic_grid.c b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_conformal_cubic_grid.c deleted file mode 100644 index 4e9c9dea9e..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_conformal_cubic_grid.c +++ /dev/null @@ -1,815 +0,0 @@ -#include -#include -#include -#include -#include "mpp.h" -#include "mosaic_util.h" -#include "tool_util.h" -#include "constant.h" -#include "create_hgrid.h" -#define D2R (M_PI/180.) -#define R2D (180./M_PI) -/********************************************************************************* - some private routines used in this file -*********************************************************************************/ -void calc_geocoords_centerpole(int nx, int ny, double *x, double *y); -void conformal_map_coords2xyz ( int ni, int nj, double *lx, double *ly, double *X, double *Y, double *Z ); -void map_xyz2lonlat(int ni, int nj, double *X, double *Y, double *Z, double *lon, double *lat ); -void rotate_about_xaxis(int ni, int nj, double *X, double *Y, double *Z, double angle); -void permutiles(int ni, int nj, double *b, int num); -void calc_fvgrid(int nx, int ny, int nratio, double *dx, double *dy, double *area); -double* angle_between_vectors(int ni, int nj, double *vec1, double *vec2); -double* excess_of_quad(int ni, int nj, double *vec1, double *vec2, double *vec3, double *vec4 ); -double* plane_normal(int ni, int nj, double *P1, double *P2); -void calc_rotation_angle(int nxp, int nyp, double *x, double *y, double *angle_dx, double *angle_dy); - - -/******************************************************************************* - void create_conformal_cubic_grid( int *npoints, int *nratio, char *method, char *orientation, double *x, - double *y, double *dx, double *dy, double *area, double *angle_dx, - double *angle_dy ) - create cubic grid. All six tiles grid will be generated. -*******************************************************************************/ -void create_conformal_cubic_grid( int *npts, int *nratio, char *method, char *orientation, double *x, - double *y, double *dx, double *dy, double *area, double *angle_dx, - double *angle_dy ) -{ - int nx, ny, nxp, nyp; - - nx = *npts; - ny = nx; - nxp = nx+1; - nyp = nxp; - - /*calculate geographic coordinates. */ - if(strcmp(orientation, "center_pole") == 0) - calc_geocoords_centerpole(nx, ny, x, y); - else - mpp_error("create_cubic_grid: only center pole orientation is implemented"); - - /* calculate cell length and area */ - calc_fvgrid(nx, ny, *nratio, dx, dy, area); - - /*calculate rotation angle, just some workaround, will modify this in the future. */ - calc_rotation_angle(nxp, nyp, x, y, angle_dx, angle_dy ); - -}; /* create_conformal_cubic_grid */ - -/*********************************************************************** - calc_geoocoords_centerpole(int nx, int ny, double *x, double *y); -calculate geographic coordinates for all six tiles. - -***********************************************************************/ -void calc_geocoords_centerpole(int nx, int ny, double *x, double *y) -{ - int i, j, n, m, nxp, nyp, nxh, nyh; - double *lx, *ly, *X, *Y, *Z, *lonP, *latP, *lonE, *latE, *tmp; - - nxp = nx+1; - nyp = ny+1; - nxh = (nxp+1)/2; - nyh = (nyp+1)/2; - - lx = (double *)malloc(nxh*nyh*sizeof(double)); - ly = (double *)malloc(nxh*nyh*sizeof(double)); - - n = 0; - for(j=0; j= M_PI ) lonP[j*nxp+i] -= 2*M_PI; - } - } - - tmp = (double *) malloc(nxh*nyh*sizeof(double)); - n = 0; - for(j=0; j fabs(lx[n]) ) { - xc = 1-Y[n]; - yc = 1-X[n]; - } - zc = cpow((xc+I*yc)/2.,4); - /*Evaluate the Taylor series. */ - w = 0; - - for(m=order; m>=0; m--) w = ( w + A[m] ) * zc; - if( w != 0. ) w = cpow(I,THRD) * cpow( w*I, THRD); - w = (w-RA)/(CB+CC*w); - X[n] = creal(w); - Y[n] = cimag(w); - h = 2./(1+cpow(X[n],2)+cpow(Y[n],2)); - X[n] = X[n]*h; - Y[n] = Y[n]*h; - Z[n] = h-1; - } - - for(n=0; n< ni*nj; n++) { - if(fabs(ly[n]) > fabs(lx[n]) ) { - t = X[n]; - X[n] = Y[n]; - Y[n] = t; - } - - if(lx[n]<0) X[n] = -X[n]; - if(lx[n]==0) X[n] = 0; - if(ly[n]<0) Y[n] = -Y[n]; - if(ly[n]==0) Y[n] = 0; - } - -}; /* conformal_map_coords2xyz */ - - - -/********************************************************** - Convert 3-D coordinates (x,y,z) to (lon,lat) - Assumes "lat" is positive with "z", equatorial plane - falls at z=0 and "lon" is measured anti-clockwise (eastward) - from x-axis (y=0) about z-axis. - -************************************************************/ - -void map_xyz2lonlat(int ni, int nj, double *X, double *Y, double *Z, - double *lon, double *lat ) -{ - int i, j, n; - double req; - - for(n=0; n=0) lon[n] += M_PI; - if(X[n]<=0 && Y[n] < 0) lon[n] -= M_PI; - } - -}; /* map_xyz2lonlat */ - - -/************************************************************** - void rotate_about_xaxis(int ni, int nj, double *X, double *Y, - double *Z, double angle) - - Rotate about X axis by "angle" - -***************************************************************/ - -void rotate_about_xaxis(int ni, int nj, double *X, double *Y, - double *Z, double angle) { - int i, j, n; - double s,c,old; - const double tolerance = 1.e-9; - - s=sin(angle); - c=cos(angle); - - if (c0) - s = 1; - else - s = -1; - } - - for(n=0; n1, 4->2, 5->4, 1->5, the tiles 3 and 6 get rotated 90 degs. - -*************************************************************************/ - -void permutiles(int ni, int nj, double *b, int num) { - - int i, j, k, n; - int ntiles = 6; - double *c=NULL; - - c = (double *)malloc(ni*nj*ntiles*sizeof(double)); - - for(k=0; ki) - areal[j*(nif-1)+i] = areal[i*(nif-1)+j]; - } - } - - /* Use symmetry to fill second octant */ - for(j=1; j* angle_between_vectors(array vec1, array vec2) -*******************************************************************************/ - -double* angle_between_vectors(int ni, int nj, double *vec1, double *vec2) { - int n; - double vector_prod, nrm1, nrm2; - double *angle; - - angle = (double *)malloc(ni*nj*sizeof(double)); - - for(n=0; n= nxp) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tp1 = n+1; - ip1 = 0; - } - else { /* tile 2, 4, 6 */ - tp1 = n+2; - if(tp1 >= ntiles) tp1 -= ntiles; - ip1 = ny-j-1; - jp1 = 0; - } - } - if(im1 < 0) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tm1 = n-2; - if(tm1 < 0) tm1 += ntiles; - jm1 = ny; - im1 = nx-j; - } - else { /* tile 2, 4, 6 */ - tm1 = n-1; - im1 = nx; - } - } - - angle_dx[n*nxp*nyp+j*nxp+i] = atan2(y[tp1*nxp*nyp+jp1*nxp+ip1]-y[tm1*nxp*nyp+jm1*nxp+im1], - (x[tp1*nxp*nyp+jp1*nxp+ip1]-x[tm1*nxp*nyp+jm1*nxp+im1])*lon_scale )*R2D; - tp1 = n; - tm1 = n; - ip1 = i; - im1 = i; - jp1 = j+1; - jm1 = j-1; - if(jp1 >=nyp) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tp1 = n+2; - if(tp1 >= ntiles) tp1 -= ntiles; - jp1 = nx-i; - ip1 = 0; - } - else { /* tile 2, 4, 6 */ - tp1 = n+1; - if(tp1 >= ntiles) tp1 -= ntiles; - jp1 = 0; - } - } - if(jm1 < 0) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tm1 = n-1; - if(tm1 < 0) tm1 += ntiles; - jm1 = ny; - } - else { /* tile 2, 4, 6 */ - tm1 = n-2; - if(tm1 < 0) tm1 += ntiles; - im1 = nx; - jm1 = nx-i; - } - } - - angle_dy[n*nxp*nyp+j*nxp+i] = atan2(y[tp1*nxp*nyp+jp1*nxp+ip1]-y[tm1*nxp*nyp+jm1*nxp+im1], - (x[tp1*nxp*nyp+jp1*nxp+ip1]-x[tm1*nxp*nyp+jm1*nxp+im1])*lon_scale )*R2D; - } - } - } - -}; /* calc_rotation_angle */ - diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_gnomonic_cubic_grid.c b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_gnomonic_cubic_grid.c deleted file mode 100644 index 33b4d79a3e..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_gnomonic_cubic_grid.c +++ /dev/null @@ -1,1306 +0,0 @@ -#include -#include -#include -#include -#include "mpp.h" -#include "constant.h" -#include "mosaic_util.h" -#include "tool_util.h" -#include "create_hgrid.h" -#define D2R (M_PI/180.) -#define R2D (180./M_PI) -#define EPSLN10 (1.e-10) -#define EPSLN4 (1.e-4) -#define EPSLN5 (1.e-5) -#define EPSLN7 (1.e-7) -#define EPSLN8 (1.0e-8) - -/* private subroutines */ -void gnomonic_ed (int ni, double* lamda, double* theta); -void gnomonic_angl(int ni, double* lamda, double* theta); -void gnomonic_dist(int ni, double* lamda, double* theta); -void cartesian_to_spherical(double x, double y, double z, double *lon, double *lat, double *r); -void spherical_to_cartesian(double lon, double lat, double r, double *x, double *y, double *z); -void symm_ed(int ni, double *lamda, double *theta); -void mirror_grid(int ni, int ntiles, double *x, double *y ); -void mirror_latlon(double lon1, double lat1, double lon2, double lat2, double lon0, - double lat0, double *lon, double *lat); -void rot_3d(int axis, double x1in, double y1in, double z1in, double angle, double *x2out, - double *y2out, double *z2out, int degrees, int convert); -double excess_of_quad2(const double *vec1, const double *vec2, const double *vec3, const double *vec4 ); -double angle_between_vectors2(const double *vec1, const double *vec2); -void plane_normal2(const double *P1, const double *P2, double *plane); -void calc_rotation_angle2(int nxp, double *x, double *y, double *angle_dx, double *angle_dy); -void cell_center(int ni, int nj, const double *lonc, const double *latc, double *lont, double *latt); -void cell_east(int ni, int nj, const double *lonc, const double *latc, double *lone, double *late); -void cell_north(int ni, int nj, const double *lonc, const double *latc, double *lonn, double *latn); -void calc_cell_area(int nx, int ny, const double *x, const double *y, double *area); -void direct_transform(double stretch_factor, int i1, int i2, int j1, int j2, double lon_p, double lat_p, - int n, double *lon, double *lat); -void setup_aligned_nest(int parent_ni, int parent_nj, const double *parent_xc, const double *parent_yc, - int halo, int refine_ratio, int istart, int iend, int jstart, int jend, - double *xc, double *yc); - -void spherical_linear_interpolation(double beta, const double *p1, const double *p2, double *pb); - -/******************************************************************************* - void create_gnomonic_cubic_grid( int *npoints, int *nratio, char *method, char *orientation, double *x, - double *y, double *dx, double *dy, double *area, double *angle_dx, - double *angle_dy ) - create nomomic cubic grid. All six tiles grid will be generated. -*******************************************************************************/ -void create_gnomonic_cubic_grid( char* grid_type, int *nlon, int *nlat, double *x, double *y, - double *dx, double *dy, double *area, double *angle_dx, - double *angle_dy, double shift_fac, int do_schmidt, double stretch_factor, - double target_lon, double target_lat, int nest_grid, - int parent_tile, int refine_ratio, int istart_nest, - int iend_nest, int jstart_nest, int jend_nest, int halo) -{ - const int ntiles = 6; - int ntiles2, global_nest=0; - int nx, ny, nxp, nyp, ni, nj, nip, njp; - int ni_nest, nj_nest, nx_nest, ny_nest; - int istart, iend, jstart, jend; - int ni2, nj2, ni2p, nj2p, n1, n2; - int *nxl=NULL, *nyl=NULL, *nil=NULL, *njl=NULL; - int i, j, n, npts; - double p1[2], p2[2]; - double *lon=NULL, *lat=NULL; - double *xc=NULL, *yc=NULL, *xtmp=NULL, *ytmp=NULL; - double *xc2=NULL, *yc2=NULL; - int stretched_grid=0; - - /* make sure the first 6 tiles have the same grid size and - the size in x and y-direction are the same - */ - - for(n=0; n ntiles) { - nxl[ntiles] = nx_nest; - nyl[ntiles] = ny_nest; - nil[ntiles] = ni_nest; - njl[ntiles] = nj_nest; - } - - /* for global nest grid, set ni to the coarse grid size */ - if(global_nest) { - ni /= refine_ratio; - nj /= refine_ratio; - } - nip=ni+1; - njp=nj+1; - - if ( do_schmidt && fabs(stretch_factor-1.) > EPSLN5 ) stretched_grid = 1; - - lon = (double *)malloc(nip*nip*sizeof(double)); - lat = (double *)malloc(nip*nip*sizeof(double)); - - if(strcmp(grid_type, "gnomonic_ed")==0 ) - gnomonic_ed( ni, lon, lat); - else if(strcmp(grid_type,"gnomonic_dist")==0) - gnomonic_dist(ni, lon, lat); - else if(strcmp(grid_type,"gnomonic_angl")==0) - gnomonic_angl(ni, lon, lat); - else mpp_error("create_gnomonic_cubic_grid: grid type should be 'gnomonic_ed', " - "'gnomonic_dist' or 'gnomonic_angl'"); - - symm_ed(ni, lon, lat); - - - npts = ntiles*nip*nip; - if(ntiles2>ntiles) npts += (ni_nest+1)*(nj_nest+1); - - xc = (double *)malloc(npts*sizeof(double)); - yc = (double *)malloc(npts*sizeof(double)); - - for(j=0; j EPSLN4) xc[n] -= M_PI/18.; - if(xc[n] < 0.) xc[n] += 2.*M_PI; - if(fabs(xc[n]) < EPSLN10) xc[n] = 0; - if(fabs(yc[n]) < EPSLN10) yc[n] = 0; - } - - /* ensure consistency on the boundary between tiles */ - for(j=0; j 2W */ - yc[ nip*nip+j*nip] = yc[j*nip+ni]; /* 1E -> 2W */ - xc[2*nip*nip+j*nip] = xc[ni*nip+ni-j]; /* 1N -> 3W */ - yc[2*nip*nip+j*nip] = yc[ni*nip+ni-j]; /* 1N -> 3W */ - } - for(i=0; i 5N */ - yc[4*nip*nip+ni*nip+i] = yc[(ni-i)*nip]; /* 1W -> 2N */ - xc[5*nip*nip+ni*nip+i] = xc[i]; /* 1S -> 6N */ - yc[5*nip*nip+ni*nip+i] = yc[i]; /* 1S -> 6N */ - xc[2*nip*nip+i] = xc[nip*nip+ni*nip+i]; /* 2N -> 3S */ - yc[2*nip*nip+i] = yc[nip*nip+ni*nip+i]; /* 2N -> 3S */ - xc[3*nip*nip+i] = xc[nip*nip+(ni-i)*nip+ni]; /* 2E -> 4S */ - yc[3*nip*nip+i] = yc[nip*nip+(ni-i)*nip+ni]; /* 2E -> 4S */ - } - for(j=0; j 6E */ - yc[5*nip*nip+j*nip+ni] = yc[nip*nip+ni-j]; /* 2S -> 6E */ - xc[3*nip*nip+j*nip] = xc[2*nip*nip+j*nip+ni]; /* 3E -> 4W */ - yc[3*nip*nip+j*nip] = yc[2*nip*nip+j*nip+ni]; /* 3E -> 4W */ - xc[4*nip*nip+j*nip] = xc[2*nip*nip+ni*nip+ni-j]; /* 3N -> 5W */ - yc[4*nip*nip+j*nip] = yc[2*nip*nip+ni*nip+ni-j]; /* 3N -> 5W */ - } - for(i=0; i 5S */ - yc[4*nip*nip+i] = yc[3*nip*nip+ni*nip+i]; /* 4N -> 5S */ - xc[5*nip*nip+i] = xc[3*nip*nip+(ni-i)*nip+ni]; /* 4E -> 6S */ - yc[5*nip*nip+i] = yc[3*nip*nip+(ni-i)*nip+ni]; /* 4E -> 6S */ - } - for(j=0; j 6W */ - yc[5*nip*nip+j*nip] = yc[4*nip*nip+j*nip+ni]; /* 5E -> 6W */ - } - - /* Schmidt transformation */ - if ( do_schmidt ) { - for(n=0; nni2) ni2 = nil[n]; - if(njl[n]>nj2) nj2 = njl[n]; - } - ni2p = ni2+1; - nj2p = nj2+1; - xtmp = (double *)malloc(ni2p*nj2p*sizeof(double)); - ytmp = (double *)malloc(ni2p*nj2p*sizeof(double)); - - for(n=0; n 1W */ - dy[j*nxp+nx] = dy[nxp*nx+j*nxp]; /* 2W -> 1E */ - dy[nxp*nx+j*nxp+nx] = dx[3*nx*nxp+(nx-j-1)]; /* 4S -> 2E */ - dy[2*nxp*nx+j*nxp] = dx[nx*nx+nx-j-1]; /* 1N -> 3W */ - dy[2*nxp*nx+j*nxp+nx] = dy[3*nxp*nx+j*nxp]; /* 4W -> 3E */ - dy[3*nxp*nx+j*nxp+nx] = dx[5*nx*nxp+(nx-j-1)]; /* 4S -> 2E */ - dy[4*nxp*nx+j*nxp] = dx[2*nx*nxp+nx*nx+nx-j-1]; /* 3N -> 5W */ - dy[4*nxp*nx+j*nxp+nx] = dy[5*nxp*nx+j*nxp]; /* 6W -> 5E */ - dy[5*nxp*nx+j*nxp+nx] = dx[nx*nxp+(nx-j-1)]; /* 2S -> 6E */ - } - - if(do_schmidt) { /* calculate area for each tile */ - for(n=0; nntiles) calc_cell_area(nx_nest, ny_nest, x+ntiles*nxp*nyp, y+ntiles*nxp*nyp, area+ntiles*nx*ny); - - /*calculate rotation angle, just some workaround, will modify this in the future. */ - calc_rotation_angle2(nxp, x, y, angle_dx, angle_dy ); - - /* since angle is used in the model, set angle to 0 for nested region */ - if(ntiles2>ntiles) { - for(i=0; i<=(nx_nest+1)*(ny_nest+1); i++) { - angle_dx[ntiles*nxp*nxp+i]=0; - angle_dy[ntiles*nxp*nxp+i]=0; - } - } - - /* convert grid location from radians to degree */ - npts = ntiles*nxp*nyp; - if(nx_nest>0) npts += (nx_nest+1)*(ny_nest+1); - - for(i=0; i EPSLN7 ) { - sin_lat = sin(lat[l]); - lat_t = asin( (c2m1+c2p1*sin_lat)/(c2p1+c2m1*sin_lat) ); - } - else { - lat_t = lat[l]; - } - sin_lat = sin(lat_t); - cos_lat = cos(lat_t); - sin_o = -(sin_p*sin_lat + cos_p*cos_lat*cos(lon[l])); - if ( (1.-fabs(sin_o)) < EPSLN7 ) { /* poles */ - lon[l] = 0.; - lat[l] = (sin_o < 0) ? -p2:p2; - } - else { - lat[l] = asin( sin_o ); - lon[l] = lon_p + atan2(-cos_lat*sin(lon[l]), -sin_lat*cos_p+cos_lat*sin_p*cos(lon[l])); - if ( lon[l] < 0. ) - lon[l] +=two_pi; - else if( lon[l] >= two_pi ) - lon[l] -=two_pi; - } - } - -}; /* direct_transform */ - - - -/*----------------------------------------------------- - void gnomonic_ed - Equal distance along the 4 edges of the cubed sphere - ----------------------------------------------------- - Properties: - * defined by intersections of great circles - * max(dx,dy; global) / min(dx,dy; global) = sqrt(2) = 1.4142 - * Max(aspect ratio) = 1.06089 - * the N-S coordinate curves are const longitude on the 4 faces with equator - For C2000: (dx_min, dx_max) = (3.921, 5.545) in km unit - ! Ranges: - ! lamda = [0.75*pi, 1.25*pi] - ! theta = [-alpha, alpha] - --------------------------------------------------------*/ -void gnomonic_ed(int ni, double* lamda, double* theta) -{ - - int i, j, n, nip; - double dely; - double *pp, *x, *y, *z; - double rsq3, alpha; - - - nip = ni + 1; - rsq3 = 1./sqrt(3.); - alpha = asin( rsq3 ); - - dely = 2.*alpha/ni; - - /* Define East-West edges: */ - for(j=0; j=0 ? 1:-1); - x[j*nip+ip] = x1 * (x[j*nip+ip] >=0 ? 1:-1); - x[jp*nip+i] = x1 * (x[jp*nip+i] >=0 ? 1:-1); - x[jp*nip+ip] = x1 * (x[jp*nip+ip] >=0 ? 1:-1); - - y1 = 0.25 * (fabs(y[j*nip+i]) + fabs(y[j*nip+ip]) + fabs(y[jp*nip+i]) + fabs(y[jp*nip+ip]) ); - y[j*nip+i] = y1 * (y[j*nip+i] >=0 ? 1:-1); - y[j*nip+ip] = y1 * (y[j*nip+ip] >=0 ? 1:-1); - y[jp*nip+i] = y1 * (y[jp*nip+i] >=0 ? 1:-1); - y[jp*nip+ip] = y1 * (y[jp*nip+ip] >=0 ? 1:-1); - - /* force dateline/greenwich-meridion consitency */ - if( nip%2 ) { - if( i == (nip-1)/2 ) { - x[j*nip+i] = 0.0; - x[jp*nip+i] = 0.0; - } - } - } - } - - /* define the the other five tiles. */ - for(nt=1; nt(nip-1)/2) ) x2 = M_PI; - } - break; - case 3: /* tile 4 */ - ang = -180.; - rot_3d( 3, x1, y1, z1, ang, &x2, &y2, &z2, 1, 1); /* rotate about the z-axis */ - ang = 90.; - rot_3d( 1, x2, y2, z2, ang, &x1, &y1, &z1, 1, 1); /* rotate about the z-axis */ - x2=x1; - y2=y1; - z2=z1; - - /* force dateline/greenwich-meridion consitency */ - if( nip%2 ) { - if( j == (nip-1)/2 ) x2 = M_PI; - } - break; - case 4: /* tile 5 */ - ang = 90.; - rot_3d( 3, x1, y1, z1, ang, &x2, &y2, &z2, 1, 1); /* rotate about the z-axis */ - ang = 90.; - rot_3d( 2, x2, y2, z2, ang, &x1, &y1, &z1, 1, 1); /* rotate about the z-axis */ - x2=x1; - y2=y1; - z2=z1; - break; - case 5: /* tile 6 */ - ang = 90.; - rot_3d( 2, x1, y1, z1, ang, &x2, &y2, &z2, 1, 1); /* rotate about the z-axis */ - ang = 0.; - rot_3d( 3, x2, y2, z2, ang, &x1, &y1, &z1, 1, 1); /* rotate about the z-axis */ - x2=x1; - y2=y1; - z2=z1; - - /* force South Pole and dateline/greenwich-meridion consitency */ - if(nip%2) { - if( (i==(nip-1)/2) && (i==j) ) { - x2 = 0; - y2 = -M_PI*0.5; - } - - if( (i==(nip-1)/2) && (j>(nip-1)/2) ) x2 = 0; - if( (i==(nip-1)/2) && (j<(nip-1)/2) ) x2 = M_PI; - } - break; - } - x[nt*nip*nip+j*nip+i] = x2; - y[nt*nip*nip+j*nip+i] = y2; - } - } - } -}; /* mirror_grid */ - - -/*------------------------------------------------------------------------------- - void rot_3d() - rotate points on a sphere in xyz coords (convert angle from - degrees to radians if necessary) - -----------------------------------------------------------------------------*/ -void rot_3d(int axis, double x1in, double y1in, double z1in, double angle, double *x2out, - double *y2out, double *z2out, int degrees, int convert) -{ - - double x1, y1, z1, x2, y2, z2, c, s; - - if(convert) - spherical_to_cartesian(x1in, y1in, z1in, &x1, &y1, &z1); - else { - x1=x1in; - y1=y1in; - z1=z1in; - } - - if(degrees) angle = angle*D2R; - - c = cos(angle); - s = sin(angle); - - switch (axis) { - case 1: - x2 = x1; - y2 = c*y1 + s*z1; - z2 = -s*y1 + c*z1; - break; - case 2: - x2 = c*x1 - s*z1; - y2 = y1; - z2 = s*x1 + c*z1; - break; - case 3: - x2 = c*x1 + s*y1; - y2 = -s*x1 + c*y1; - z2 = z1; - break; - default: - mpp_error("Invalid axis: must be 1 for X, 2 for Y, 3 for Z."); - } - - if(convert) - cartesian_to_spherical(x2, y2, z2, x2out, y2out, z2out); - else { - *x2out=x2;; - *y2out=y2; - *z2out=z2; - } -} /* rot_3d */ - -/*------------------------------------------------------------- - void cartesian_to_spherical(x, y, z, lon, lat, r) - may merge with xyz2latlon in the future - ------------------------------------------------------------*/ -void cartesian_to_spherical(double x, double y, double z, double *lon, double *lat, double *r) -{ - - *r = sqrt(x*x + y*y + z*z); - if ( (fabs(x) + fabs(y)) < EPSLN10 ) /* poles */ - *lon = 0.; - else - *lon = atan2(y,x); /* range: [-pi,pi] */ - - - *lat = acos(z/(*r)) - M_PI/2.; -};/* cartesian_to_spherical */ - -/*------------------------------------------------------------------------------- - void spherical_to_cartesian - convert from spheircal coordinates to xyz coords - may merge with latlon2xyz in the future - -----------------------------------------------------------------------------*/ -void spherical_to_cartesian(double lon, double lat, double r, double *x, double *y, double *z) -{ - *x = r * cos(lon) * cos(lat); - *y = r * sin(lon) * cos(lat); - - *z = -r * sin(lat); -} /* spherical_to_cartesian */ - - -/***************************************************************** - double* excess_of_quad(int ni, int nj, double *vec1, double *vec2, - double *vec3, double *vec4 ) -*******************************************************************/ -double excess_of_quad2(const double *vec1, const double *vec2, const double *vec3, const double *vec4 ) -{ - double plane1[3], plane2[3], plane3[3], plane4[3]; - double angle12, angle23, angle34, angle41, excess; - double ang12, ang23, ang34, ang41; - - plane_normal2(vec1, vec2, plane1); - plane_normal2(vec2, vec3, plane2); - plane_normal2(vec3, vec4, plane3); - plane_normal2(vec4, vec1, plane4); - angle12 = angle_between_vectors2(plane2,plane1); - angle23 = angle_between_vectors2(plane3,plane2); - angle34 = angle_between_vectors2(plane4,plane3); - angle41 = angle_between_vectors2(plane1,plane4); - ang12 = M_PI-angle12; - ang23 = M_PI-angle23; - ang34 = M_PI-angle34; - ang41 = M_PI-angle41; - excess = ang12+ang23+ang34+ang41-2*M_PI; - /* excess = 2*M_PI - angle12 - angle23 - angle34 - angle41; */ - - return excess; - -}; /* excess_of_quad */ - -/******************************************************************************* -double angle_between_vectors(const double *vec1, const double *vec2) -*******************************************************************************/ - -double angle_between_vectors2(const double *vec1, const double *vec2) { - int n; - double vector_prod, nrm1, nrm2; - double angle; - - vector_prod=vec1[0]*vec2[0] + vec1[1]*vec2[1] + vec1[2]*vec2[2]; - nrm1=pow(vec1[0],2)+pow(vec1[1],2)+pow(vec1[2],2); - nrm2=pow(vec2[0],2)+pow(vec2[1],2)+pow(vec2[2],2); - if(nrm1*nrm2>0) - angle = acos( vector_prod/sqrt(nrm1*nrm2) ); - else - angle = 0; - - return angle; -}; /* angle_between_vectors */ - - -/*********************************************************************** - double* plane_normal(int ni, int nj, double *P1, double *P2) -***********************************************************************/ - -void plane_normal2(const double *P1, const double *P2, double *plane) -{ - double mag; - - plane[0] = P1[1] * P2[2] - P1[2] * P2[1]; - plane[1] = P1[2] * P2[0] - P1[0] * P2[2]; - plane[2] = P1[0] * P2[1] - P1[1] * P2[0]; - mag=sqrt(pow(plane[0],2) + pow(plane[1],2) + pow(plane[2],2)); - if(mag>0) { - plane[0]=plane[0]/mag; - plane[1]=plane[1]/mag; - plane[2]=plane[2]/mag; - } - -}; /* plane_normal */ - -/****************************************************************** - - void calc_rotation_angle() - -******************************************************************/ - -void calc_rotation_angle2(int nxp, double *x, double *y, double *angle_dx, double *angle_dy) -{ - int ip1, im1, jp1, jm1, tp1, tm1, i, j, n, ntiles, nx; - double lon_scale; - - nx = nxp-1; - ntiles = 6; - for(n=0; n= nxp) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tp1 = n+1; - ip1 = 0; - } - else { /* tile 2, 4, 6 */ - tp1 = n+2; - if(tp1 >= ntiles) tp1 -= ntiles; - ip1 = nx-j-1; - jp1 = 0; - } - } - if(im1 < 0) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tm1 = n-2; - if(tm1 < 0) tm1 += ntiles; - jm1 = nx; - im1 = nx-j; - } - else { /* tile 2, 4, 6 */ - tm1 = n-1; - im1 = nx; - } - } - - angle_dx[n*nxp*nxp+j*nxp+i] = atan2(y[tp1*nxp*nxp+jp1*nxp+ip1]-y[tm1*nxp*nxp+jm1*nxp+im1], - (x[tp1*nxp*nxp+jp1*nxp+ip1]-x[tm1*nxp*nxp+jm1*nxp+im1])*lon_scale )*R2D; - tp1 = n; - tm1 = n; - ip1 = i; - im1 = i; - jp1 = j+1; - jm1 = j-1; - if(jp1 >=nxp) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tp1 = n+2; - if(tp1 >= ntiles) tp1 -= ntiles; - jp1 = nx-i; - ip1 = 0; - } - else { /* tile 2, 4, 6 */ - tp1 = n+1; - if(tp1 >= ntiles) tp1 -= ntiles; - jp1 = 0; - } - } - if(jm1 < 0) { /* find the neighbor tile. */ - if(n % 2 == 0) { /* tile 1, 3, 5 */ - tm1 = n-1; - if(tm1 < 0) tm1 += ntiles; - jm1 = nx; - } - else { /* tile 2, 4, 6 */ - tm1 = n-2; - if(tm1 < 0) tm1 += ntiles; - im1 = nx; - jm1 = nx-i; - } - } - - angle_dy[n*nxp*nxp+j*nxp+i] = atan2(y[tp1*nxp*nxp+jp1*nxp+ip1]-y[tm1*nxp*nxp+jm1*nxp+im1], - (x[tp1*nxp*nxp+jp1*nxp+ip1]-x[tm1*nxp*nxp+jm1*nxp+im1])*lon_scale )*R2D; - } - } - } - -}; /* calc_rotation_angle2 */ - - -/* This routine calculate center location based on the vertices location */ -void cell_center(int ni, int nj, const double *lonc, const double *latc, double *lont, double *latt) -{ - - int nip, njp, i, j, p, p1, p2, p3, p4; - double *xc, *yc, *zc, *xt, *yt, *zt; - double dd; - - nip = ni+1; - njp = nj+1; - xc = (double *)malloc(nip*njp*sizeof(double)); - yc = (double *)malloc(nip*njp*sizeof(double)); - zc = (double *)malloc(nip*njp*sizeof(double)); - xt = (double *)malloc(ni *nj *sizeof(double)); - yt = (double *)malloc(ni *nj *sizeof(double)); - zt = (double *)malloc(ni *nj *sizeof(double)); - latlon2xyz(nip*njp, lonc, latc, xc, yc, zc); - - for(j=0; j parent_nj || (iend + halo) > parent_ni ) - mpp_error("create_gnomonic_cubic_grid(setup_aligned_nest): nested grid lies outside its parent"); - - ni = (iend-istart+1)*refine_ratio; - nj = (jend-jstart+1)*refine_ratio; - npi = ni+1; - npj = nj+1; - parent_npi = parent_ni+1; - - for(j=0; j two_pi ) xc[j*npi+i] -= two_pi; - if( xc[j*npi+i] < 0. ) xc[j*npi+i] += two_pi; - } - } - -} - diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_grid_from_file.c b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_grid_from_file.c deleted file mode 100644 index 9d08aac9db..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/create_grid_from_file.c +++ /dev/null @@ -1,442 +0,0 @@ -/* - Copyright 2011 NOAA Geophysical Fluid Dynamics Lab, Princeton, NJ - This program is distributed under the terms of the GNU General Public - License. See the file COPYING contained in this directory -*/ -#include -#include -#include -#include -#include -#include "mpp.h" -#include "mosaic_util.h" -#include "tool_util.h" -#include "constant.h" -#include "mpp_io.h" -#include "create_hgrid.h" -#define D2R (M_PI/180.) -#define R2D (180./M_PI) - -void create_grid_from_text_file( char *file, int *nlon, int *nlat, double *x, double *y, double *dx, double *dy, - double *area, double *angle_dx ); -void get_grid_v1(int fid, double *xt, double *yt, double *xc, double *yc); -void get_grid_v2(int fid, int nlon, int nlat, double *xt, double *yt, double *xc, double *yc); -void get_grid_v3(int fid, int nlon, int nlat, double *xt, double *yt, double *xc, double *yc); -void get_grid_v4(int fid, int nlon, int nlat, double *xt, double *yt, double *xc, double *yc); - -/*********************************************************************** - void create_grid_from_file( char *file, int *nlon, int *nlat, double *x, double *y, double *dx, - double *dy, double *area, double *angle_dx ) - the grid location is defined through ascii file. calculate cell length, - cell area and rotation angle -************************************************************************/ -void create_grid_from_file( char *file, int *nlon, int *nlat, double *x, double *y, double *dx, double *dy, - double *area, double *angle_dx, int use_great_circle_algorithm ) -{ - double *xt, *yt, *xc, *yc; - double p1[4], p2[4], cart_x[4], cart_y[4], cart_z[4]; - int nx, ny, nxp, nyp, ni, nj, i, j, n; - int is_uniform; - char mesg[256], txt[128]; - - /************************************************************ - identify the grid_file is ascii file or netcdf file, - if the file name contains ".nc", it is a netcdf file, - otherwise it is ascii file. - *********************************************************/ - nx = *nlon; - ny = *nlat; - nxp = nx + 1; - nyp = ny + 1; - if(strstr(file, ".nc") ) { - int fid, vid; - - ni = *nlon/2; - nj = *nlat/2; - xc = (double *)malloc((ni+1)*(nj+1)*sizeof(double)); - yc = (double *)malloc((ni+1)*(nj+1)*sizeof(double)); - xt = (double *)malloc( ni * nj *sizeof(double)); - yt = (double *)malloc( ni * nj *sizeof(double)); - - fid = mpp_open(file, MPP_READ); - if(mpp_dim_exist(fid, "grid_xt") ) - get_grid_v1(fid, xt, yt, xc, yc); - else if(mpp_dim_exist(fid, "rlon") || mpp_dim_exist(fid, "i") ) - get_grid_v2(fid, ni, nj, xt, yt, xc, yc); - else if(mpp_dim_exist(fid, "lon") ) - get_grid_v3(fid, ni, nj, xt, yt, xc, yc); - else if(mpp_dim_exist(fid, "x") ) - get_grid_v4(fid, ni, nj, xt, yt, xc, yc); - - mpp_close(fid); - for(j=0; j 0) lon[i] -= 360; - xt[i] = lon[i]; - yt[i] = lat[i]; - lon[i] *= D2R; - lat[i] *= D2R; - } - - - n = log(cos(phi1)/cos(phi2))/log(tan(0.25*M_PI+0.5*phi2)/tan(0.25*M_PI+0.5*phi1)); - F = cos(phi1)*pow(tan(0.25*M_PI+0.5*phi1),n); - rho0 = F*pow(1/tan(0.25*M_PI+0.5*central_lat),n); - for(i=0; i 1.e-6 ) { - printf(" i = %d, j = %d, x1 = %g, x2 = %g \n", i, j, x1[j*nlon+i], x1[i]); - mpp_error(" x is not uniform \n"); - } - } - } - - printf(" x is uniform \n \n \n"); - - for(j=0; i 1.e-6 ) { - printf(" i = %d, j = %d, x1 = %g, x2 = %g \n", i, j, y1[j*nlon+i], y1[j*nlon]); - mpp_error(" y is not uniform \n"); - } - } - } - - printf(" y is uniform \n \n \n"); - - /* get the x and y value at corner */ - - x2 = (double *)malloc((nlon+1)*(nlat+1)*sizeof(double)); - y2 = (double *)malloc((nlon+1)*(nlat+1)*sizeof(double)); - - for(i=1; i -#include -#include -#include -#include -#include "mpp.h" -#include "mosaic_util.h" -#include "interp.h" -#include "tool_util.h" -#include "constant.h" -#include "create_hgrid.h" -#define D2R (M_PI/180.) -#define R2D (180./M_PI) - -/********************************************************************************* - some private routines used in this file -*********************************************************************************/ -void set_regular_lonlat_grid( int nxp, int nyp, int isc, int iec, int jsc, int jec, double *xb, double *yb, - double *x, double *y, double *dx, double *dy, double *area, double *angle, - int use_great_circle_algorithm); -void set_f_plane_grid( int nxp, int nyp, int isc, int iec, int jsc, int jec, double *xb, double *yb, double f_plane_latitude, - double *x, double *y, double *dx, double *dy, double *area, double *angle); -double cartesian_dist(double x1, double y1, double x2, double y2, double f_plane_latitude); -double cartesian_box_area(double x1, double y1, double x2, double y2, double f_plane_latitude); - -/************************************************************************************ - void create_regular_lonlat_grid( int *nxbnds, int *nybnds, double *xbnds, double *ybnds, - int *nlon, int *nlat, int *isc, int *iec, - int *jsc, int *jec, double *x, double *y, double *dx, - double *dy, double *area, double *angle_dx, int use_great_circle_algorithm ) - calculate grid location, length, area and rotation angle. - The routine takes the following arguments - - INPUT: - - OUTPUT: - -************************************************************************************/ -void create_regular_lonlat_grid( int *nxbnds, int *nybnds, double *xbnds, double *ybnds, - int *nlon, int *nlat, double *dlon, double *dlat, - int use_legacy, int *isc, int *iec, - int *jsc, int *jec, double *x, double *y, double *dx, - double *dy, double *area, double *angle_dx, const char *center, - int use_great_circle_algorithm) -{ - int nx, ny, nxp, nyp, nxb, nyb; - double *xb=NULL, *yb=NULL; - int refine; - double stretch = 1; - - /* use cubic-spline interpolation algorithm to calculate nominal zonal grid location. */ - nxb = *nxbnds; - nyb = *nybnds; - - if( use_legacy ) { - xb = compute_grid_bound_legacy(nxb, xbnds, dlon, stretch, &nx, center); - yb = compute_grid_bound_legacy(nyb, ybnds, dlat, stretch, &ny, center); - } - else { - xb = compute_grid_bound(nxb, xbnds, nlon, &nx, center); - yb = compute_grid_bound(nyb, ybnds, nlat, &ny, center); - } - nxp = nx + 1; - nyp = ny + 1; - /* - Test if left and right hand resolutions differ. Inform user of potential problem. - */ - if ( fabs(xb[1] - xb[0] - xb[nx] + xb[nx-1])/(xb[1] - xb[0]) > 1.e-6 ) { - printf("%d\n",nxp); - printf("%s\n" ,"Note: End point resolutions differ for x-axis. Not suitable for periodic axes"); - printf("%s\n" ," See documentation for generating periodic axes when center = 'c_cell'"); - } - - if ( fabs(yb[1] - yb[0] - yb[ny] + yb[ny-1])/(yb[1] - yb[0]) > 1.e-6 ) { - printf("%d\n",nyp); - printf("%s\n" ,"Note: End point resolutions differ for y-axis. Not suitable for periodic axes"); - printf("%s\n" ," See documentation for generating periodic axes when center = 'c_cell'"); - } - - set_regular_lonlat_grid( nxp, nyp, *isc, *iec, *jsc, *jec, xb, yb, x, y, dx, dy, area, angle_dx, use_great_circle_algorithm); - free(xb); - free(yb); - -}; /* create_regular_lonlat_grid */ - - -/************************************************************************************ - void create_simple_cartesian_grid( double *xbnds, double *ybnds, int *nlon, int *nlat, - double *simple_dx, *simple_dy, int *isc, int *iec, - int *jsc, int *jec, double *x, double *y, - double *dx, double *dy, double *area, double *angle_dx ) - calculate grid location, length, area and rotation angle. - The routine takes the following arguments - - INPUT: - - OUTPUT: - -************************************************************************************/ -void create_simple_cartesian_grid( double *xbnds, double *ybnds, int *nlon, int *nlat, - double *simple_dx, double *simple_dy, int *isc, int *iec, - int *jsc, int *jec, double *x, double *y, - double *dx, double *dy, double *area, double *angle_dx ) -{ - int nx, ny, nxp, nyp, i, j, n, nxc, nyc, nxb, nyb; - double *grid1=NULL, *grid2=NULL, *xb=NULL, *yb=NULL; - - nxb = 2; - nyb = 2; - nx = *nlon; - ny = *nlat; - nxp = nx + 1; - nyp = ny + 1; - /* use cubic-spline interpolation algorithm to calculate nominal zonal grid location. */ - xb = (double *)malloc(nxp*sizeof(double)); - grid1 = (double *)malloc(nxb*sizeof(double)); - grid1[0] = 1; - grid1[1] = nxp; - grid2 = (double *)malloc(nxp*sizeof(double)); - for(i=0;i 1.e-6 ) { - printf("%d\n",nxp); - printf("%s\n" ,"Note: End point resolutions differ for x-axis. Not suitable for periodic axes"); - printf("%s\n" ," See documentation for generating periodic axes when center = 'c_cell'"); - } - - n = 0; - for(j=0; j 1.e-6 ) { - printf("%d\n",nxp); - printf("%s\n" ,"Note: End point resolutions differ for x-axis. Not suitable for periodic axes"); - printf("%s\n" ," See documentation for generating periodic axes when center = 'c_cell'"); - } - - if ( fabs(yb[1] - yb[0] - yb[ny] + yb[ny-1])/(yb[1] - yb[0]) > 1.e-6 ) { - printf("%d\n",nyp); - printf("%s\n" ,"Note: End point resolutions differ for y-axis. Not suitable for periodic axes"); - printf("%s\n" ," See documentation for generating periodic axes when center = 'c_cell'"); - } - - set_f_plane_grid( nxp, nyp, *isc, *iec, *jsc, *jec, xb, yb, f_plane_latitude, x, y, dx, dy, area, angle_dx); - free(xb); - free(yb); - -}; /* create_f_plane_grid */ - - -/* distance between cartesian grid on the earth */ -double cartesian_dist(double x1, double y1, double x2, double y2, double f_plane_latitude) -{ - double dist = 0.0; - - if(x1 == x2) - dist = fabs(y2-y1)*D2R*RADIUS; - else if(y1 == y2) - dist = fabs(x2-x1)*D2R*RADIUS*cos(f_plane_latitude*D2R); - else - mpp_error("create_lonlat_grid: This is not rectangular grid"); - - return dist; -} - - -/* rectangular grid box area for cartesian grid */ -double cartesian_box_area(double x1, double y1, double x2, double y2, double f_plane_latitude) -{ - double area=0; - double dx, dy; - dx = x2-x1; - dx = dx * D2R; - - dy = y2-y1; - dy = dy * D2R; - area = dx*dy*cos(f_plane_latitude*D2R)*RADIUS*RADIUS; - - return area; -} - diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.cshrc b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.cshrc deleted file mode 100644 index 4dcbd0dd70..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.cshrc +++ /dev/null @@ -1,7 +0,0 @@ -module load fre/bronx-10 -module load intel_compilers/11.1.073 mpich2/1.2.1p1 -setenv SITE pan - -alias make make HDF5_HOME=/usr/local/hdf5-1.8.8_optimized NETCDF_HOME=/usr/local/netcdf-4.2_optimized -f fre-nctools.mk - - diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gaea b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gaea deleted file mode 100644 index 42e7137c52..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gaea +++ /dev/null @@ -1,4 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := cc -CC := cc -STATIC := -static diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gfdl-ws b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gfdl-ws deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.gfdl-ws +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.jet b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.jet deleted file mode 100644 index 28bf431ee5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.jet +++ /dev/null @@ -1,7 +0,0 @@ -CLIBS_SITE := -CFLAGS_SITE := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc -NETCDF_HOME = $(NETCDF_DIR) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.pan b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.pan deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.pan +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.theia b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.theia deleted file mode 100644 index 6c090e2e25..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.theia +++ /dev/null @@ -1,4 +0,0 @@ -# theia -MPICC := mpiicc -CC := icc -STATIC := diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss deleted file mode 100644 index e6f023dfb7..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss +++ /dev/null @@ -1,3 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := mpiicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss_cray b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss_cray deleted file mode 100644 index 42e7137c52..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.wcoss_cray +++ /dev/null @@ -1,4 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := cc -CC := cc -STATIC := -static diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.zeus b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.zeus deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/env.zeus +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_theia b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_theia deleted file mode 100644 index 2624c2e6ec..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_theia +++ /dev/null @@ -1,98 +0,0 @@ -# -# $Id: fre-nctools.mk,v 20.0 2013/12/14 00:33:28 fms Exp $ -# ------------------------------------------------------------------------------ -# FMS/FRE Project: Makefile to Build Regridding Executables -# ------------------------------------------------------------------------------ -# afy Ver 1.00 Initial version (Makefile, ver 17.0.4.2) June 10 -# afy Ver 1.01 Add rules to build MPI-based executable June 10 -# afy Ver 1.02 Simplified according to fre-nctools standards June 10 -# ------------------------------------------------------------------------------ -# Copyright (C) NOAA Geophysical Fluid Dynamics Laboratory, 2009-2011 -# This program is distributed under the terms of the GNU General Public -# License. See the file COPYING contained in this directory -# -# Designed and written by V. Balaji, Amy Langenhorst and Aleksey Yakovlev -# -include env.$(SITE) - -#MPICC := mpicc -#CC := icc -CFLAGS := -O3 -CFLAGS_O2:= -O2 -INCLUDES := -I${NETCDF_HOME}/include -I./ -I../shared -I../../shared/mosaic -CLIBS := -L${NETCDF_HOME}/lib -L${HDF5_HOME}/lib -lnetcdf -lhdf5_hl -lhdf5 -limf $(CLIBS2) $(STATIC) - -TARGETS := make_hgrid make_hgrid_parallel - -SOURCES := make_hgrid.c create_conformal_cubic_grid.c create_gnomonic_cubic_grid.c create_grid_from_file.c create_lonlat_grid.c -SOURCES += mpp_domain.c mpp_io.c tool_util.c -SOURCES += read_mosaic.c create_xgrid.c interp.c - -OBJECTS := $(SOURCES:c=o) - -HEADERS = fre-nctools.mk ../shared/mpp.h ../shared/mpp_domain.h ../shared/mpp_io.h ../shared/tool_util.h \ - ../../shared/mosaic/constant.h ../../shared/mosaic/create_xgrid.h \ - ../../shared/mosaic/interp.h ../../shared/mosaic/mosaic_util.h \ - ../../shared/mosaic/read_mosaic.h ./create_hgrid.h - -all: $(TARGETS) - -make_hgrid: $(OBJECTS) mosaic_util.o mpp.o - $(CC) -o $@ $^ $(CLIBS) - -make_hgrid_parallel: $(OBJECTS) mosaic_util_parallel.o mpp_parallel.o - $(MPICC) -o $@ $^ $(CLIBS) - -make_hgrid.o: make_hgrid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_gnomonic_cubic_grid.o: create_gnomonic_cubic_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_conformal_cubic_grid.o: create_conformal_cubic_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_lonlat_grid.o: create_lonlat_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_grid_from_file.o: create_grid_from_file.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util_parallel.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(MPICC) -Duse_libMPI $(CFLAGS) $(INCLUDES) -o $@ -c $< - -read_mosaic.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -read_mosaic_parallel.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(MPICC) -Duse_libMPI -Duse_netCDF $(CFLAGS) $(INCLUDES) -o $@ -c $< - -interp.o: ../../shared/mosaic/interp.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -mpp_io.o: ../shared/mpp_io.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_domain.o: ../shared/mpp_domain.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp.o: ../shared/mpp.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_parallel.o: ../shared/mpp.c $(HEADERS) - $(MPICC) -Duse_libMPI $(CFLAGS) $(INCLUDES) -o $@ -c $< - -tool_util.o: ../shared/tool_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -create_xgrid.o: ../../shared/mosaic/create_xgrid.c $(HEADERS) - $(CC) $(CFLAGS_O2) $(INCLUDES) -c $< - -%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -clean: - -rm -f *.o $(TARGETS) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_wcoss_cray b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_wcoss_cray deleted file mode 100644 index 3274f74bfe..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/fre-nctools.mk_wcoss_cray +++ /dev/null @@ -1,98 +0,0 @@ -# -# $Id: fre-nctools.mk,v 20.0 2013/12/14 00:33:28 fms Exp $ -# ------------------------------------------------------------------------------ -# FMS/FRE Project: Makefile to Build Regridding Executables -# ------------------------------------------------------------------------------ -# afy Ver 1.00 Initial version (Makefile, ver 17.0.4.2) June 10 -# afy Ver 1.01 Add rules to build MPI-based executable June 10 -# afy Ver 1.02 Simplified according to fre-nctools standards June 10 -# ------------------------------------------------------------------------------ -# Copyright (C) NOAA Geophysical Fluid Dynamics Laboratory, 2009-2011 -# This program is distributed under the terms of the GNU General Public -# License. See the file COPYING contained in this directory -# -# Designed and written by V. Balaji, Amy Langenhorst and Aleksey Yakovlev -# -include env.$(SITE) - -#MPICC := mpicc -#CC := icc -CFLAGS := -O3 -traceback -CFLAGS_O2:= -O2 -traceback -INCLUDES := -I${NETCDF_HOME}/include -I./ -I../shared -I../../shared/mosaic -CLIBS := -L${NETCDF_HOME}/lib -L${HDF5_HOME}/lib -lnetcdf -lhdf5_hl -lhdf5 -lz -limf $(CLIBS2) $(STATIC) - -TARGETS := make_hgrid make_hgrid_parallel - -SOURCES := make_hgrid.c create_conformal_cubic_grid.c create_gnomonic_cubic_grid.c create_grid_from_file.c create_lonlat_grid.c -SOURCES += mpp_domain.c mpp_io.c tool_util.c -SOURCES += read_mosaic.c create_xgrid.c interp.c - -OBJECTS := $(SOURCES:c=o) - -HEADERS = fre-nctools.mk ../shared/mpp.h ../shared/mpp_domain.h ../shared/mpp_io.h ../shared/tool_util.h \ - ../../shared/mosaic/constant.h ../../shared/mosaic/create_xgrid.h \ - ../../shared/mosaic/interp.h ../../shared/mosaic/mosaic_util.h \ - ../../shared/mosaic/read_mosaic.h ./create_hgrid.h - -all: $(TARGETS) - -make_hgrid: $(OBJECTS) mosaic_util.o mpp.o - $(CC) -o $@ $^ $(CLIBS) - -make_hgrid_parallel: $(OBJECTS) mosaic_util_parallel.o mpp_parallel.o - $(MPICC) -o $@ $^ $(CLIBS) - -make_hgrid.o: make_hgrid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_gnomonic_cubic_grid.o: create_gnomonic_cubic_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_conformal_cubic_grid.o: create_conformal_cubic_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_lonlat_grid.o: create_lonlat_grid.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -create_grid_from_file.o: create_grid_from_file.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util_parallel.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(MPICC) -Duse_libMPI $(CFLAGS) $(INCLUDES) -o $@ -c $< - -read_mosaic.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -read_mosaic_parallel.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(MPICC) -Duse_libMPI -Duse_netCDF $(CFLAGS) $(INCLUDES) -o $@ -c $< - -interp.o: ../../shared/mosaic/interp.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -mpp_io.o: ../shared/mpp_io.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_domain.o: ../shared/mpp_domain.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp.o: ../shared/mpp.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_parallel.o: ../shared/mpp.c $(HEADERS) - $(MPICC) -Duse_libMPI $(CFLAGS) $(INCLUDES) -o $@ -c $< - -tool_util.o: ../shared/tool_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -create_xgrid.o: ../../shared/mosaic/create_xgrid.c $(HEADERS) - $(CC) $(CFLAGS_O2) $(INCLUDES) -c $< - -%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -clean: - -rm -f *.o $(TARGETS) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/make_hgrid.c b/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/make_hgrid.c deleted file mode 100644 index ccce0aec93..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_hgrid/make_hgrid.c +++ /dev/null @@ -1,1075 +0,0 @@ -/* - Copyright 2011 NOAA Geophysical Fluid Dynamics Lab, Princeton, NJ - This program is distributed under the terms of the GNU General Public - License. See the file COPYING contained in this directory - - This program generates various types of horizontal grids in netCDF file format - - AUTHOR: Zhi Liang (Zhi.Liang@noaa.gov) - NOAA Geophysical Fluid Dynamics Lab, Princeton, NJ -*/ -#include -#include -#include -#include -#include -#include "create_hgrid.h" -#include "mpp.h" -#include "mpp_domain.h" -#include "mpp_io.h" -#include "tool_util.h" -#include "mosaic_util.h" - -const int MAXBOUNDS = 100; -const int STRINGLEN = 255; -#define REGULAR_LONLAT_GRID 1 -#define TRIPOLAR_GRID 2 -#define FROM_FILE 3 -#define SIMPLE_CARTESIAN_GRID 4 -#define SPECTRAL_GRID 5 -#define CONFORMAL_CUBIC_GRID 6 -#define GNOMONIC_ED 7 -#define F_PLANE_GRID 8 -#define BETA_PLANE_GRID 9 -#define MISSING_VALUE (-9999.) -int my_grid_type = 0; - -char *usage[] = { - "", - " ", - " ", - " Usage of make_hgrid ", - " ", - " make_hgrid --grid_type grid_type --my_grid_file my_grid_file ", - " --nxbnds nxbnds --nybnds nybnds ", - " --xbnds x(1),...,x(nxbnds) --ybnds y(1),...,y(nybnds) ", - " --nlon nlon(1),...nlon(nxbnds-1) ", - " --nlat nlat(1),...nlat(nybnds-1) ", - " --dlon dlon(1),...dlon(nxbnds) ", - " --dlat dlat(1),...dlat(nybnds) ", - " --lat_join lat_join --num_lon num_lon --nratio nratio ", - " --simple_dx simple_dx --simple_dy simple_dy ", - " --grid_name gridname --center center --verbose --shift_fac # ", - " --do_schmidt --stretch_fac # --target_lon # --target_lat # ", - " --nest_grid --parent_tile # --refine_ratio # --halo # ", - " --istart_nest # --iend_nest # --jstart_nest # --jend_nest # ", - " --great_circle_algorithm --out_halo # ", - " ", - " This program can generate different types of horizontal grid. The ", - " output data is on supergrid ( model grid size x refinement(=2) ). For ", - " 'cubic_grid', six grid files which contain the grid information for ", - " each tile will be generate, otherwise one file will be generated you ", - " can specify the grid type through --grid_type. The value of grid_type ", - " can be 'from_file', 'spectral_grid', 'spherical_grid', ", - " 'conformal_cubic_grid', 'gnomonic_ed' or 'simple_cartesian_grid', with ", - " default value 'spherical_grid'. --nlon and --nlat must be specified to ", - " indicate supergrid size ( for cubic_grid, --nlat is not needed because ", - " nlat has the same value as nlon. Besides --nlon, --nlat, other ", - " optional and requirement arguments for each type are, ", - " ", - " Two algorithms are provided for creating 'tripolar_grid' and ", - " 'regular_lonlat_grid'. Monotonic cubic interpolation and legacy ", - " algorithm using cosine function to configure grid cell location. The ", - " monotonic cubic interpolation is developed by Russell Fiedler and the ", - " detail of the alrogithm is explained in ", - " http://www.mathworks.com/moler/interp.pdf. More details of the ", - " algorithm is available in ", - " ", - " F. N. Fritsch and R. E. Carlson, Monotone Piecewise Cubic ", - " Interpolation, SIAM Journal on Numerical Analysis, 17 (1980), ", - " pp. 238-246. ", - " ", - " D. Kahaner, C. Moler, and S. Nash, Numerical Methods and Software, ", - " Prentice Hall, Englewood Cliffs, NJ, 1989. ", - " ", - " --nlon --nlat need to be specified to use the monotonic cubic ", - " algorithm. The legacy algorithm was developed by Ron Pacanowski. This ", - " algorithm uses a cosine function to do the interpolation. ", - " ", - " --dlon and --dlat need to be specified to use the legacy ", - " algorithm. Monotonic cubic interpolation is a higher order ", - " interpolation and will produce smoother grid distance. It is strongly ", - " suggested to use the monotonic cubic interpolation by specifying ", - " argument --nlon and --nlat. ", - " ", - " 1. 'from_file': --my_grid_file must be specified. The grid ", - " specified in my_grid_file should be super grid ", - " vertex. ", - " 2. 'spectral_grid': no other optional or required arguments. ", - " 3. 'regular_lonlat_grid': --nxbnds, --nybnds --xbnds, --ybnds, must be ", - " specified to define the grid bounds. ", - " 4. 'tripolar_grid': --nxbnds, --nybnds, --xbnds, --ybnds, must be ", - " specified to define the grid bounds. --lat_join ", - " is optional with default value 65. ", - " 5 'conformal_cubic_grid': --nratio is optional argument. ", - " 6 'gnomonic_ed' : equal distance gnomonic cubic grid. ", - " 7. 'simple_cartesian_grid': --xbnds, --ybnds must be specified to define ", - " the grid bounds location and grid size. number ", - " of bounds must be 2 in both and x and ", - " y-direction. --simple_dx and --simple_dy must be ", - " specified to specify uniform cell length. ", - " 8 'f_plane_grid': For setting geometric fractors according ", - " to f-plane. f_plane_latitude need to be specified", - " 9 'beta_plane_grid': For setting geometric fractors according ", - " to beta plane. f_plane_latitude need to be ", - " specified ", - " ", - " make_hgrid take the following flags ", - " ", - " --grid_type grid_type specify type of topography. See above for ", - " grid type option. " - " ", - " --my_grid_file file when this flag is present, the program will read ", - " grid information from 'my_grid_file'. The file ", - " format can be ascii file or netcdf file. Multiple ", - " file entry are allowed but the number should be ", - " less than MAXBOUNDS. ", - " ", - " --nxbnds nxbnds Specify number of zonal regions for varying ", - " resolution. ", - " ", - " --nybnds nybnds Specify number of meridinal regions for varying ", - " resolution. ", - " ", - " --xbnds x(1),.,x(nxbnds) Specify boundaries for defining zonal regions of ", - " varying resolution. When --tripolar is present, ", - " x also defines the longitude of the two new poles. ", - " nxbnds must be 2 and lon_start = x(1), ", - " lon_end = x(nxbnds) are longitude of the two ", - " new poles. ", - " ", - " --ybnds y(1),.,y(nybnds) Specify boundaries for defining meridional ", - " regions of varying resolution ", - " ", - " --nlon nlon(1),..,nlon(nxbnds-1) Number of model grid points(supergrid) for ", - " each zonal regions of varying resolution. ", - " ", - " --nlat nlat(1),..,nlat(nybnds-1) Number of model grid points(supergid) for ", - " each meridinal regions of varying resolution.", - " ", - " --dlon dlon(1),..,dlon(nxbnds) nominal resolution of zonal regions ", - " ", - " --dlat dlat(1),..,dlat(nybnds) nominal resolution of meridional regions ", - " ", - " --lat_join lat_join Specify latitude for joining spherical and rotated ", - " bipolar grid. Default value is 65 degree. ", - " ", - " --nratio nratio Speicify the refinement ratio when calculating ", - " cell length and area of supergrid. ", - " ", - " --simple_dx dimple_dx Specify the uniform cell length in x-direction for ", - " simple cartesian grid. ", - " ", - " --simple_dy dimple_dy Specify the uniform cell length in y-direction for ", - " simple cartesian grid. ", - " ", - " --grid_name grid_name Specify the grid name. The output grid file name ", - " will be grid_name.nc if there is one tile and ", - " grid_name.tile#.nc if there is more than one tile. ", - " The default value will be horizontal_grid. ", - " ", - " --center center Specify the center location of grid. The valid ", - " entry will be 'none', 't_cell' or 'c_cell' with ", - " default value 'none'. The grid refinement is ", - " assumed to be 2 in x and y-direction when center ", - " is not 'none'. 'c_cell' should be used for the grid", - " used in MOM. ", - " ", - " --shift_fac shift west by 180/shift_fac. Default value is 18. ", - " ", - " --do_schmidt Set to do Schmidt transformation to create ", - " stretched grid. When do_schmidt is set, the ", - " following must be set: --stretch_factor, ", - " --target_lon and --target_lat. ", - " ", - " --stretch_factor # Stretching factor for the grid ", - " ", - " --target_lon # center longitude of the highest resolution tile ", - " ", - " --target_lat # center latitude of the highest resolution tile ", - " ", - " --nest_grid set to create nest grid as well as the global grid.", - " This option could only be set when grid_type is ", - " 'gnomonic_ed'. When it is set, besides 6 tile grid ", - " files created, there is one more nest grid with ", - " file name = $grid_name.tile${parent_tile}.nest.nc ", - " ", - " --parent_tile # Specify the parent tile number of nest grid. ", - " ", - " --refine_ratio # Specify the refinement ratio for nest grid. ", - " ", - " --istart_nest # Specify the starting i-direction index of nest ", - " grid in parent tile supergrid(Fortran index). ", - " ", - " --iend_nest # Specify the ending i-direction index of nest ", - " grid in parent tile supergrid(Fortran index). ", - " ", - " --jstart_nest # Specify the starting j-direction index of nest ", - " grid in parent tile supergrid(Fortran index). ", - " ", - " --jend_nest # Specify the ending j-direction index of nest ", - " grid in parent tile supergrid(Fortran index). ", - " ", - " --halo # halo size to used in the atmosphere cubic sphere ", - " model. It only needs to be specified when ", - " --nest_grid is set. ", - " ", - " --great_circle_algorithm When specified, great_circle_algorithm will be ", - " used to compute grid cell area. ", - " ", - " --out_halo # extra halo size data to be written out. This is ", - " only works for gnomonic_ed. ", - " ", - " --verbose Will print out running time message when this ", - " option is set. Otherwise the run will be silent ", - " when there is no error. ", - " ", - " Example ", - " ", - " ", - " 1. generating regular lon-lat grid (supergrid size 60x20) ", - " > make_hgrid --grid_type regular_lonlat_grid --nxbnd 2 --nybnd 2 ", - " --xbnd 0,30 --ybnd 50,60 --nlon 60 --nlat 20 ", - " ", - " 2. generating tripolar grid with various grid resolution and C-cell centered ", - " using monotonic bi-cub spline interpolation. ", - " > make_hgrid --grid_type tripolar_grid --nxbnd 2 --nybnd 7 --xbnd -280,80 ", - " --ybnd -82,-30,-10,0,10,30,90 --nlon 720 ", - " --nlat 104,48,40,40,48,120 --grid_name om3_grid ", - " --center c_cell ", - " ", - " 3. generating tripolar grid with various grid resolution and C-cell centered ", - " using legacy algorithm (create GFDL CM2/ocean-like grid) ", - " > make_hgrid --grid_type tripolar_grid --nxbnd 2 --nybnd 7 --xbnd -280,80 ", - " --ybnd -82,-30,-10,0,10,30,90 --dlon 1.0,1.0 ", - " --dlat 1.0,1.0,0.6666667,0.3333333,0.6666667,1.0,1.0 ", - " --grid_name om3_grid --center c_cell ", - " ", - " 4. generating simple cartesian grid(supergrid size 20x20) ", - " > make_hgrid --grid_type simple_cartesian_grid --xbnd 0,30 --ybnd 50,60 ", - " --nlon 20 --nlat 20 --simple_dx 1000 --simple_dy 1000 ", - " ", - " 5. generating conformal cubic grid. (supergrid size 60x60 for each tile) ", - " > make_hgrid --grid_type conformal_cubic_grid --nlon 60 --nratio 2 ", - " ", - " 6. generating gnomonic cubic grid with equal_dist_face_edge(C48 grid) ", - " > make_hgrid --grid_type gnomonic_ed --nlon 96 ", - " ", - " 7. generating gnomonic cubic streched grid. ", - " > make_hgrid --grid_type gnomonic_ed --nlon 180 --do_schmidt ", - " --stretch_factor 3 --target_lat 40. --target_lon 20. ", - " ", - " 8. generating spectral grid. (supergrid size 128x64) ", - " > make_hgrid --grid_type spectral_grid --nlon 128 --nlat 64 ", - " ", - " 9. Through user-defined grids ", - " > make_hgrid --grid_type from_file --my_grid_file my_grid_file ", - " --nlon 4 --nlat 4 ", - " ", - " contents of sample my_grid_file ", - " The first line of my_grid_file will be text ( will be ignored) ", - " followed by nlon+1 lines of real value of x-direction supergrid bound ", - " location. Then another line of text ( will be ignored), followed by ", - " nlat+1 lines of real value of y-direction supergrid bound location. ", - " ", - " For example: ", - " ", - " x-grid ", - " 0.0 ", - " 5.0 ", - " 10.0 ", - " 15.0 ", - " 20.0 ", - " y-grid ", - " -10 ", - " 10 ", - " 20 ", - " 30 ", - " 40 ", - " ", - " 10. generating f_plane_grids ", - " > make_hgrid --grid_type f_plane_grid --f_plane_latitude 55 --nxbnd 2 ", - " --nybnd 2 --xbnd 0,30 --ybnd 50,60 --nlon 60 --nlat 20 ", - " ", - " A note on generating cyclic regular lon-lat grids when center = 'c_cell':- ", - " It is possible to have an improperly centered boundary unless care is taken to ", - " ensure local symmetry at the join. ", - " A correctly formed grid is only guaranteed if the first three values of the ", - " --xbnd argument mirror the last 3 and the first two 'nlon' arguments mirror the ", - " last 2. ", - " ", - " For example for a global grid make_hgrid should be invoked as ", - " > make_hgrid --grid_type regular_lonlat_grid ... ", - " --xbnd 0,X1,X2,...,360-X2,360-X1,360 ", - " --nlon N1,N2,...,N2,N1 --center c_cell ", - " ", - " As an example ", - " ", - " > make_hgrid --grid_type regular_lonlat_grid --nxbnd 7 --nybnd 2 ", - " --xbnd 0,15,30,300,330,345,360 --ybnd 50,60 ", - " --nlon 4,2,6,4,2,4 --nlat 2 --center c_cell ", - " ", - " ", - " results in a valid cyclic grid whereas (note the second last value of nlon) ", - " ", - " > make_hgrid --grid_type regular_lonlat_grid --nxbnd 7 --nybnd 2 ", - " --xbnd 0,15,30,300,330,345,360 --ybnd 50,60 ", - " --nlon 4,2,6,4,4,4 --nlat 2 --center c_cell ", - " ", - " ", - " is not properly centered across 0,360 ", - " ", - " An informational message is issued if the leftmost and rightmost resolutions ", - " differ by more than 1 part in 10E6 ", - " ", - "", - NULL }; - -char grid_version[] = "0.2"; -char tagname[] = "$Name: fre-nctools-bronx-10 $"; - - -void fill_cubic_grid_halo(int nx, int ny, int halo, double *data, double *data1_all, - double *data2_all, int tile, int ioff, int joff) -{ - int lw, le, ls, ln; - int ntiles,nxp,nyp,nxph,nyph,i,j; - - - nxp = nx+ioff; - nyp = ny+joff; - nxph = nx+ioff+2*halo; - nyph = ny+joff+2*halo; - - for(i=0; i 1) mpp_error( "make_hgrid: make_hgrid must be run one processor, contact developer"); - - /* - * process command line - */ - errflg = argc <3; - - while ((c = getopt_long(argc, argv, "", long_options, &option_index)) != -1) { - switch (c) { - case 'a': - strcpy(grid_type, optarg); - break; - case 'b': - strcpy(entry, optarg); - tokenize(entry, ",", STRINGLEN, MAXBOUNDS, (char *)my_grid_file, &ntiles_file); - break; - case 'c': - nxbnds0 = atoi(optarg); - break; - case 'd': - nybnds0 = atoi(optarg); - break; - case 'e': - strcpy(entry, optarg); - nxbnds1 = get_double_entry(entry, xbnds); - break; - case 'f': - strcpy(entry, optarg); - nybnds1 = get_double_entry(entry, ybnds); - break; - case 'g': - strcpy(entry, optarg); - nxbnds2 = get_int_entry(entry, nlon); - break; - case 'i': - strcpy(entry, optarg); - nybnds2 = get_int_entry(entry, nlat); - break; - case 'j': - lat_join = atof(optarg); - break; - case 'k': - nratio = atoi(optarg); - break; - case 'l': - simple_dx = atof(optarg); - break; - case 'm': - simple_dy = atof(optarg); - break; - case 'q': - strcpy(gridname, optarg); - break; - case 'r': - strcpy(center, optarg); - break; - case 's': - strcpy(entry, optarg); - nxbnds3 = get_double_entry(entry, dx_bnds); - break; - case 't': - strcpy(entry, optarg); - nybnds3 = get_double_entry(entry, dy_bnds); - break; - case 'u': - f_plane_latitude = atof(optarg); - break; - case 'w': - do_schmidt = 1; - break; - case 'x': - present_stretch_factor = 1; - stretch_factor = atof(optarg); - break; - case 'y': - present_target_lon = 1; - target_lon = atof(optarg); - break; - case 'z': - present_target_lat = 1; - target_lat = atof(optarg); - break; - case 'A': - nest_grid = 1; - break; - case 'B': - refine_ratio = atoi(optarg); - break; - case 'C': - parent_tile = atoi(optarg); - break; - case 'D': - istart_nest = atoi(optarg); - break; - case 'E': - iend_nest = atoi(optarg); - break; - case 'F': - jstart_nest = atoi(optarg); - break; - case 'G': - jend_nest = atoi(optarg); - break; - case 'H': - halo = atoi(optarg); - break; - case 'I': - shift_fac = atof(optarg); - break; - case 'J': - use_great_circle_algorithm = 1; - break; - case 'K': - out_halo = atoi(optarg); - break; - case 'v': - verbose = 1; - break; - case 'h': - errflg++; - break; - case '?': - errflg++; - } - } - - if (errflg ) { - char **u = usage; - while (*u) { fprintf(stderr, "%s\n", *u); u++; } - exit(2); - } - - /* define history to be the history in the grid file */ - strcpy(history,argv[0]); - - for(i=1;iNOTE: the grid type is %s\n",grid_type); - - if(strcmp(grid_type,"regular_lonlat_grid") ==0 ) - my_grid_type = REGULAR_LONLAT_GRID; - else if(strcmp(grid_type,"tripolar_grid") ==0 ) - my_grid_type = TRIPOLAR_GRID; - else if(strcmp(grid_type,"from_file")==0 ) - my_grid_type = FROM_FILE; - else if(strcmp(grid_type, "simple_cartesian_grid")==0) - my_grid_type = SIMPLE_CARTESIAN_GRID; - else if(strcmp(grid_type, "spectral_grid") ==0 ) - my_grid_type = SPECTRAL_GRID; - else if(strcmp(grid_type, "conformal_cubic_grid") ==0 ) - my_grid_type = CONFORMAL_CUBIC_GRID; - else if(strcmp(grid_type, "gnomonic_ed") ==0 ) - my_grid_type = GNOMONIC_ED; - else if(strcmp(grid_type, "f_plane_grid") == 0 ) - my_grid_type = F_PLANE_GRID; - else if(strcmp(grid_type, "beta_plane_grid") == 0 ) - my_grid_type = BETA_PLANE_GRID; - else - mpp_error("make_hgrid: only grid_type = 'regular_lonlat_grid', 'tripolar_grid', 'from_file', " - "'gnomonic_ed', 'conformal_cubic_grid', 'simple_cartesian_grid', " - "'spectral_grid', 'f_plane_grid' and 'beta_plane_grid' is implemented"); - - if(my_grid_type != GNOMONIC_ED && out_halo != 0) - mpp_error("make_hgrid: out_halo should not be set when grid_type = gnomonic_ed"); - if(out_halo !=0 && out_halo != 1) - mpp_error("make_hgrid: out_halo should be 0 or 1"); - - if( my_grid_type != GNOMONIC_ED && do_schmidt ) - mpp_error("make_hgrid: --do_schmidt should not be set when grid_type is not 'gnomonic_ed'"); - - use_legacy = 0; - /* check the command-line arguments to make sure the value are suitable */ - if( my_grid_type == REGULAR_LONLAT_GRID || my_grid_type == TRIPOLAR_GRID || - my_grid_type == F_PLANE_GRID || my_grid_type == BETA_PLANE_GRID ) { - int num_specify; - nxbnds = nxbnds0; nybnds = nybnds0; - if( nxbnds <2 || nybnds < 2) mpp_error("make_hgrid: grid type is 'regular_lonlat_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "both nxbnds and nybnds should be no less than 2"); - if( nxbnds != nxbnds1 ) mpp_error("make_hgrid: grid type is 'regular_lonlat_grid, 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nxbnds does not match number of entry in xbnds"); - if( nybnds != nybnds1 ) mpp_error("make_hgrid: grid type is 'regular_lonlat_grid, 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nybnds does not match number of entry in ybnds"); - num_specify = 0; - if( nxbnds2 > 0 && nybnds2 > 0 ) num_specify ++; - if( nxbnds3 > 0 && nybnds3 > 0 ) { - num_specify ++; - use_legacy = 1; - } - - if( num_specify == 0 ) mpp_error("make_hgrid: grid type is 'regular_lonlat_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "need to specify one of the pair --nlon --nlat or --dlon --dlat"); - if( num_specify == 2 ) mpp_error("make_hgrid: grid type is 'regular_lonlat_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "can not specify both --nlon --nlat and --dlon --dlat"); - if( use_legacy ) { - if( nxbnds != nxbnds3 ) mpp_error("make_hgrid: grid type is 'tripolar_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nxbnds does not match number of entry in dlon"); - if( nybnds != nybnds3 ) mpp_error("make_hgrid: grid type is 'tripolar_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nybnds does not match number of entry in dlat"); - } - else { - if( nxbnds != nxbnds2+1 ) mpp_error("make_hgrid: grid type is 'tripolar_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nxbnds does not match number of entry in nlon"); - if( nybnds != nybnds2+1 ) mpp_error("make_hgrid: grid type is 'tripolar_grid', 'tripolar_grid', 'f_plane_grid' or 'beta_plane_grid', " - "nybnds does not match number of entry in nlat"); - } - } - - - if( my_grid_type == CONFORMAL_CUBIC_GRID || my_grid_type == GNOMONIC_ED ) { - ntiles = 6; - ntiles_global = 6; - } - - if( my_grid_type != GNOMONIC_ED && nest_grid ) - mpp_error("make_hgrid: --nest_grid can be set only when grid_type = 'gnomonic_ed'"); - - if( my_grid_type == TRIPOLAR_GRID ) { - strcpy(projection, "tripolar"); - if( nxbnds != 2) mpp_error("make_hgrid: grid type is 'tripolar_grid', nxbnds should be 2"); - } - else if( my_grid_type == FROM_FILE ) { - /* For ascii file, nlon and nlat should be specified through --nlon, --nlat - For netcdf file, grid resolution will be read from grid file - */ - - if(ntiles_file == 0) mpp_error("make_hgrid: grid_type is 'from_file', but my_grid_file is not specified"); - ntiles = ntiles_file; - for(n=0; n 90 || f_plane_latitude < -90.) - mpp_error("make_hgrid: f_plane_latitude should be between -90 and 90."); - if(f_plane_latitude > ybnds[nybnds-1] || f_plane_latitude < ybnds[0] ) { - if(mpp_pe() == mpp_root_pe()) - printf("Warning from make_hgrid: f_plane_latitude is not inside the latitude range of the grid\n"); - } - if(mpp_pe() == mpp_root_pe()) - printf("make_hgrid: setting geometric factor according to f-plane with f_plane_latitude = %g\n", f_plane_latitude ); - } - - nxl = (int *)malloc(ntiles*sizeof(int)); - nyl = (int *)malloc(ntiles*sizeof(int)); - - /* get super grid size */ - if(use_legacy) { - nxl[0] = get_legacy_grid_size(nxbnds, xbnds, dx_bnds); - nyl[0] = get_legacy_grid_size(nybnds, ybnds, dy_bnds); - } - else { - if( my_grid_type == GNOMONIC_ED || my_grid_type == CONFORMAL_CUBIC_GRID ) { - for(n=0; n ntiles_global) { - nxl[ntiles_global] = (iend_nest-istart_nest+1)*refine_ratio; - nyl[ntiles_global] = (jend_nest-jstart_nest+1)*refine_ratio; - } - } - else { - nxl[0] = 0; - nyl[0] = 0; - for(n=0; n1) - sprintf(outfile, "%s.tile%d.nc", gridname, n+1); - else - sprintf(outfile, "%s.nc", gridname); - fid = mpp_open(outfile, MPP_WRITE); - /* define dimenison */ - nx = nxl[n]; - ny = nyl[n]; - nxp = nx+1; - nyp = ny+1; - dimlist[0] = mpp_def_dim(fid, "string", STRINGLEN); - dimlist[1] = mpp_def_dim(fid, "nx", nx+2*out_halo); - dimlist[2] = mpp_def_dim(fid, "ny", ny+2*out_halo); - dimlist[3] = mpp_def_dim(fid, "nxp", nxp+2*out_halo); - dimlist[4] = mpp_def_dim(fid, "nyp", nyp+2*out_halo); - /* define variable */ - if( strcmp(north_pole_tile, "none") == 0) /* no north pole, then no projection */ - id_tile = mpp_def_var(fid, "tile", MPP_CHAR, 1, dimlist, 4, "standard_name", "grid_tile_spec", - "geometry", geometry, "discretization", discretization, "conformal", conformal ); - else if( strcmp(projection, "none") == 0) - id_tile = mpp_def_var(fid, "tile", MPP_CHAR, 1, dimlist, 5, "standard_name", "grid_tile_spec", - "geometry", geometry, "north_pole", north_pole_tile, "discretization", - discretization, "conformal", conformal ); - else - id_tile = mpp_def_var(fid, "tile", MPP_CHAR, 1, dimlist, 6, "standard_name", "grid_tile_spec", - "geometry", geometry, "north_pole", north_pole_tile, "projection", projection, - "discretization", discretization, "conformal", conformal ); - - dims[0] = dimlist[4]; dims[1] = dimlist[3]; - id_x = mpp_def_var(fid, "x", MPP_DOUBLE, 2, dims, 2, "standard_name", "geographic_longitude", - "units", "degree_east"); - if(out_halo>0) mpp_def_var_att_double(fid, id_x, "_FillValue", MISSING_VALUE); - id_y = mpp_def_var(fid, "y", MPP_DOUBLE, 2, dims, 2, "standard_name", "geographic_latitude", - "units", "degree_north"); - if(out_halo>0) mpp_def_var_att_double(fid, id_y, "_FillValue", MISSING_VALUE); - dims[0] = dimlist[4]; dims[1] = dimlist[1]; - id_dx = mpp_def_var(fid, "dx", MPP_DOUBLE, 2, dims, 2, "standard_name", "grid_edge_x_distance", - "units", "meters"); - if(out_halo>0) mpp_def_var_att_double(fid, id_dx, "_FillValue", MISSING_VALUE); - dims[0] = dimlist[2]; dims[1] = dimlist[3]; - id_dy = mpp_def_var(fid, "dy", MPP_DOUBLE, 2, dims, 2, "standard_name", "grid_edge_y_distance", - "units", "meters"); - if(out_halo>0) mpp_def_var_att_double(fid, id_dy, "_FillValue", MISSING_VALUE); - dims[0] = dimlist[2]; dims[1] = dimlist[1]; - id_area = mpp_def_var(fid, "area", MPP_DOUBLE, 2, dims, 2, "standard_name", "grid_cell_area", - "units", "m2" ); - if(out_halo>0) mpp_def_var_att_double(fid, id_area, "_FillValue", MISSING_VALUE); - dims[0] = dimlist[4]; dims[1] = dimlist[3]; - id_angle_dx = mpp_def_var(fid, "angle_dx", MPP_DOUBLE, 2, dims, 2, "standard_name", - "grid_vertex_x_angle_WRT_geographic_east", "units", "degrees_east"); - if(out_halo>0) mpp_def_var_att_double(fid, id_angle_dx, "_FillValue", MISSING_VALUE); - if(strcmp(conformal, "true") != 0) { - id_angle_dy = mpp_def_var(fid, "angle_dy", MPP_DOUBLE, 2, dims, 2, "standard_name", - "grid_vertex_y_angle_WRT_geographic_north", "units", "degrees_north"); - if(out_halo>0) mpp_def_var_att_double(fid, id_angle_dy, "_FillValue", MISSING_VALUE); - } - if( strcmp(north_pole_arcx, "none") == 0) - id_arcx = mpp_def_var(fid, "arcx", MPP_CHAR, 1, dimlist, 1, "standard_name", "grid_edge_x_arc_type" ); - else - id_arcx = mpp_def_var(fid, "arcx", MPP_CHAR, 1, dimlist, 2, "standard_name", "grid_edge_x_arc_type", - "north_pole", north_pole_arcx ); - mpp_def_global_att(fid, "grid_version", grid_version); - mpp_def_global_att(fid, "code_version", tagname); - if(use_great_circle_algorithm) mpp_def_global_att(fid, "great_circle_algorithm", "TRUE"); - if(n>=ntiles_global) mpp_def_global_att(fid, "nest_grid", "TRUE"); - mpp_def_global_att(fid, "history", history); - - mpp_end_def(fid); - for(m=0; m<4; m++) { start[m] = 0; nwrite[m] = 0; } - nwrite[0] = strlen(tilename); - mpp_put_var_value_block(fid, id_tile, start, nwrite, tilename ); - - if(out_halo ==0) { - mpp_put_var_value(fid, id_x, x+pos_c); - mpp_put_var_value(fid, id_y, y+pos_c); - mpp_put_var_value(fid, id_dx, dx+pos_n); - mpp_put_var_value(fid, id_dy, dy+pos_e); - mpp_put_var_value(fid, id_area, area+pos_t); - mpp_put_var_value(fid, id_angle_dx, angle_dx+pos_c); - if(strcmp(conformal, "true") != 0) mpp_put_var_value(fid, id_angle_dy, angle_dy+pos_c); - } - else { - double *tmp; - - tmp = (double *)malloc((nxp+2*out_halo)*(nyp+2*out_halo)*sizeof(double)); - fill_cubic_grid_halo(nx,ny,out_halo,tmp,x,x,n,1,1); - mpp_put_var_value(fid, id_x, tmp); - fill_cubic_grid_halo(nx,ny,out_halo,tmp,y,y,n,1,1); - mpp_put_var_value(fid, id_y, tmp); - fill_cubic_grid_halo(nx,ny,out_halo,tmp,angle_dx,angle_dx,n,1,1); - mpp_put_var_value(fid, id_angle_dx, tmp); - if(strcmp(conformal, "true") != 0) { - fill_cubic_grid_halo(nx,ny,out_halo,tmp,angle_dy,angle_dy,n,1,1); - mpp_put_var_value(fid, id_angle_dy, tmp); - } - - fill_cubic_grid_halo(nx,ny,out_halo,tmp,dx,dy,n,0,1); - mpp_put_var_value(fid, id_dx, tmp); - fill_cubic_grid_halo(nx,ny,out_halo,tmp,dy,dx,n,1,0); - mpp_put_var_value(fid, id_dy, tmp); - fill_cubic_grid_halo(nx,ny,out_halo,tmp,area,area,n,0,1); - mpp_put_var_value(fid, id_area, tmp); - free(tmp); - } - - nwrite[0] = strlen(arcx); - mpp_put_var_value_block(fid, id_arcx, start, nwrite, arcx ); - mpp_close(fid); - pos_c += nxp*nyp; - pos_e += nxp*ny; - pos_n += nx*nyp; - pos_t += nx*ny; - } - } - - free(x); - free(y); - free(dx); - free(dy); - free(area); - free(angle_dx); - if(strcmp(conformal, "true") != 0) free(angle_dy); - if(mpp_pe() == mpp_root_pe() && verbose) printf("generate_grid is run successfully. \n"); - - mpp_end(); - - return 0; - -}; /* end of main */ - - diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/COPYING b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/COPYING deleted file mode 100644 index 93a221957b..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/COPYING +++ /dev/null @@ -1,159 +0,0 @@ -TERMS AND CONDITIONS -0. Definitions. - -“This License” refers to version 3 of the GNU General Public License. - -“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. - -“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. - -To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. - -A “covered work” means either the unmodified Program or a work based on the Program. - -To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. - -To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. - -An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. -1. Source Code. - -The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. - -A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. - -The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. - -The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. - -The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. - -The Corresponding Source for a work in source code form is that same work. -2. Basic Permissions. - -All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. - -You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. - -Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. -3. Protecting Users' Legal Rights From Anti-Circumvention Law. - -No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. - -When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. -4. Conveying Verbatim Copies. - -You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. - -You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. -5. Conveying Modified Source Versions. - -You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified it, and giving a relevant date. - b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. - c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. - d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. - -A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. -6. Conveying Non-Source Forms. - -You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: - - a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. - b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. - c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. - d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. - e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. - -A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. - -A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. - -“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. - -If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). - -The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. - -Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. -7. Additional Terms. - -“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. - -When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. - -Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or - b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or - c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or - d) Limiting the use for publicity purposes of names of licensors or authors of the material; or - e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or - f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. - -All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. - -If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. - -Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. -8. Termination. - -You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). - -However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. - -Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. - -Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. -9. Acceptance Not Required for Having Copies. - -You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. -10. Automatic Licensing of Downstream Recipients. - -Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. - -An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. - -You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. -11. Patents. - -A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. - -A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. - -Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. - -In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. - -If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. - -If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. - -A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. - -Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. -12. No Surrender of Others' Freedom. - -If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. -13. Use with the GNU Affero General Public License. - -Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. -14. Revised Versions of this License. - -The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. - -If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. - -Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. -15. Disclaimer of Warranty. - -THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. -16. Limitation of Liability. - -IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -17. Interpretation of Sections 15 and 16. - -If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gaea b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gaea deleted file mode 100644 index 42e7137c52..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gaea +++ /dev/null @@ -1,4 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := cc -CC := cc -STATIC := -static diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gfdl-ws b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gfdl-ws deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.gfdl-ws +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.jet b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.jet deleted file mode 100644 index 28bf431ee5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.jet +++ /dev/null @@ -1,7 +0,0 @@ -CLIBS_SITE := -CFLAGS_SITE := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc -NETCDF_HOME = $(NETCDF_DIR) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.pan b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.pan deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.pan +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.theia b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.theia deleted file mode 100644 index 6c090e2e25..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.theia +++ /dev/null @@ -1,4 +0,0 @@ -# theia -MPICC := mpiicc -CC := icc -STATIC := diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss deleted file mode 100644 index e6f023dfb7..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss +++ /dev/null @@ -1,3 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := mpiicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss_cray b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss_cray deleted file mode 100644 index 42e7137c52..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.wcoss_cray +++ /dev/null @@ -1,4 +0,0 @@ -# ORNL uses the cc wrapper -MPICC := cc -CC := cc -STATIC := -static diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.zeus b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.zeus deleted file mode 100644 index 3d742259a5..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/env.zeus +++ /dev/null @@ -1,6 +0,0 @@ -LIBS2 := -CLIBS2 := - -# GFDL uses the mpicc wrapper and Intel icc -MPICC := mpicc -CC := icc diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_theia b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_theia deleted file mode 100644 index 7a2130a228..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_theia +++ /dev/null @@ -1,76 +0,0 @@ -# -# $Id: fre-nctools.mk,v 20.0 2013/12/14 00:33:52 fms Exp $ -# ------------------------------------------------------------------------------ -# FMS/FRE Project: Makefile to Build Regridding Executables -# ------------------------------------------------------------------------------ -# afy Ver 1.00 Initial version (Makefile, ver 17.0.4.2) June 10 -# afy Ver 1.01 Add rules to build MPI-based executable June 10 -# afy Ver 1.02 Simplified according to fre-nctools standards June 10 -# ------------------------------------------------------------------------------ -# Copyright (C) NOAA Geophysical Fluid Dynamics Laboratory, 2009-2011 -# This program is distributed under the terms of the GNU General Public -# License. See the file COPYING contained in this directory -# -# Designed and written by V. Balaji, Amy Langenhorst and Aleksey Yakovlev -# -include env.$(SITE) - -#CC := icc -CFLAGS := -O3 -CFLAGS_O2:= -O2 -INCLUDES := -I${NETCDF_HOME}/include -I./ -I../shared -I../../shared/mosaic -CLIBS := -L${NETCDF_HOME}/lib -L${HDF5_HOME}/lib -lnetcdf -lhdf5_hl -lhdf5 -limf $(CLIBS2) $(STATIC) - -TARGETS := make_solo_mosaic - -SOURCES := make_solo_mosaic.c get_contact.c -SOURCES += mpp.c mpp_domain.c mpp_io.c tool_util.c -SOURCES += create_xgrid.c interp.c mosaic_util.c read_mosaic.c - -OBJECTS := $(SOURCES:c=o) - -HEADERS = fre-nctools.mk ../shared/mpp.h ../shared/mpp_domain.h ../shared/mpp_io.h ../shared/tool_util.h \ - ../../shared/mosaic/constant.h ../../shared/mosaic/create_xgrid.h \ - ../../shared/mosaic/interp.h ../../shared/mosaic/mosaic_util.h \ - ./get_contact.h ../../shared/mosaic/read_mosaic.h - -all: $(TARGETS) - -make_solo_mosaic: $(OBJECTS) - $(CC) -o $@ $^ $(CLIBS) - -make_solo_mosaic.o: make_solo_mosaic.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -get_contact.o: get_contact.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -read_mosaic.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -interp.o: ../../shared/mosaic/interp.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -mpp_io.o: ../shared/mpp_io.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_domain.o: ../shared/mpp_domain.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp.o: ../shared/mpp.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -tool_util.o: ../shared/tool_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -create_xgrid.o: ../../shared/mosaic/create_xgrid.c $(HEADERS) - $(CC) $(CFLAGS_O2) $(INCLUDES) -c $< - -%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -clean: - -rm -f *.o $(TARGETS) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_wcoss_cray b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_wcoss_cray deleted file mode 100644 index a67bbe8d4f..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/fre-nctools.mk_wcoss_cray +++ /dev/null @@ -1,76 +0,0 @@ -# -# $Id: fre-nctools.mk,v 20.0 2013/12/14 00:33:52 fms Exp $ -# ------------------------------------------------------------------------------ -# FMS/FRE Project: Makefile to Build Regridding Executables -# ------------------------------------------------------------------------------ -# afy Ver 1.00 Initial version (Makefile, ver 17.0.4.2) June 10 -# afy Ver 1.01 Add rules to build MPI-based executable June 10 -# afy Ver 1.02 Simplified according to fre-nctools standards June 10 -# ------------------------------------------------------------------------------ -# Copyright (C) NOAA Geophysical Fluid Dynamics Laboratory, 2009-2011 -# This program is distributed under the terms of the GNU General Public -# License. See the file COPYING contained in this directory -# -# Designed and written by V. Balaji, Amy Langenhorst and Aleksey Yakovlev -# -include env.$(SITE) - -#CC := icc -CFLAGS := -O3 -traceback -CFLAGS_O2:= -O2 -traceback -INCLUDES := -I${NETCDF_HOME}/include -I./ -I../shared -I../../shared/mosaic -CLIBS := -L${NETCDF_HOME}/lib -L${HDF5_HOME}/lib -lnetcdf -lhdf5_hl -lhdf5 -lz -limf $(CLIBS2) $(STATIC) - -TARGETS := make_solo_mosaic - -SOURCES := make_solo_mosaic.c get_contact.c -SOURCES += mpp.c mpp_domain.c mpp_io.c tool_util.c -SOURCES += create_xgrid.c interp.c mosaic_util.c read_mosaic.c - -OBJECTS := $(SOURCES:c=o) - -HEADERS = fre-nctools.mk ../shared/mpp.h ../shared/mpp_domain.h ../shared/mpp_io.h ../shared/tool_util.h \ - ../../shared/mosaic/constant.h ../../shared/mosaic/create_xgrid.h \ - ../../shared/mosaic/interp.h ../../shared/mosaic/mosaic_util.h \ - ./get_contact.h ../../shared/mosaic/read_mosaic.h - -all: $(TARGETS) - -make_solo_mosaic: $(OBJECTS) - $(CC) -o $@ $^ $(CLIBS) - -make_solo_mosaic.o: make_solo_mosaic.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -get_contact.o: get_contact.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -mosaic_util.o: ../../shared/mosaic/mosaic_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -read_mosaic.o: ../../shared/mosaic/read_mosaic.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -interp.o: ../../shared/mosaic/interp.c $(HEADERS) - $(CC) -Duse_netCDF $(CFLAGS) $(INCLUDES) -c $< - -mpp_io.o: ../shared/mpp_io.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp_domain.o: ../shared/mpp_domain.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -mpp.o: ../shared/mpp.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -tool_util.o: ../shared/tool_util.c $(HEADERS) - $(CC) $(CFLAGS) $(INCLUDES) -o $@ -c $< - -create_xgrid.o: ../../shared/mosaic/create_xgrid.c $(HEADERS) - $(CC) $(CFLAGS_O2) $(INCLUDES) -c $< - -%.o: %.c - $(CC) $(CFLAGS) $(INCLUDES) -c $< - -clean: - -rm -f *.o $(TARGETS) diff --git a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/get_contact.c b/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/get_contact.c deleted file mode 100644 index 2923b71808..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/make_solo_mosaic/get_contact.c +++ /dev/null @@ -1,531 +0,0 @@ -#include -#include -#include "mosaic_util.h" -#include "get_contact.h" - - -/************************************************************************************************ - int get_align_contact( - This routine will return number of algined contacts bewteen two tiles (line contact). - This routine assume the starting and ending points of the contact line are coincidence with - the grid points of both tiles. lrg_rectangle tiles are assumed. - It will return the contact information, which includes - -*************************************************************************************************/ - -double* east_bound(const double *data, int nx, int ny); -double* west_bound(const double *data, int nx, int ny); -double* south_bound(const double *data, int nx, int ny); -double* north_bound(const double *data, int nx, int ny); -#define EPSLN (1.0e-10) - -int get_contact_index( int size1, int size2, double *x1, double *y1, double *x2, double *y2, double periodx, - double periody, int *start1, int *end1, int *start2, int *end2); -int get_overlap_index( double x1, double y1, int nx2, int ny2, const double *x2, const double *y2, - int *i2, int *j2 ); - -int get_align_contact(int tile1, int tile2, int nx1, int ny1, int nx2, int ny2, - const double *x1, const double *y1, const double *x2, - const double *y2, double periodx, double periody, - int *istart1, int *iend1, int *jstart1, int *jend1, - int *istart2, int *iend2, int *jstart2, int *jend2) -{ - double *xb1, *yb1, *xb2, *yb2; - int ncontact, start1, end1, start2, end2; - - ncontact = 0; - /* East bound of tile1 and west bound of tile2 */ - xb1 = east_bound(x1, nx1, ny1); - yb1 = east_bound(y1, nx1, ny1); - xb2 = west_bound(x2, nx2, ny2); - yb2 = west_bound(y2, nx2, ny2); - if( get_contact_index( ny1, ny2, xb1, yb1, xb2, yb2, periodx, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = nx1-1; - iend1[ncontact] = nx1-1; - istart2[ncontact] = 1; - iend2[ncontact] = 1; - jstart1[ncontact] = start1; - jend1[ncontact] = end1; - jstart2[ncontact] = start2; - jend2[ncontact] = end2; - ncontact++; - } - - /* East bound of tile1 and SOUTH bound of tile2, tile1 and tile must be different tile */ - if(tile1 != tile2) { - free(xb2); - free(yb2); - xb2 = south_bound(x2, nx2, ny2); - yb2 = south_bound(y2, nx2, ny2); - if( get_contact_index( ny1, nx2, xb1, yb1, xb2, yb2, 0.0, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = nx1-1; - iend1[ncontact] = nx1-1; - istart2[ncontact] = start2; - iend2[ncontact] = end2; - jstart1[ncontact] = start1; - jend1[ncontact] = end1; - jstart2[ncontact] = 1; - jend2[ncontact] = 1; - ncontact++; - } - } - free(xb1); - free(yb1); - free(xb2); - free(yb2); - - /* South bound of tile1 and NORTH bound of tile2 */ - xb1 = south_bound(x1, nx1, ny1); - yb1 = south_bound(y1, nx1, ny1); - xb2 = north_bound(x2, nx2, ny2); - yb2 = north_bound(y2, nx2, ny2); - if( get_contact_index( nx1, nx2, xb1, yb1, xb2, yb2, 0.0, periody, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = start1; - iend1[ncontact] = end1; - istart2[ncontact] = start2; - iend2[ncontact] = end2; - jstart1[ncontact] = 1; - jend1[ncontact] = 1; - jstart2[ncontact] = ny2-1; - jend2[ncontact] = ny2-1; - ncontact++; - } - - /* South bound of tile1 and East bound of tile2, tile1 and tile must be different tile*/ - if(tile1 != tile2 ) { - free(xb2); - free(yb2); - xb2 = east_bound(x2, nx2, ny2); - yb2 = east_bound(y2, nx2, ny2); - if( get_contact_index( nx1, ny2, xb1, yb1, xb2, yb2, 0.0, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = start1; - iend1[ncontact] = end1; - istart2[ncontact] = nx2-1; - iend2[ncontact] = nx2-1; - jstart1[ncontact] = 1; - jend1[ncontact] = 1; - jstart2[ncontact] = start2; - jend2[ncontact] = end2; - ncontact++; - } - } - free(xb1); - free(yb1); - free(xb2); - free(yb2); - - /* to avoid duplicate, the following will be done only when tile1 not equal to tile2 */ - if(tile1 != tile2) { - /* West bound of tile1 and east bound of tile2*/ - xb1 = west_bound(x1, nx1, ny1); - yb1 = west_bound(y1, nx1, ny1); - xb2 = east_bound(x2, nx2, ny2); - yb2 = east_bound(y2, nx2, ny2); - if( get_contact_index( ny1, ny2, xb1, yb1, xb2, yb2, periodx, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = 1; - iend1[ncontact] = 1; - istart2[ncontact] = nx2-1; - iend2[ncontact] = nx2-1; - jstart1[ncontact] = start1; - jend1[ncontact] = end1; - jstart2[ncontact] = start2; - jend2[ncontact] = end2; - ncontact++; - } - free(xb2); - free(yb2); - - /* West bound of tile1 and North bound of tile2 */ - xb2 = north_bound(x2, nx2, ny2); - yb2 = north_bound(y2, nx2, ny2); - if( get_contact_index( ny1, nx2, xb1, yb1, xb2, yb2, 0.0, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = 1; - iend1[ncontact] = 1; - istart2[ncontact] = start2; - iend2[ncontact] = end2; - jstart1[ncontact] = start1; - jend1[ncontact] = end1; - jstart2[ncontact] = ny2-1; - jend2[ncontact] = ny2-1; - ncontact++; - } - free(xb1); - free(yb1); - free(xb2); - free(yb2); - - - /* North bound of tile1 and South bound of tile2 */ - xb1 = north_bound(x1, nx1, ny1); - yb1 = north_bound(y1, nx1, ny1); - xb2 = south_bound(x2, nx2, ny2); - yb2 = south_bound(y2, nx2, ny2); - if( get_contact_index( nx1, nx2, xb1, yb1, xb2, yb2, 0.0, periody, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = start1; - iend1[ncontact] = end1; - istart2[ncontact] = start2; - iend2[ncontact] = end2; - jstart1[ncontact] = ny1-1; - jend1[ncontact] = ny1-1; - jstart2[ncontact] = 1; - jend2[ncontact] = 1; - ncontact++; - } - free(xb2); - free(yb2); - - /* North bound of tile1 and West bound of tile2 */ - xb2 = west_bound(x2, nx2, ny2); - yb2 = west_bound(y2, nx2, ny2); - if( get_contact_index( nx1, ny2, xb1, yb1, xb2, yb2, 0.0, 0.0, &start1, &end1, &start2, &end2) ) { - istart1[ncontact] = start1; - iend1[ncontact] = end1; - istart2[ncontact] = 1; - iend2[ncontact] = 1; - jstart1[ncontact] = ny1-1; - jend1[ncontact] = ny1-1; - jstart2[ncontact] = start2; - jend2[ncontact] = end2; - ncontact++; - } - free(xb1); - free(yb1); - free(xb2); - free(yb2); - } - - /* when tile1 = tile2, we need to consider about folded. Only foled north is considered here */ - if(tile1 == tile2) { - int i, folded = 1; - double dx; - int num; - - num = 0; - xb1 = north_bound(x1, nx1, ny1); - yb1 = north_bound(y1, nx1, ny1); - for(i=0; i1) folded = 0; - - if(folded) { - istart1[ncontact] = 1; - iend1[ncontact] = nx1/2; - istart2[ncontact] = nx1-1; - iend2[ncontact] = nx1/2+1; - jstart1[ncontact] = ny1-1; - jend1[ncontact] = ny1-1; - jstart2[ncontact] = ny1-1; - jend2[ncontact] = ny1-1; - ncontact++; - } - free(xb1); - free(yb1); - } - - return ncontact; - -}; - -/* For simplying reason, we are only deal with nested overlap. - */ - -int get_overlap_contact( int tile1, int tile2, int nx1, int ny1, int nx2, int ny2, - const double *x1, const double *y1, const double *x2, - const double *y2, int *istart1, int *iend1, int *jstart1, int *jend1, - int *istart2, int *iend2, int *jstart2, int *jend2) -{ - int l1, l2, count; - int p1x[4], p1y[4], p2x[4], p2y[4]; - double dx, dy; - - - /* check the four corner of tile 2 */ - - /* southwest corner */ - l2 = 0; - p2x[0] = 0; p2y[0]=0; - count = get_overlap_index(x2[l2], y2[l2], nx1, ny1, x1, y1, p1x, p1y); - /* southeast corner */ - p2x[1] = nx2-1; p2y[1] = 0; - if( count > 0 ) { - l2 = nx2-1; - count = get_overlap_index(x2[l2], y2[l2], nx1, ny1, x1, y1, p1x+1, p1y+1); - } - /* northwest corner */ - p2x[2] = 0; p2y[2] = ny2-1; - if( count > 0 ) { - l2 = (ny2-1)*nx2; - count = get_overlap_index(x2[l2], y2[l2], nx1, ny1, x1, y1, p1x+2, p1y+2); - } - /* northeast corner */ - p2x[3] = nx2-1; p2y[3] = ny2-1; - if( count > 0 ) { - l2 = (ny2-1)*nx2+ nx2-1; - count = get_overlap_index(x2[l2], y2[l2], nx1, ny1, x1, y1, p1x+3, p1y+3); - } - /* check the four corner of tile 1 if count==0 */ - if(count == 0) { - - /* southwest corner */ - l1 = 0; - p1x[0] = 0; p1y[0]=0; - count = get_overlap_index(x1[l1], y1[l1], nx2, ny2, x2, y2, p2x, p2y); - if(count == 0) return 0; - - /* southeast corner */ - p1x[1] = nx1-1; p1y[1] = 0; - l1 = nx1-1; - count = get_overlap_index(x1[l1], y1[l1], nx2, ny2, x2, y2, p2x+1, p2y+1); - if(count == 0) return 0; - - /* northwest corner */ - p1x[2] = 0; p1y[2] = ny1-1; - l1 = (ny1-1)*nx1; - count = get_overlap_index(x1[l1], y1[l1], nx2, ny2, x2, y2, p2x+2, p2y+2); - if(count == 0) return 0; - - /* northeast corner */ - p1x[3] = nx1-1; p1y[3] = ny1-1; - l1 = (ny1-1)*nx1+ nx1-1; - count = get_overlap_index(x1[l1], y1[l1], nx2, ny2, x2, y2, p2x+3, p2y+3); - if(count == 0) return 0; - - } - - -/* for(j1=0; j1=0; i1--) { */ -/* l1 = j1*nx1+i1; */ -/* for(j2=0;j2=0; i2--) { */ -/* l2 = j2*nx2+i2; */ -/* dx = fabs(x1[l1]- x2[l2]); */ -/* dy = fabs(y1[l1]- y2[l2]); */ -/* if( dx < EPSLN && dy =0; j1--) for(i1=0;i1=0; j2--) for(i2=0; i2=0; j1--) for(i1=nx1-1;i1>=0; i1--) { */ -/* l1 = j1*nx1+i1; */ -/* for(j2=ny2-1;j2>=0; j2--) for(i2=nx2-1; i2>=0; i2--) { */ -/* l2 = j2*nx2+i2; */ -/* dx = fabs(x1[l1]- x2[l2]); */ -/* dy = fabs(y1[l1]- y2[l2]); */ -/* if( dx < EPSLN && dy =0; i1--) { - for(i2=size2-1; i2>=0; i2--) { - dx = fabs(x1[i1]- x2[i2]); - dx = min(dx, fabs(dx-periodx)); - dy = fabs(y1[i1]- y2[i2]); - dy = min(dy, fabs(dy-periody)); - if( dx < EPSLN && dy *end1 ) - (*start1)--; - else - (*end1)--; - - if(*start2 > *end2 ) - (*start2)--; - else - (*end2)--; - - return 1; - -}; - - -double* west_bound(const double *data, int nx, int ny) -{ - int i; - double *bnd; - bnd = (double *)malloc(ny*sizeof(double)); - for(i=0; i -#include -#include -#include -#include "get_contact.h" -#include "constant.h" -#include "mpp_io.h" -#include "mpp.h" - -char *usage[] = { - "", - " make_solo_mosaic --num_tiles ntiles --dir directory [--mosaic_name mosaic_name] ", - " [--tile_file tile_file] [--periodx #] [--periody #] ", - " ", - "make_solo_mosaic generates Mosaic information between tiles. The mosaic ", - "information includes: list of tile files, list of contact region ", - "specified by index, contact type. ", - " ", - "make_solo_mosaic takes the following flags: ", - " ", - "REQUIRED: ", - " ", - "--num_tiles ntiles Number of tiles in the mosaic. ", - " ", - "--dir directory The directory that contains all the tile grid file. ", - " ", - "OPTIONAL FLAGS ", - " ", - "--mosaic_name name mosaic name. The output file will be mosaic_name.nc. ", - " default is 'mosaic'. ", - " ", - "--tile_file tile_file Grid file name of all tiles in the mosaic. The file name ", - " should be relative file name ( exclude the absolute ", - " file path). The absolute file path will be dir/tile_file. ", - " If this option is not specified, the tile_file will be ", - " 'horizontal_grid.tile#.nc' ", - " ", - "--periodx # Specify the period in x-direction of mosaic. Default ", - " value is 0 (not periodic). ", - " ", - "--periody # Specify the period in y-direction of mosaic. Default ", - " value is 0 (not periodic). ", - " ", - " Example 1: create solo mosaic for tripolar grid(grid file name is ocean_grid.nc.", - " make_solo_mosaic --num_tiles 1 --dir ./ --mosaic_name ocean_mosaic ", - " --tile_file ocean_hgrid.nc --periodx 360 ", - " ", - " Example 2: create solo mosaic for torus. ", - " make_solo_mosaic --num_tiles 1 --dir ./ --mosaic_name ocean_mosaic ", - " --tile_file ocean_hgrid.nc --periodx 360 --periody 360 ", - " ", - " Example 3: create solo mosaic for C48 grid. ", - " make_solo_mosaic --num_tiles 6 --dir ./ --mosaic C48_mosaic --tile_file ", - " C48_grid.tile1.nc,C48_grid.tile2.nc,C48_grid.tile3.nc,C48_grid.tile4.nc, ", - " C48_grid.tile5.nc,C48_grid.tile6.nc ", - " ", - NULL}; - -const int MAXTILE = 100; -const int MAXCONTACT = 100; -const int SHORTSTRING = 32; -char grid_version[] = "0.2"; -char tagname[] = "$Name: fre-nctools-bronx-10 $"; - -main (int argc, char *argv[]) -{ - - extern char *optarg; - char *pch=NULL, *dir=NULL, history[512], entry[1280]; - char tilefile[MAXTILE][STRING], tiletype[MAXTILE][SHORTSTRING]; - char tile_name[MAXTILE][STRING]; - int ntiles=0, nfiles=0, ncontact=0; - int *nxp, *nyp; - double **x, **y; - double periodx=0, periody=0; - int contact_tile1[MAXCONTACT], contact_tile2[MAXCONTACT]; - int contact_tile1_istart[MAXCONTACT], contact_tile1_iend[MAXCONTACT]; - int contact_tile1_jstart[MAXCONTACT], contact_tile1_jend[MAXCONTACT]; - int contact_tile2_istart[MAXCONTACT], contact_tile2_iend[MAXCONTACT]; - int contact_tile2_jstart[MAXCONTACT], contact_tile2_jend[MAXCONTACT]; - char mosaic_name[128] = "solo_mosaic"; - char grid_descriptor[128] = ""; - int c, i, n, m, l, errflg; - - int option_index = 0; - static struct option long_options[] = { - {"mosaic_name", required_argument, NULL, 'm'}, - {"num_tiles", required_argument, NULL, 'n'}, - {"grid_descriptor", required_argument, NULL, 'g'}, - {"tile_file", required_argument, NULL, 'f'}, - {"periodx", required_argument, NULL, 'x'}, - {"periody", required_argument, NULL, 'y'}, - {"directory", required_argument, NULL, 'd'}, - {NULL, 0, NULL, 0} - }; - - mpp_init(&argc, &argv); - /* this tool must be run one processor */ - if(mpp_npes()>1) mpp_error("make_solo_mosaic: this tool must be run on one processor"); - - errflg = (argc == 1); - /* First read command line arguments. */ - - while ((c = getopt_long(argc, argv, "h", long_options, &option_index)) != -1) { - switch (c) { - case 'n': - ntiles = atoi(optarg); - break; - case 'm': - strcpy(mosaic_name, optarg); - break; - case 'g': - strcpy(grid_descriptor, optarg); - break; - case 'f': - strcpy(entry, optarg); - pch = strtok(entry, ", "); - nfiles = 0; - while( pch != NULL) { - strcpy(tilefile[nfiles++], pch); - pch = strtok(NULL, ", "); - } - break; - case 'x': - periodx = atof(optarg); - break; - case 'y': - periody = atof(optarg); - break; - case 'd': // path of the simple grid file. - dir = optarg; - break; - case '?': - errflg++; - } - } - - if (errflg || ntiles < 1 || !dir ) { - char **u = usage; - while (*u) { fprintf(stderr, "%s\n", *u); u++; } - exit(2); - } - - strcpy(history,argv[0]); - - for(i=1;i MAXTILE) { - mpp_error("make_solo_mosaic: number of tiles is greater than MAXTILE."); - } - - /*--- if file name is not specified through -f, file name will be horizontal_grid.tile#.nc */ - if(nfiles == 0) { - if(ntiles == 1) { - sprintf(tilefile[0],"horizontal_grid.nc"); - } - else { - for(n=0; nMAXCONTACT) mpp_error("make_solo_mosaic: number of contacts is more than MAXCONTACT 1"); - for(l=0; lMAXCONTACT) mpp_error("make_solo_mosaic: number of contacts is more than MAXCONTACT 2"); - for(l=0; l0) dim_ncontact = mpp_def_dim(fid, "ncontact", ncontact); - dim_string = mpp_def_dim(fid, "string", STRING); - /* define variable */ - id_mosaic = mpp_def_var(fid, "mosaic", MPP_CHAR, 1, &dim_string, 4, "standard_name", - "grid_mosaic_spec", "children", "gridtiles", "contact_regions", "contacts", - "grid_descriptor", grid_descriptor); - dim[0] = dim_ntiles; dim[1] = dim_string; - id_griddir = mpp_def_var(fid, "gridlocation", MPP_CHAR, 1, &dim[1], 1, - "standard_name", "grid_file_location"); - id_gridfiles = mpp_def_var(fid, "gridfiles", MPP_CHAR, 2, dim, 0); - id_gridtiles = mpp_def_var(fid, "gridtiles", MPP_CHAR, 2, dim, 0); - - if(ncontact>0) { - dim[0] = dim_ncontact; dim[1] = dim_string; - id_contacts = mpp_def_var(fid, "contacts", MPP_CHAR, 2, dim, 5, "standard_name", "grid_contact_spec", - "contact_type", "boundary", "alignment", "true", - "contact_index", "contact_index", "orientation", "orient"); - id_contact_index = mpp_def_var(fid, "contact_index", MPP_CHAR, 2, dim, 1, "standard_name", - "starting_ending_point_index_of_contact"); - - } - mpp_def_global_att(fid, "grid_version", grid_version); - mpp_def_global_att(fid, "code_version", tagname); - mpp_def_global_att(fid, "history", history); - mpp_end_def(fid); - - /* write out data */ - for(i=0; i<4; i++) { - start[i] = 0; nwrite[i] = 1; - } - nwrite[0] = strlen(mosaic_name); - mpp_put_var_value_block(fid, id_mosaic, start, nwrite, mosaic_name); - nwrite[0] = strlen(dir); - mpp_put_var_value_block(fid, id_griddir, start, nwrite, dir); - nwrite[0] = 1; - for(n=0; n -#include -#include -#include -#include -#include -#include -#include - -static pid_t gettid(void) -{ - return syscall(__NR_gettid); -} - -/* - * Returns this thread's CPU affinity, if bound to a single core, - * or else -1. - */ -int get_cpu_affinity(void) -{ -#ifdef use_libMPI - cpu_set_t coremask; /* core affinity mask */ - - CPU_ZERO(&coremask); - if (sched_getaffinity(gettid(),sizeof(cpu_set_t),&coremask) != 0) { - fprintf(stderr,"Unable to get thread %d affinity. %s\n",gettid(),strerror(errno)); - } - - int cpu; - int first_cpu = -1; /* first CPU in range */ - int last_cpu = -1; /* last CPU in range */ - for (cpu=0;cpu < CPU_SETSIZE;cpu++) { - if (CPU_ISSET(cpu,&coremask)) { - if (first_cpu == -1) { - first_cpu = cpu; - } else { - last_cpu = cpu; - } - } - } - - return (last_cpu == -1) ? first_cpu : -1; -#else - return 0; -#endif - -} - -int get_cpu_affinity_(void) { return get_cpu_affinity(); } /* Fortran interface */ - - -/* - * Set CPU affinity to one core. - */ -void set_cpu_affinity( int cpu ) -{ - cpu_set_t coremask; /* core affinity mask */ - - CPU_ZERO(&coremask); - CPU_SET(cpu,&coremask); - if (sched_setaffinity(gettid(),sizeof(cpu_set_t),&coremask) != 0) { - fprintf(stderr,"Unable to set thread %d affinity. %s\n",gettid(),strerror(errno)); - } -} - -void set_cpu_affinity_(int *cpu) { set_cpu_affinity(*cpu); } /* Fortran interface */ diff --git a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp.c b/release/v0/sorc/fre-nctools.fd/tools/shared/mpp.c deleted file mode 100644 index 3207c6ec10..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp.c +++ /dev/null @@ -1,353 +0,0 @@ -#include -#include -#include -#include -#include -#ifdef use_libMPI -#include -#endif -#include "mpp.h" - - -/**************************************************** - global variables -*****************************************************/ -int npes, root_pe, pe; -int *pelist=NULL; -const int tag = 1; -#ifdef use_libMPI -MPI_Request *request; -#endif - -/************************************************************** - void mpp_init() - this routine will create communicator. -***************************************************************/ - -void mpp_init(int *argc, char ***argv) -{ - int n; - -#ifdef use_libMPI - MPI_Init(argc, argv); - MPI_Comm_rank(MPI_COMM_WORLD,&pe); - MPI_Comm_size(MPI_COMM_WORLD,&npes); - request = (MPI_Request *)malloc(npes*sizeof(MPI_Request)); - for(n=0; nto_pe in queue */ - if(request[to_pe] != MPI_REQUEST_NULL) { - MPI_Wait( request+to_pe, &status ); - } - - MPI_Isend(data, size, MPI_DOUBLE, to_pe, tag, MPI_COMM_WORLD, request+to_pe); -#endif - -}; /* mpp_send_double */ - - -/************************************************************* - void mpp_send_int(const int* data, int size, int to_pe) - send data to "to_pe" -*************************************************************/ - -void mpp_send_int(const int* data, int size, int to_pe) -{ -#ifdef use_libMPI - MPI_Status status; - if(request[to_pe] != MPI_REQUEST_NULL) { - MPI_Wait( request+to_pe, &status ); - } - - MPI_Isend(data, size, MPI_INT, to_pe, tag, MPI_COMM_WORLD, request+to_pe); -#endif - -}; /* mpp_send_int */ - -/*********************************************************** - void mpp_recv_double(double* data, int size, int from_pe) - receive data from "from_pe" -***********************************************************/ - -void mpp_recv_double(double* data, int size, int from_pe) -{ -#ifdef use_libMPI - MPI_Status status; - MPI_Recv(data, size, MPI_DOUBLE, from_pe, MPI_ANY_TAG, MPI_COMM_WORLD,&status); -#endif -}; /* mpp_recv_double */ - -/*********************************************************** - void mpp_recv_int(int* data, int size, int from_pe) - receive data from "from_pe" -***********************************************************/ - -void mpp_recv_int(int* data, int size, int from_pe) -{ -#ifdef use_libMPI - MPI_Status status; - MPI_Recv(data, size, MPI_INT, from_pe, MPI_ANY_TAG, MPI_COMM_WORLD,&status); -#endif -}; /* mpp_recv_int */ - - -/******************************************************************************* - int mpp_sum_int(int count, int *data) - sum integer over all the pes. -*******************************************************************************/ -void mpp_sum_int(int count, int *data) -{ - -#ifdef use_libMPI - int i; - int *sum; - sum = (int *)malloc(count*sizeof(int)); - MPI_Allreduce(data, sum, count, MPI_INT, MPI_SUM, MPI_COMM_WORLD); - for(i=0; i -#include -#include "mpp.h" -#include "mpp_domain.h" - -/*********************************************************** - global variables -***********************************************************/ -int pe, npes, root_pe; -#define MAX_BUFFER_SIZE 10000000 -double rBuffer[MAX_BUFFER_SIZE]; -double sBuffer[MAX_BUFFER_SIZE]; - -/************************************************************ - void mpp_domain_init() - initialization routine. get the processor information. - memory allocation. -************************************************************/ -void mpp_domain_init( ) -{ - pe = mpp_pe(); - npes = mpp_npes(); - root_pe = mpp_root_pe(); - -}; /* mpp_domain_init */ - -/*********************************************************** - void mpp_domain_end() - release memory. -***********************************************************/ -void mpp_domain_end () -{ - /* will add something here if needed */ -}; - -/************************************************************ - void mpp_define_layout() - define domain layout based on given grid resolution and - number of processors -***********************************************************/ - -void mpp_define_layout(int ni, int nj, int ndivs, int layout[]) -{ - int idiv, jdiv; - float fdiv; - - /*first try to divide ndivs in the domain aspect ratio: - if imperfect aspect, reduce idiv till it divides ndivs */ - fdiv = sqrt((1.0*ndivs*ni)/nj); - idiv = floor(fdiv); - if(fdiv-idiv > 0.5) idiv = idiv + 1; - idiv = (idiv>1) ? idiv : 1; /*for isz=1 line above can give 0*/ - while( ndivs%idiv != 0 ) { - idiv = idiv - 1; - } /*will terminate at idiv=1 if not before*/ - jdiv = ndivs/idiv; - layout[0] = idiv; - layout[1] = jdiv; -}; - -/*************************************************************** - void mpp_compute_extent(int npts, int ndivs, int *ibegin, int *iend) - - Compute extent of 1-D decomposition - - problem of dividing nx points into n domains maintaining symmetry - i.e nx=18 n=4 4554 and 5445 are solutions but 4455 is not. - this will always work for nx even n even or odd - this will always work for nx odd, n odd - this will never work for nx odd, n even: for this case we supersede the mirror calculation - symmetrize = .NOT. ( mod(ndivs,2).EQ.0 .AND. mod(ieg-isg+1,2).EQ.1 ) - nx even n odd fails if n>nx/2 - -***************************************************************/ -void mpp_compute_extent(int npts, int ndivs, int *ibegin, int *iend) -{ - int ndivs_is_odd, npts_is_odd, symmetrize; - int isg, ieg, is, ie; - int imax, ndmax, ndmirror; - int ndiv; - - if(ndivs > npts ) { - mpp_error("mpp_compute_extent: more divisions requested than rows available. " ); - } - - ndivs_is_odd = ndivs%2; - npts_is_odd = npts%2; - symmetrize = 0; - if( ndivs_is_odd && npts_is_odd ) symmetrize = 1; - if( ndivs_is_odd == 0 && npts_is_odd == 0 ) symmetrize = 1; - if( ndivs_is_odd && npts_is_odd == 0 && ndivs < npts/2 ) symmetrize = 1; - - isg = 0; - ieg = npts-1; - is = isg; - for(ndiv=0; ndiv ndiv && symmetrize ) { /* only for domains over the midpoint */ - /*mirror extents, the max(,) is to eliminate overlaps */ - ibegin[ndmirror] = max( isg+ieg-ie, ie+1 ); - iend[ndmirror] = max( isg+ieg-is, ie+1 ); - imax = ibegin[ndmirror] - 1; - ndmax --; - } - } - else { - if( symmetrize ){ - /*do top half of decomposition by retrieving saved values */ - is = ibegin[ndiv]; - ie = iend[ndiv]; - } - else { - ie = is + ceil((imax-is+1.0)/(ndmax-ndiv)) - 1; - } - } - - ibegin[ndiv] = is; - iend[ndiv] = ie; - if( ie < is )mpp_error("mpp_domains(mpp_compute_extent): domain extents must be positive definite." ); - if( ndiv == ndivs-1 && iend[ndiv] != ieg ) - mpp_error( "mpp_domains(mpp_compute_extent): domain extents do not span space completely." ); - is = ie + 1; - } - -}; /* mpp_compute_extent */ - - -/*********************************************************** - void mpp_define_domain_1d(int size, domain1D *domain ) - define 1-D domain decomposition. -**********************************************************/ -void mpp_define_domain_1d(int npts, int ndivs, domain1D *domain ) -{ - int n, npts_left, pos, size; - - domain->beglist = (int *)malloc(ndivs*sizeof(int)); - domain->endlist = (int *)malloc(ndivs*sizeof(int)); - - mpp_compute_extent(npts, ndivs, domain->beglist, domain->endlist); - - if(npes == ndivs) { - domain->start = domain->beglist[pe]; - domain->end = domain->endlist[pe]; - domain->size = domain->end - domain->start + 1; - domain->sizeg = npts; - } - -}; /* mpp_define_domain_1d */ - - -/************************************************************ - void define_domain(int ni, int nj, int layout[], int xhalo, int yhalo, domain2D *domain ) - define 2D domain decomposition -************************************************************/ - -void mpp_define_domain2d(int ni, int nj, int layout[], int xhalo, int yhalo, domain2D *domain ) -{ - domain1D domx, domy; - int i, j, posx, posy, n; - - domain->isclist = (int *)malloc(layout[0]*layout[1]*sizeof(int)); - domain->ieclist = (int *)malloc(layout[0]*layout[1]*sizeof(int)); - domain->jsclist = (int *)malloc(layout[0]*layout[1]*sizeof(int)); - domain->jeclist = (int *)malloc(layout[0]*layout[1]*sizeof(int)); - - mpp_define_domain_1d(ni, layout[0], &domx); - mpp_define_domain_1d(nj, layout[1], &domy); - - n = 0; - for(j=0; jisclist[n] = domx.beglist[i]+xhalo; - domain->ieclist[n] = domx.endlist[i]+xhalo; - domain->jsclist[n] = domy.beglist[j]+yhalo; - domain->jeclist[n] = domy.endlist[j]+yhalo; - n++; - } - } - - domain->xhalo = xhalo; - domain->yhalo = yhalo; - domain->isc = domain->isclist[pe]; - domain->iec = domain->ieclist[pe]; - domain->jsc = domain->jsclist[pe]; - domain->jec = domain->jeclist[pe]; - domain->isd = domain->isc - xhalo; - domain->ied = domain->iec + xhalo; - domain->jsd = domain->jsc - yhalo; - domain->jed = domain->jec + yhalo; - domain->nxc = domain->iec - domain->isc + 1; - domain->nyc = domain->jec - domain->jsc + 1; - domain->nxd = domain->ied - domain->isd + 1; - domain->nyd = domain->jed - domain->jsd + 1; - domain->nxg = ni; - domain->nyg = nj; - - mpp_delete_domain1d(&domx); - mpp_delete_domain1d(&domy); - -}; /* mpp_define_domain2d */ - -/**************************************************************************** - void mpp_delete_domain1d(domain1D *domain); - release the memory assigned to 1-D domain -*****************************************************************************/ -void mpp_delete_domain1d(domain1D *domain) -{ - - free(domain->beglist); - free(domain->endlist); - -}; /* mpp_delete_domain1d */ - -/**************************************************************************** - void mpp_delete_domain2d(domain2D *domain); - release the memory assigned to 2-D domain -*****************************************************************************/ -void mpp_delete_domain2d(domain2D *domain) -{ - - free(domain->isclist); - free(domain->ieclist); - free(domain->jsclist); - free(domain->jeclist); - -}; /* mpp_delete_domain2d */ - - - -/*********************************************************** - void get_get_compute_domain(omain2D domain, int *is, int *ie, int *js, int *je) - get the compute domain decomposition -***********************************************************/ - -void mpp_get_compute_domain2d(domain2D domain, int *is, int *ie, int *js, int *je) -{ - *is = domain.isc; - *ie = domain.iec; - *js = domain.jsc; - *je = domain.jec; -}; /* mpp_get_compute_domain */ - -/*********************************************************** - void get_get_compute_domain( int *is, int *ie, int *js, int *je) - get the compute domain decomposition of current pe list. -***********************************************************/ - -void mpp_get_compute_domains2d(domain2D domain, int *is, int *ie, int *js, int *je) -{ - int n; - - for(n=0; n MAX_BUFFER_SIZE) { - send_buffer = (double *)malloc(send_size*sizeof(double)); - } - else { - send_buffer = sBuffer; - } - n = 0; - for(k=0; kMAX_BUFFER_SIZE){ - recv_buffer = ( double *) malloc(recv_size*sizeof(double)); - } - else { - recv_buffer = rBuffer; - } - mpp_recv_double(recv_buffer, recv_size, p ); - n = 0; - for(k=0;kMAX_BUFFER_SIZE) - free(recv_buffer); - else - recv_buffer=NULL; - } - } - } - mpp_sync_self(); -/*z1l: mpp_sync is needed when running on multiple processor job. Otherwisde the memory -usage will increase. For example, remap_land will fail when running on 270 processors */ - mpp_sync(); - - if(send_buffer != NULL) { - if(send_size>MAX_BUFFER_SIZE) - free(send_buffer); - else - send_buffer = NULL; - } -}; /* mpp_global_field_double */ - -/******************************************************************************* - void mpp_gather_field_int(int lsize, int *ldata, int *gdata) - gather integer data onto every processor -*******************************************************************************/ -void mpp_gather_field_int(int lsize, int *ldata, int *gdata) -{ - int n, p, i; - int *rbuffer=NULL; - int *rsize=NULL; - - rsize = (int *)malloc(npes*sizeof(int)); - - - for(p = 0; p0) mpp_send_int(ldata, lsize, p); - } - } - n = 0; - /* receive from other pe and fill the gdata */ - for(p = 0; p0) { - rbuffer = ( int *) malloc(rsize[p]*sizeof(int)); - mpp_recv_int(rbuffer, rsize[p], p ); - for(i=0; i0) mpp_send_int(ldata, lsize, root_pe); - } - else { - int cur_size; - n = 0; - cur_size = 0; - /* receive from other pe and fill the gdata */ - for(p = 0; p0) { - if( rsize[p] > cur_size ) { - if( rbuffer ) free(rbuffer); - rbuffer = ( int *) malloc(rsize[p]*sizeof(int)); - cur_size = rsize[p]; - } - mpp_recv_int(rbuffer, rsize[p], p ); - for(i=0; i0) mpp_send_double(ldata, lsize, root_pe); - } - else { - int cur_size; - n = 0; - cur_size = 0; - /* receive from other pe and fill the gdata */ - for(p = 0; p0) { - if( rsize[p] > cur_size ) { - if( rbuffer ) free(rbuffer); - rbuffer = ( double *) malloc(rsize[p]*sizeof(double)); - cur_size = rsize[p]; - } - mpp_recv_double(rbuffer, rsize[p], p ); - for(i=0; i0) mpp_send_double(ldata, lsize, p); - } - } - n = 0; - /* receive from other pe and fill the gdata */ - for(p = 0; p0) { - rbuffer = (double *) malloc(rsize[p]*sizeof(double)); - mpp_recv_double(rbuffer, rsize[p], p ); - for(i=0; ib ? a:b) -typedef struct{ - int start, end; /* starting and ending index of compute domain */ - int size; /* compute domain size */ - int sizeg; /* global domain size */ - int *beglist, *endlist; /* list of starting and ending index of compute domain */ -} domain1D; - -typedef struct { - int isc, iec, jsc, jec; /* compute domain decomposition */ - int isd, ied, jsd, jed; /* data domain decomposition */ - int nxc, nyc; /* compute domain size */ - int nxd, nyd; /* data domain size */ - int nxg, nyg; /* global domain size */ - int *isclist, *ieclist; /* list of i-index of compute domain */ - int *jsclist, *jeclist; /* list of j-index of compute domain */ - int xhalo, yhalo; /* halo size */ -} domain2D; - -void mpp_domain_init(); -void mpp_domain_end(); -void mpp_define_layout(int ni, int nj, int ndivs, int layout[]); -void mpp_compute_extent(int npts, int ndivs, int *ibegin, int *iend); -void mpp_define_domain1d(int npts, int ndvis, domain1D *domain ); -void mpp_define_domain2d(int ni, int nj, int layout[], int xhalo, int yhalo, domain2D *domain ); -void mpp_delete_domain1d(domain1D *domain); -void mpp_delete_domain2d(domain2D *domain); -void mpp_get_compute_domain2d(domain2D domain, int *is, int *ie, int *js, int *je); -void mpp_get_data_domain2d(domain2D domain, int *is, int *ie, int *js, int *je); -void mpp_get_global_domain2d(domain2D domain, int *nx, int *ny); -void mpp_get_compute_domains2d(domain2D domain, int *is, int *ie, int *js, int *je); -void mpp_get_shift(domain2D domain, int sizex, int sizey, int *ishift, int *jshift); -void mpp_global_field_double(domain2D domain, int sizex, int sizey, const double* ldata, double* gdata); -void mpp_global_field_int(domain2D domain, int sizex, int sizey, const int* ldata, int* gdata); -void mpp_global_field_double_3D(domain2D domain, int sizex, int sizey, int sizez, - const double* ldata, double* gdata); -void mpp_global_field_all_double(domain2D domain, int sizex, int sizey, const double* ldata, double* gdata); -void mpp_gather_field_int(int lsize, int *ldata, int *gdata); -void mpp_gather_field_double(int lsize, double *ldata, double *gdata); -void mpp_gather_field_double_root(int lsize, double *ldata, double *gdata); -void mpp_gather_field_int_root(int lsize, int *ldata, int *gdata); -#endif diff --git a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.c b/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.c deleted file mode 100644 index 5e6307ed9d..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.c +++ /dev/null @@ -1,1316 +0,0 @@ -#include -#include -#include -#include -#include -#include "mpp.h" -#include "mpp_domain.h" -#include "mpp_io.h" - -#define MAXFILE 200 -#define MAXVAR 1024 -#define STRING 255 - -typedef struct { - int fldid; - char name[128]; - nc_type type; -} VarType; - -typedef struct { - int ncid; - char name[512]; - int action; /* indicate the action, MPP_WRITE or MPP_READ */ - int status; /* indicate if the file is opened or closed */ - int nvar; - VarType *var; -} FileType; - -FileType files[MAXFILE]; -int nfiles = 0; - -int in_format = NC_FORMAT_NETCDF4_CLASSIC; - -/********************************************************************* - void netcdf_error( int status ) - status is the returning value of netcdf call. this routine will - handle the error when status is not NC_NOERR. -********************************************************************/ -void netcdf_error(const char *msg, int status ) -{ - char errmsg[512]; - - sprintf( errmsg, "%s: %s", msg, nc_strerror(status) ); - mpp_error(errmsg); - -}; /* netcdf_error */ - - -/************************************************************* - int mpp_open(char *filename, int action) - open netcdf file to read or write. return the id for the file opened. - Here the id is not the netcdf ncid of the file opened, it is the index - in the mpp_io data files. If the file is already opened, will exit with - an error message. For the write action, mpp_open can only be called once. - For the read action, the file could be open and then close and then open - again. The action should be MPP_READ, MPP_WRITE, a constant defined in - mpp_io.h. When action is MPP_WRITE, file will be created on root pe. -************************************************************/ - -int mpp_open(const char *file, int action) { - char curfile[STRING]; - char errmsg[512]; - int ncid, status, istat, n, fid; -/* size_t blksz=65536; */ - size_t blksz=1048576; - - /* write only from root pe. */ - if(action != MPP_READ && mpp_pe() != mpp_root_pe() ) return -1; - /*if file is not ended with .nc add .nc at the end. */ - strcpy(curfile, file); - if(strstr(curfile, ".nc") == NULL) strcat(curfile,".nc"); - - /* look through currently files to make sure the file is not in the list*/ - fid = -1; - for(n=0; n -1) { - if(files[n].action == MPP_WRITE) { - sprintf( errmsg, "mpp_io(mpp_open): %s is already created for write", file); - mpp_error(errmsg); - } - if(files[n].status) { - sprintf( errmsg, "mpp_io(mpp_open): %s is already opened", file); - mpp_error(errmsg); - } - } - else { - fid = nfiles; - nfiles++; - if(nfiles > MAXFILE) mpp_error("mpp_io(mpp_open): nfiles is larger than MAXFILE, increase MAXFILE"); - strcpy(files[fid].name, file); - files[fid].nvar = 0; - files[fid].var = (VarType *)malloc(MAXVAR*sizeof(VarType)); - } - switch (action) { - case MPP_WRITE: -#ifdef use_netCDF3 -#ifdef NC_64BIT_OFFSET - status = nc_create(curfile, NC_64BIT_OFFSET, &ncid); -#else - status = nc_create(curfile, NC_WRITE, &ncid); -#endif -#elif use_netCDF4 - status = nc__create(curfile, NC_NETCDF4, 0, &blksz, &ncid); -#else - switch (in_format) { - case NC_FORMAT_NETCDF4: - status = nc__create(curfile, NC_NETCDF4, 0, &blksz, &ncid); - break; - case NC_FORMAT_NETCDF4_CLASSIC: - status = nc__create(curfile, NC_NETCDF4 | NC_CLASSIC_MODEL, 0, &blksz, &ncid); - break; - case NC_FORMAT_64BIT: - status = nc__create(curfile, NC_CLOBBER | NC_64BIT_OFFSET, 0, &blksz, &ncid); - break; - case NC_FORMAT_CLASSIC: - status = nc__create(curfile, NC_CLOBBER | NC_CLASSIC_MODEL, 0, &blksz, &ncid); - break; - default: - sprintf(errmsg, "mpp_io(mpp_open): Unknown netCDF format"); - mpp_error(errmsg); - } -#endif - break; - case MPP_APPEND: - status = nc_open(curfile, NC_WRITE, &ncid); - break; - case MPP_READ: - status = nc_open(curfile,NC_NOWRITE, &ncid); -#ifndef use_netCDF3 - istat = nc_inq_format(ncid,&in_format); -#endif - break; - default: - sprintf(errmsg, "mpp_io(mpp_open): the action should be MPP_WRITE or MPP_READ when opening file %s", file); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_open): error in opening file %s", file); - netcdf_error(errmsg, status); - } - - files[fid].ncid = ncid; - files[fid].status = 1; - files[fid].action = action; - - return fid; -} - -/* close the file */ -void mpp_close(int fid) -{ - int status; - char errmsg[512]; - - if(fid == -1 && mpp_pe() != mpp_root_pe() ) return; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_close): invalid id number, id should be " - "a nonnegative integer that less than nfiles"); - - status = nc_close(files[fid].ncid); - if(status != NC_NOERR) { - sprintf( errmsg, "mpp_io(mpp_close): error in closing files %s ", files[fid].name); - netcdf_error(errmsg, status); - } - files[fid].ncid = 0; - files[fid].status = 0; - -} - - -int mpp_get_nvars(int fid) -{ - int nvars, status; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_nvars): invalid id number, id should be " - "a nonnegative integer that less than nfiles"); - status = nc_inq_nvars(files[fid].ncid, &nvars); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_nvars): error in get nvars from file %s", files[fid].name); - netcdf_error(errmsg, status); - } - - return nvars; -} - -void mpp_get_varname(int fid, int varid, char *name) -{ - - int status; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_varname): invalid id number, id should be " - "a nonnegative integer that less than nfiles"); - status = nc_inq_varname(files[fid].ncid, varid, name); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_varname): error in get varname from file %s", files[fid].name); - netcdf_error(errmsg, status); - } - -} - -/*******************************************************************************/ -/* */ -/* The following are routines that retrieve information */ -/* */ -/*******************************************************************************/ - -/********************************************************************* - int mpp_get_dimid(int fid, const char *dimname) - get the id of the dimname from file with fid, -*********************************************************************/ -int mpp_get_dimid(int fid, const char *dimname) -{ - int status, dimid; - char errmsg[512]; - - /* First look through existing variables to see - if the fldid of varname is already retrieved. */ - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_dimid): invalid id number, id should be " - "a nonnegative integer that less than nfiles"); - - status = nc_inq_dimid(files[fid].ncid, dimname, &dimid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_dimid): error in get dimension id of %s from file %s", dimname, files[fid].name); - netcdf_error(errmsg, status); - } - - return dimid; - -};/* mpp_get_dimid */ - - -/********************************************************************* - int mpp_get_varid(int fid, const char *varname) - get the id of the varname from file with fid, the id will be the index - in files[fid].var. -*********************************************************************/ -int mpp_get_varid(int fid, const char *varname) -{ - int status, fldid, vid, n; - char errmsg[512]; - - /* First look through existing variables to see - if the fldid of varname is already retrieved. */ - if(files[fid].action != MPP_READ && mpp_pe() != mpp_root_pe() ) return -1; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_varid): invalid id number, id should be " - "a nonnegative integer that less than nfiles"); - - for(n=0; n MAXVAR ) mpp_error("mpp_io(mpp_get_varid): nvar is larger than MAXVAR, increase MAXVAR"); - - status = nc_inq_varid(files[fid].ncid, varname, &fldid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_varid): error in get field_id of variable %s from file %s", varname, files[fid].name); - netcdf_error(errmsg, status); - } - - status = nc_inq_vartype(files[fid].ncid, fldid, &(files[fid].var[vid].type)); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_varid): Error in getting type of of field %s in file %s ", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - files[fid].var[vid].fldid = fldid; - strcpy(files[fid].var[vid].name, varname); - return vid; - -};/* mpp_get_varid */ - -/******************************************************************** - int mpp_get_dimlen(char* file, char *name) - Get the dimension. - *******************************************************************/ -int mpp_get_dimlen(int fid, const char *name) -{ - int ncid, dimid, status, len; - size_t size; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_dimlen): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - ncid = files[fid].ncid; - status = nc_inq_dimid(ncid, name, &dimid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_dimlen): error in inquiring dimid of %s from file %s", name, files[fid].name); - netcdf_error(errmsg, status); - } - status = nc_inq_dimlen(ncid, dimid, &size); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_dimlen): error in inquiring dimlen of %s from file %s", name, files[fid].name); - netcdf_error(errmsg, status); - } - len = size; - return len; - -}; /* mpp_get_dimlen */ - -/********************************************************************* - void mpp_get_var_value(int fid, int vid, void *data) - read part of var data, the part is defined by start and nread. -*********************************************************************/ -void mpp_get_var_value(int fid, int vid, void *data) -{ - int status; - int *data_i4; - short *data_i2; - float *data_r4; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_value_block): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_value_block): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - switch(files[fid].var[vid].type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_get_var_double(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_INT: - status = nc_get_var_int(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_SHORT: - status = nc_get_var_short(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_CHAR: - status = nc_get_var_text(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - default: - sprintf(errmsg, "mpp_io(mpp_get_var_value): field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_value): Error in getting value of variable %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_get_var_value */ - -/********************************************************************* - void mpp_get_var_value_block(int fid, int vid, const size_t *start, const size_t *nread, void *data) - read part of var data, the part is defined by start and nread. -*********************************************************************/ -void mpp_get_var_value_block(int fid, int vid, const size_t *start, const size_t *nread, void *data) -{ - int status; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_value_block): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_value_block): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - switch(files[fid].var[vid].type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_get_vara_double(files[fid].ncid, files[fid].var[vid].fldid, start, nread, data); - break; - case NC_INT: - status = nc_get_vara_int(files[fid].ncid, files[fid].var[vid].fldid, start, nread, data); - break; - case NC_SHORT: - status = nc_get_vara_short(files[fid].ncid, files[fid].var[vid].fldid, start, nread, data); - break; - case NC_CHAR: - status = nc_get_vara_text(files[fid].ncid, files[fid].var[vid].fldid, start, nread, data); - break; - default: - sprintf(errmsg, "mpp_io(mpp_get_var_value_block): field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_value_block): Error in getting value of variable %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_get_var_value_block */ - -/******************************************************************* - void mpp_get_var_att(int fid, int vid, const char *name, void *val) - get the attribute value of vid from file fid. - ******************************************************************/ -void mpp_get_var_att(int fid, int vid, const char *name, void *val) -{ - int status; - char errmsg[512]; - nc_type type; - - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_att): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - status = nc_inq_atttype(files[fid].ncid, files[fid].var[vid].fldid, name, &type); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_att): Error in getting type of attribute %s of field %s in file %s ", - name, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - switch(type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_get_att_double(files[fid].ncid, files[fid].var[vid].fldid, name, val); - break; - case NC_INT: - status = nc_get_att_int(files[fid].ncid, files[fid].var[vid].fldid, name, val); - break; - case NC_SHORT: - status = nc_get_att_short(files[fid].ncid, files[fid].var[vid].fldid, name, val); - break; - case NC_CHAR: - status = nc_get_att_text(files[fid].ncid, files[fid].var[vid].fldid, name, val); - break; - default: - sprintf(errmsg, "mpp_io(mpp_get_var_att): attribute %s of field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - name, files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_att): Error in getting value of attribute %s of variable %s from file %s", - name, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } -} - -/******************************************************************* - void mpp_get_var_att_double(int fid, int vid, const char *name, double *val) - get the attribute value of vid from file fid. - ******************************************************************/ -void mpp_get_var_att_double(int fid, int vid, const char *name, double *val) -{ - int status; - char errmsg[512]; - nc_type type; - short sval; - int ival; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_att): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - status = nc_inq_atttype(files[fid].ncid, files[fid].var[vid].fldid, name, &type); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_att): Error in getting type of attribute %s of field %s in file %s ", - name, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - switch(type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_get_att_double(files[fid].ncid, files[fid].var[vid].fldid, name, val); - break; - case NC_INT: - status = nc_get_att_int(files[fid].ncid, files[fid].var[vid].fldid, name, &ival); - *val = ival; - break; - case NC_SHORT: - status = nc_get_att_short(files[fid].ncid, files[fid].var[vid].fldid, name, &sval); - *val = sval; - break; - default: - sprintf(errmsg, "mpp_io(mpp_get_var_att): attribute %s of field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - name, files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_att): Error in getting value of attribute %s of variable %s from file %s", - name, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } -} - -/******************************************************************* - void mpp_get_global_att(int fid, const char *name, void *val) - get the global attribute from file fid. - ******************************************************************/ -void mpp_get_global_att(int fid, const char *name, void *val) -{ - int status; - char errmsg[512], attval[4096]; - nc_type type; - size_t attlen; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_global_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - status = nc_inq_atttype(files[fid].ncid, NC_GLOBAL, name, &type); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_global_att): Error in getting type of global attribute %s in file %s ", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - - - switch(type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_get_att_double(files[fid].ncid, NC_GLOBAL, name, val); - break; - case NC_INT: - status = nc_get_att_int(files[fid].ncid, NC_GLOBAL, name, val); - break; - case NC_SHORT: - status = nc_get_att_short(files[fid].ncid, NC_GLOBAL, name, val); - break; - case NC_CHAR: - status = nc_inq_attlen(files[fid].ncid, NC_GLOBAL, name, &attlen); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_global_att): Error in getting length of global attribute %s from file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - status = nc_get_att_text(files[fid].ncid, NC_GLOBAL, name, attval); - attval[attlen] = '\0'; - strncpy(val, attval, attlen+1); - break; - default: - sprintf(errmsg, "mpp_io(mpp_get_global_att): global attribute %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", name, files[fid].name ); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_global_att): Error in getting value of global attribute %s from file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - -} - -/******************************************************************** - int mpp_get_var_ndim(int fid, int vid) -********************************************************************/ -int mpp_get_var_ndim(int fid, int vid) -{ - int status, ndim; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_ndim): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_ndim): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - status = nc_inq_varndims(files[fid].ncid, files[fid].var[vid].fldid, &ndim); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_ndim): Error in getting ndims of var %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - return ndim; -} - -/******************************************************************** - nc_type mpp_get_var_type(int fid, int vid) - get var type -********************************************************************/ -nc_type mpp_get_var_type(int fid, int vid) -{ - char errmsg[512]; - - nc_type vartype; - int status; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_ndim): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_ndim): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - status = nc_inq_vartype(files[fid].ncid, files[fid].var[vid].fldid, &vartype); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_type): Error in getting type of var %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - return vartype; -} - - -/********************************************************************* -void mpp_get_var_dimname(int fid, int vid, int i, char *name) -For each dimension we are assuming there is a 1-d field have the same name as the dimension. -*********************************************************************/ -void mpp_get_var_dimname(int fid, int vid, int ind, char *name) -{ - int status, ncid, fldid, ndims, dims[4]; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_dimname): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_dimname): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - - status = nc_inq_varndims(ncid, fldid, &ndims); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var2D_dimname): Error in getting ndims of var %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - if(ind < 0 || ind >= ndims) mpp_error("mpp_io(mpp_get_var_dimname): invalid ind value, ind should be between 0 and ndim-1"); - - status = nc_inq_vardimid(ncid,fldid,dims); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var2D_dimname): Error in getting dimid of var %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - status = nc_inq_dimname(ncid, dims[ind], name); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var2D_dimname): Error in getting %d dimension name of var %s from file %s", - ind, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_get_var_dimname */ - - -/*************************************************************************** - char mpp_get_var_cart(int fid, int vid) - get the cart of the dimension variable - *************************************************************************/ -char mpp_get_var_cart(int fid, int vid) -{ - char cart; - int ncid, fldid, status; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_cart): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_cart): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - cart = 'N'; - - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - status = nc_get_att_text(ncid, fldid, "cartesian_axis", &cart); - if(status != NC_NOERR)status = nc_get_att_text(ncid, fldid, "axis", &cart); - if(status != NC_NOERR){ - sprintf(errmsg, "mpp_io(mpp_get_var_cart): Error in getting attribute cartesian_axis/axis of " - "dimension variable %s from file %s", files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - return cart; -} - -/*************************************************************************** - void mpp_get_var_bndname(int fid, int vid, char *bndname) - Get the bound name of dimension variable if it exist, otherwise the value will be 'none' - for time axis, the bounds may be 'climatology' - **************************************************************************/ -void mpp_get_var_bndname(int fid, int vid, char *bndname) -{ - int ncid, fldid, status; - char errmsg[512], name[32]; - size_t siz; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_cart): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_get_var_cart): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - strcpy(name, "climatology"); - status = nc_inq_attlen(ncid, fldid, name, &siz); - if(status != NC_NOERR){ - strcpy(name, "bounds"); - status = nc_inq_attlen(ncid, fldid, name, &siz); - } - if(status != NC_NOERR){ - strcpy(name, "edges"); - status = nc_inq_attlen(ncid, fldid, name, &siz); - } - if(status != NC_NOERR) { - strcpy(bndname, "none"); - } - else { - status = nc_get_att_text(ncid, fldid, name, bndname); - bndname[siz] = '\0'; - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_bndname): Error in getting attribute %s of " - "dimension variable %s from file %s", name, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - } -} - -/*************************************************************************** - int mpp_var_att_exist(int fid, int vid, const char *att) - check the field var has the attribute "att" or not. -***************************************************************************/ -int mpp_var_att_exist(int fid, int vid, const char *att) -{ - int status; - size_t attlen; - nc_type atttype; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_var_att_exist): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_var_att_exist): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - status = nc_inq_att(files[fid].ncid, files[fid].var[vid].fldid, att, &atttype, &attlen); - if(status == NC_NOERR) - return 1; - else - return 0; - -}; /* mpp_att_exist */ - -/*************************************************************************** - int mpp_global_att_exist(int fid, const char *att) - check has the global attribute "att" or not. -***************************************************************************/ -int mpp_global_att_exist(int fid, const char *att) -{ - int status; - size_t attlen; - nc_type atttype; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_global_att_exist): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - status = nc_inq_att(files[fid].ncid, NC_GLOBAL, att, &atttype, &attlen); - if(status == NC_NOERR) - return 1; - else - return 0; - -}; /* mpp_att_exist */ - - -/*******************************************************************************/ -/* */ -/* The following are routines to write out data */ -/* */ -/*******************************************************************************/ - -/******************************************************************** - int mpp_def_dim(int fid, char* name, int size) - define dimension. -********************************************************************/ -int mpp_def_dim(int fid, const char* name, int size) { - int dimid, status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return 0; - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_def_dim): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - status = nc_def_dim(files[fid].ncid, name, size, &dimid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_def_dim): Error in defining dimension %s of file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - return dimid; -} /* mpp_def_dim */ - -/******************************************************************** - int mpp_def_var(nt fid, const char* name, int type, int ndim, int *dims, int natts ... ) - define metadata of field. -********************************************************************/ -int mpp_def_var(int fid, const char* name, nc_type type, int ndim, const int *dims, int natts, ...) { - int fldid, status, i, vid, ncid; - va_list ap; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return 0; - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_def_var): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - ncid = files[fid].ncid; - status = nc_def_var(ncid, name, type, ndim, dims, &fldid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_def_var): Error in defining var %s of file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - vid = files[fid].nvar; - files[fid].nvar++; - if(files[fid].nvar > MAXVAR ) mpp_error("mpp_io(mpp_def_var): nvar is larger than MAXVAR, increase MAXVAR"); - files[fid].var[vid].fldid = fldid; - files[fid].var[vid].type = type; - strcpy(files[fid].var[vid].name, name); - - va_start(ap, natts); - for( i=0; i=nfiles) mpp_error("mpp_io(mpp_def_global_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - status = nc_put_att_text(files[fid].ncid, NC_GLOBAL, name, strlen(val), val); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_def_global_att): Error in put glboal attribute %s of file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_def_global_att */ - - -/********************************************************************* - void mpp_def_global_att_double(int fid, const char *name, const char *val) - write out double global attribute - ********************************************************************/ -void mpp_def_global_att_double(int fid, const char *name, size_t len, const double *val) -{ - size_t status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_def_global_att_double): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - status = nc_put_att_double(files[fid].ncid, NC_GLOBAL, name, NC_DOUBLE, len, val); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_def_global_att_double): Error in put glboal attribute %s of file %s", - name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_def_global_att_double */ - - -/********************************************************************** -void mpp_def_var_att(int fid, int vid, const char *attname, const char *attval) - define one field attribute -*********************************************************************/ -void mpp_def_var_att(int fid, int vid, const char *attname, const char *attval) -{ - int ncid, fldid, status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_def_var_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_def_var_att): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - status = nc_put_att_text(ncid,fldid,attname,strlen(attval),attval); - if(status != NC_NOERR ) { - sprintf(errmsg, "mpp_io(mpp_def_var_att): Error in put attribute %s of var %s of file %s", - attname, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -} /* mpp_def_var_att */ - - - -/********************************************************************** -void mpp_def_var_att_double(int fid, int vid, const char *attname, double attval) - define one field double attribute -*********************************************************************/ -void mpp_def_var_att_double(int fid, int vid, const char *attname, double attval) -{ - int ncid, fldid, status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_def_var_att): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_def_var_att): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - status = nc_put_att_double(ncid,fldid,attname,NC_DOUBLE,1,&attval); - if(status != NC_NOERR ) { - sprintf(errmsg, "mpp_io(mpp_def_var_att_double): Error in put attribute %s of var %s of file %s", - attname, files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -} /* mpp_def_var_att_double */ - - - -/********************************************************************** - void mpp_copy_var_att(fid_in, fid_out) - copy all the field attribute from infile to outfile -**********************************************************************/ -void mpp_copy_var_att(int fid_in, int vid_in, int fid_out, int vid_out) -{ - int natt, status, i, ncid_in, ncid_out, fldid_in, fldid_out; - char name[256]; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid_in<0 || fid_in >=nfiles) mpp_error("mpp_io(mpp_copy_var_att): invalid fid_in number, fid should be " - "a nonnegative integer that less than nfiles"); - if(fid_out<0 || fid_out >=nfiles) mpp_error("mpp_io(mpp_copy_var_att): invalid fid_out number, fid should be " - "a nonnegative integer that less than nfiles"); - - ncid_in = files[fid_in].ncid; - ncid_out = files[fid_out].ncid; - fldid_in = files[fid_in].var[vid_in].fldid; - fldid_out = files[fid_out].var[vid_out].fldid; - - status = nc_inq_varnatts(ncid_in, fldid_in, &natt); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_copy_var_att): Error in inquiring natts of var %s of file %s", - files[fid_in].var[vid_in].name, files[fid_in].name ); - netcdf_error(errmsg, status); - } - - for(i=0; i=nfiles) mpp_error("mpp_io(mpp_get_var_natts): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - status = nc_inq_varnatts(ncid, fldid, &natts); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_natts): Error in inquiring natts of var %s of file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - - return natts; - -} - -void mpp_get_var_attname(int fid, int vid, int i, char *name) -{ - int ncid, fldid, status; - char errmsg[512]; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_get_var_attname): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - ncid = files[fid].ncid; - fldid = files[fid].var[vid].fldid; - - status = nc_inq_attname(ncid, fldid, i, name); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_get_var_attname): Error in inquiring %d attname of var %s of file %s", i, - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -} - -void mpp_copy_att_by_name(int fid_in, int vid_in, int fid_out, int vid_out, const char *name) -{ - - int status, ncid_in, ncid_out, fldid_in, fldid_out; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid_in<0 || fid_in >=nfiles) mpp_error("mpp_io(mpp_copy_var_att): invalid fid_in number, fid should be " - "a nonnegative integer that less than nfiles"); - if(fid_out<0 || fid_out >=nfiles) mpp_error("mpp_io(mpp_copy_var_att): invalid fid_out number, fid should be " - "a nonnegative integer that less than nfiles"); - - ncid_in = files[fid_in].ncid; - ncid_out = files[fid_out].ncid; - fldid_in = files[fid_in].var[vid_in].fldid; - fldid_out = files[fid_out].var[vid_out].fldid; - - status = nc_copy_att(ncid_in, fldid_in, name, ncid_out, fldid_out); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_copy_att_by_name): Error in copying att %s of var %s of file %s", name, - files[fid_in].var[vid_in].name, files[fid_in].name ); - netcdf_error(errmsg, status); - } - -} - - -/********************************************************************** - void mpp_copy_global_att(fid_in, fid_out) - copy all the global attribute from infile to outfile -**********************************************************************/ -void mpp_copy_global_att(int fid_in, int fid_out) -{ - int natt, status, i, ncid_in, ncid_out; - char name[256], errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid_in<0 || fid_in >=nfiles) mpp_error("mpp_io(mpp_copy_global_att): invalid fid_in number, fid should be " - "a nonnegative integer that less than nfiles"); - if(fid_out<0 || fid_out >=nfiles) mpp_error("mpp_io(mpp_copy_global_att): invalid fid_out number, fid should be " - "a nonnegative integer that less than nfiles"); - ncid_in = files[fid_in].ncid; - ncid_out = files[fid_out].ncid; - - status = nc_inq_varnatts(ncid_in, NC_GLOBAL, &natt); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_copy_global_att): Error in inquiring natts(global) of file %s", - files[fid_in].name ); - netcdf_error(errmsg, status); - } - - for(i=0; i=nfiles) mpp_error("mpp_io(mpp_put_var_value): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_put_var_value): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - switch(files[fid].var[vid].type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_put_var_double(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_INT: - status = nc_put_var_int(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_SHORT: - status = nc_put_var_short(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - case NC_CHAR: - status = nc_put_var_text(files[fid].ncid, files[fid].var[vid].fldid, data); - break; - default: - sprintf(errmsg, "mpp_io(mpp_put_var_value): field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_put_var_value): Error in putting value of variable %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_put_var_value*/ - -/********************************************************************* - void mpp_put_var_value_block(int fid, int vid, const size_t *start, const size_t *nread, void *data) - read part of var data, the part is defined by start and nread. -*********************************************************************/ -void mpp_put_var_value_block(int fid, int vid, const size_t *start, const size_t *nwrite, const void *data) -{ - int status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_put_var_value_block): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(vid<0 || vid >=files[fid].nvar) mpp_error("mpp_io(mpp_put_var_value_block): invalid vid number, vid should be " - "a nonnegative integer that less than nvar"); - - switch(files[fid].var[vid].type) { - case NC_DOUBLE:case NC_FLOAT: - status = nc_put_vara_double(files[fid].ncid, files[fid].var[vid].fldid, start, nwrite, data); - break; - case NC_INT: - status = nc_put_vara_int(files[fid].ncid, files[fid].var[vid].fldid, start, nwrite, data); - break; - case NC_SHORT: - status = nc_put_vara_short(files[fid].ncid, files[fid].var[vid].fldid, start, nwrite, data); - break; - case NC_CHAR: - status = nc_put_vara_text(files[fid].ncid, files[fid].var[vid].fldid, start, nwrite, data); - break; - default: - sprintf(errmsg, "mpp_io(mpp_put_var_value_block): field %s in file %s has an invalid type, " - "the type should be NC_DOUBLE, NC_FLOAT, NC_INT, NC_SHORT or NC_CHAR", - files[fid].var[vid].name, files[fid].name ); - mpp_error(errmsg); - } - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_put_var_value_block): Error in putting value of variable %s from file %s", - files[fid].var[vid].name, files[fid].name ); - netcdf_error(errmsg, status); - } - -}; /* mpp_put_var_value_block */ - -/********************************************************************* - void mpp_redef(int fid) - redef the meta data of netcdf file with fid. - *******************************************************************/ -void mpp_redef(int fid) { - int status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_redef): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - status = nc_redef(files[fid].ncid); - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_redef): Error in redef the meta data of file %s", files[fid].name ); - netcdf_error(errmsg, status); - } -} /* mpp_redef */ - -/********************************************************************* - void mpp_end_def(int ncid) - end the definition of netcdf file with ncid. - *******************************************************************/ -void mpp_end_def(int fid) { - int status; - char errmsg[512]; - - if( mpp_pe() != mpp_root_pe() ) return; - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_end_def): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - if(HEADER_BUFFER_VALUE>0) - status = nc__enddef(files[fid].ncid, HEADER_BUFFER_VALUE, 4, 0, 4); - else - status = nc_enddef(files[fid].ncid); - - if(status != NC_NOERR) { - sprintf(errmsg, "mpp_io(mpp_end_def): Error in end definition of file %s", files[fid].name ); - netcdf_error(errmsg, status); - } -} /* mpp_end_def */ - -/******************************************************************************* - int mpp_file_exist(const char *file) - check to see if file exist or not. -*******************************************************************************/ -int mpp_file_exist(const char *file) -{ - int status, ncid; - - status = nc_open(file,NC_NOWRITE, &ncid); - if(status == NC_NOERR) { - status = nc_close(ncid); - if(status != NC_NOERR) netcdf_error("mpp_file_exist(mpp_io):in closing file", status); - return 1; - } - else - return 0; -}; - -int mpp_field_exist(const char *file, const char *field) -{ - int fid, status, varid; - - fid = mpp_open(file, MPP_READ); - status = nc_inq_varid(files[fid].ncid, field, &varid); - mpp_close(fid); - - if(status == NC_NOERR) - return 1; - else - return 0; - -} - -int mpp_dim_exist(int fid, const char *dimname) -{ - int status, dimid; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_dim_exist): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - status = nc_inq_dimid( files[fid].ncid, dimname, &dimid); - - if(status == NC_NOERR) - return 1; - else - return 0; - -} - - -int mpp_var_exist(int fid, const char *field) -{ - int status, varid; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(mpp_var_exist): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - status = nc_inq_varid(files[fid].ncid, field, &varid); - - if(status == NC_NOERR) - return 1; - else - return 0; - -} - - -int get_great_circle_algorithm(int fid) -{ - char attval[256]; - char errmsg[512]; - int great_circle_algorithm = 0; - - if(fid<0 || fid >=nfiles) mpp_error("mpp_io(get_great_circle_algorithm): invalid fid number, fid should be " - "a nonnegative integer that less than nfiles"); - - if(mpp_global_att_exist(fid, "great_circle_algorithm")) { - mpp_get_global_att(fid, "great_circle_algorithm", attval); - - if(!strcmp(attval, "TRUE")) - great_circle_algorithm = 1; - else if(!strcmp(attval, "FALSE")) - great_circle_algorithm = 0; - else { - sprintf(errmsg, "mpp_io: global atribute 'great_circle_algorithm' " - "in file %s should have value 'TRUE' or 'FALSE'", files[fid].name); - mpp_error(errmsg); - } - } - - return great_circle_algorithm; -} - diff --git a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.h b/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.h deleted file mode 100644 index b163abb5ed..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/shared/mpp_io.h +++ /dev/null @@ -1,63 +0,0 @@ -/**************************************************************** - mpp_io.h - This headers defines interface to read and write netcdf file. All the data -will be written out from root pe. - - contact: Zhi.Liang@noaa.gov - -****************************************************************/ -#ifndef MPP_IO_H_ -#define MPP_IO_H_ -#include - -#define MPP_WRITE 100 -#define MPP_READ 200 -#define MPP_APPEND 300 -#define MPP_INT NC_INT -#define MPP_DOUBLE NC_DOUBLE -#define MPP_CHAR NC_CHAR -#define HEADER_BUFFER_VALUE (16384) -#define MPP_FILL_INT NC_FILL_INT -#define MPP_FILL_DOUBLE NC_FILL_DOUBLE - -int mpp_open(const char *file, int action); -void mpp_close(int ncid); -int mpp_get_nvars(int fid); -void mpp_get_varname(int fid, int varid, char *name); -int mpp_get_varid(int fid, const char *varname); -int mpp_get_dimid(int fid, const char *dimname); -int mpp_get_dimlen(int fid, const char *name); -int mpp_get_var_natts(int fid, int vid); -void mpp_get_var_attname(int fid, int vid, int i, char *name); -void mpp_copy_att_by_name(int fid_in, int vid_in, int fid_out, int vid_out, const char *name); -void mpp_get_var_value(int fid, int vid, void *data); -void mpp_get_var_value_block(int fid, int vid, const size_t *start, const size_t *nread, void *data); -void mpp_get_var_att(int fid, int vid, const char *name, void *val); -void mpp_get_var_att_double(int fid, int vid, const char *name, double *val); -void mpp_get_global_att(int fid, const char *name, void *val); -int mpp_get_var_ndim(int fid, int vid); -nc_type mpp_get_var_type(int fid, int vid); -char mpp_get_var_cart(int fid, int vid); -void mpp_get_var_dimname(int fid, int vid, int ind, char *name); -char mpp_get_dim_cart(int fid, const char *name); -void mpp_get_var_bndname(int fid, int vid, char *bndname); -int mpp_var_att_exist(int fid, int vid, const char *att); -int mpp_global_att_exist(int fid, const char *att); -int mpp_def_dim(int fid, const char* name, int size); -int mpp_def_var(int fid, const char* name, nc_type type, int ndim, const int *dims, int natts, ...); -void mpp_def_global_att(int fid, const char *name, const char *val); -void mpp_def_global_att_double(int fid, const char *name, size_t len, const double *val); -void mpp_def_var_att(int fid, int vid, const char *attname, const char *attval); -void mpp_def_var_att_double(int fid, int vid, const char *attname, double attval); -void mpp_copy_var_att(int fid_in, int vid_in, int fid_out, int vid_out); -void mpp_copy_global_att(int fid_in, int fid_out); -void mpp_put_var_value(int fid, int vid, const void* data); -void mpp_put_var_value_block(int fid, int vid, const size_t *start, const size_t *nread, const void *data); -void mpp_end_def(int fid); -void mpp_redef(int fid); -int mpp_file_exist(const char *file); -int mpp_field_exist(const char *file, const char *field); -int mpp_var_exist(int fid, const char *field); -int mpp_dim_exist(int fid, const char *dimname); -int get_great_circle_algorithm(int fid); -#endif diff --git a/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.c b/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.c deleted file mode 100644 index 58c9a30791..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.c +++ /dev/null @@ -1,751 +0,0 @@ -#include -#include -#include -#include -#include "constant.h" -#include "mosaic_util.h" -#include "read_mosaic.h" -#include "tool_util.h" -#include "interp.h" -#include "mpp.h" -#include "mpp_io.h" -#define D2R (M_PI/180.) -#define R2D (180./M_PI) - -const double SMALL = 1.0e-4; -double distant(double a, double b, double met1, double met2); -double bp_lam(double x, double y, double bpeq, double rp); -double bp_phi(double x, double y, double bpsp, double bpnp); -double lon_in_range(double lon, double lon_strt); -void vtx_insert(double *x, double *y, int *n, int n_ins); -void vtx_delete(double *x, double *y, int *n, int n_del); -int lon_fix(double *x, double *y, int n_in, double tlon); - -int round_to_nearest_int(double r) -{ - - return (r > 0.0) ? floor(r + 0.5) : ceil(r - 0.5); -} - -/*************************************************************************** - void get_file_path(const char *file, char *dir) - get the directory where file is located. The dir will be the complate path - before the last "/". If no "/" exist in file, the path will be current ".". -***************************************************************************/ -void get_file_path(const char *file, char *dir) -{ - int len; - char *strptr = NULL; - - /* get the diretory */ - - strptr = strrchr(file, '/'); - if(strptr) { - len = strptr - file; - strncpy(dir, file, len); - } - else { - len = 1; - strcpy(dir, "."); - } - dir[len] = 0; - -}; /* get_file_path */ - -int get_int_entry(char *line, int* value) -{ - char* pch; - int num; - - pch = strtok(line, ", "); - num = 0; - while( pch != NULL) { - value[num++] = atoi(pch); - pch = strtok(NULL, ", "); - } - return num; - -}; - -int get_double_entry(char *line, double *value) -{ - char* pch; - int num; - - pch = strtok(line, ", "); - num = 0; - while( pch != NULL) { - value[num++] = atof(pch); - pch = strtok(NULL, ", "); - } - return num; -}; - -/********************************************************************* - double spherical_dist(double x1, double y1, double x2, double y2) - return distance between spherical grid on the earth -*********************************************************************/ - -double spherical_dist(double x1, double y1, double x2, double y2) -{ - double dist = 0.0; - double h1, h2; - - if(x1 == x2) { - h1 = RADIUS; - h2 = RADIUS; - dist = distant(y1,y2,h1,h2); - } - else if(y1 == y2) { - h1 = RADIUS * cos(y1*D2R); - h2 = RADIUS * cos(y2*D2R); - dist = distant(x1,x2,h1,h2); - } - else - mpp_error("tool_till: This is not rectangular grid"); - - return dist; -}; /* spherical_dist */ - - -/********************************************************************* - void double bipolar_dist(double x1, double y1, double x2, double y2) - return distance of bipolar grids -*********************************************************************/ -double bipolar_dist(double x1, double y1, double x2, double y2, - double bpeq, double bpsp, double bpnp, double rp ) -{ - double dist, x[2],y[2], bp_lon[2], bp_lat[2], metric[2]; - double h1[2], h2[2], chic; - int n; - - x[0] = x1; x[1] = x2; - y[0] = y1; y[1] = y2; - - /*--- get the bipolar grid and metric term ----------------------------*/ - for(n=0; n<2; n++){ - bp_lon[n] = bp_lam(x[n],y[n],bpeq, rp); /* longitude (degrees) in bipolar grid system */ - bp_lat[n] = bp_phi(x[n],y[n],bpsp, bpnp); /* latitude (degrees) in bipolar grid system */ - h1[n] = RADIUS*cos(bp_lat[n]*D2R); - h2[n] = RADIUS; - metric[n] = 1.0; - if (fabs(y[n]-90.0) < SMALL || fabs(bp_lon[n]*D2R) >= SMALL - || fabs(bp_lat[n]*D2R) >= SMALL) { - chic = acos(cos(bp_lon[n]*D2R)*cos(bp_lat[n]*D2R)); /* eqn. 6 */ - metric[n] = rp*(1/pow(cos(chic/2),2))/(1+(pow(rp,2))*(pow(tan(chic/2),2)));/* eq 3 */ - } - } - - /*--- then calculate the distance -------------------------------------*/ - if(x1 == x2) - dist = distant(bp_lon[0],bp_lon[1],metric[0]*h1[0],metric[1]*h1[1]); - else if(y1 == y2) - dist = distant(bp_lat[0],bp_lat[1],metric[0]*h2[0],metric[1]*h2[1]); - else - mpp_error("tool_util: This tripolar grid not transformed from rectangular grid"); - - return dist; - -}; /* bipolar_dist */ - -/********************************************************************* - double distant(double a, double b, double met1, double met2) - return distant on the earth -*********************************************************************/ -double distant(double a, double b, double met1, double met2) -{ - return fabs(a-b)*D2R*(met1+met2)/2. ; -}; /* distant */ - -/********************************************************************* - double spherical_area(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4 ) - rectangular grid box area - ********************************************************************/ -double spherical_area(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4 ) -{ - double area, dx, lat1, lat2, x[4],y[4]; - int i, ip; - - x[0] = x1; y[0] = y1; - x[1] = x2; y[1] = y2; - x[2] = x3; y[2] = y3; - x[3] = x4; y[3] = y4; - - area = 0.0; - - for(i=0; i<4; i++) { - ip = i+1; - if(ip ==4) ip = 0; - dx = (x[ip] - x[i])*D2R; - lat1 = y[ip]*D2R; - lat2 = y[i]*D2R; - if(dx==0.0) continue; - if(dx > M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - - if (lat1 == lat2) /* cheap area calculation along latitude */ - area = area - dx*sin(lat1); - else - area = area - dx*(sin(lat1)+sin(lat2))/2; /* TRAPEZOID_RULE */ - } - - area = area * RADIUS * RADIUS; - - return area; -}; /* spherical_area */ - -/********************************************************************* - double bipolar_area(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4 ) - bipolar grid area - ********************************************************************/ -double bipolar_area(double x1, double y1, double x2, double y2, - double x3, double y3, double x4, double y4 ) -{ - double area, dx, lat1, lat2, x[8],y[8]; - int i, ip, n; - - x[0] = x1; y[0] = y1; - x[1] = x2; y[1] = y2; - x[2] = x3; y[2] = y3; - x[3] = x4; y[3] = y4; - - - /*--- first fix the longitude at the pole -----------------------------*/ - n = lon_fix(x, y, 4, 180.); - - /*--- calculate the area ---------------------------------------------- */ - area = 0.0; - for(i=0; i M_PI) dx = dx - 2.0*M_PI; - if(dx < -M_PI) dx = dx + 2.0*M_PI; - - if (lat1 == lat2) /* cheap area calculation along latitude */ - area = area - dx*sin(lat1); - else - area = area - dx*(sin(lat1)+sin(lat2))/2; /* TRAPEZOID_RULE */ - } - - area = area * RADIUS * RADIUS; - - return area; -}; /* bipolar_area */ - -/********************************************************************* - double lat_dist(double x1, double x2) - distance (in degrees) between points on lat. circle - ********************************************************************/ - double lat_dist(double x1, double x2) -{ - return min(fmod(x1-x2+720,360.),fmod(x2-x1+720,360.)); -}; - - -/********************************************************************* - double bp_lam(double x, double y, double bpeq) - find bipolar grid longitude given geo. coordinates - ********************************************************************/ - double bp_lam(double x, double y, double bpeq, double rp) -{ - double bp_lam; - - /* bp_lam = ((90-y)/(90-lat_join))*90 */ - /* invert eqn. 5 with phic=0 to place point at specified geo. lat */ - bp_lam = 2.*atan(tan((0.5*M_PI-y*D2R)/2)/rp)*R2D; - if (lat_dist(x,bpeq)<90.) bp_lam = -bp_lam; - return bp_lam; -}; /* bp_lam */ - -/********************************************************************* - double bp_phi(double x, double y, double bpsp, double bpnp) - find bipolar grid latitude given geo. coordinates - ********************************************************************/ - double bp_phi(double x, double y, double bpsp, double bpnp) -{ - double bp_phi; - - if (lat_dist(x,bpsp)<90.) - return (-90+lat_dist(x,bpsp)); - else - return ( 90-lat_dist(x,bpnp)); -}; /* bp_phi */ - - -/********************************************************************* - void tp_trans(double& lon, double& lat, double lon_ref) - calculate tripolar grid - ********************************************************************/ -void tp_trans(double *lon, double *lat, double lon_ref, double lon_start, - double lam0, double bpeq, double bpsp, double bpnp, double rp ) -{ - double lamc, phic, lams, chic, phis; - - lamc = bp_lam(*lon, *lat, bpeq, rp )*D2R; - phic = bp_phi(*lon, *lat, bpsp, bpnp)*D2R; - - if (fabs(*lat-90.) < SMALL) { - if (phic > 0) - *lon=lon_in_range(lon_start,lon_ref); - else - *lon=lon_start+180.; - chic = acos(cos(lamc)*cos(phic)); /* eqn. 6 */ - phis = M_PI*0.5-2*atan(rp*tan(chic/2)); /* eqn. 5 */ - *lat = phis*R2D; - return; - } - - if (fabs(lamc) < SMALL && fabs(phic) < SMALL) { - *lat=90.; - *lon=lon_ref; - } - else { - lams = fmod(lam0+M_PI+M_PI/2-atan2(sin(lamc),tan(phic)),2*M_PI); /* eqn. 5 */ - chic = acos(cos(lamc)*cos(phic)); /* eqn. 6 */ - phis = M_PI*0.5-2*atan(rp*tan(chic/2)); /* eqn. 5 */ - *lon = lams*R2D; - *lon = lon_in_range(*lon,lon_ref); - *lat = phis*R2D; - } -}; /* tp_trans */ - -/********************************************************************* - double Lon_in_range(double lon, double lon_strt) - Returns lon_strt <= longitude <= lon_strt+360 - ********************************************************************/ -double lon_in_range(double lon, double lon_strt) -{ - double lon_in_range, lon_end; - - lon_in_range = lon; - lon_end = lon_strt+360.; - - if (fabs(lon_in_range - lon_strt) < SMALL) - lon_in_range = lon_strt; - else if (fabs(lon_in_range - lon_end) < SMALL) - lon_in_range = lon_strt; - else { - while(1) { - if (lon_in_range < lon_strt) - lon_in_range = lon_in_range + 360.; - else if (lon_in_range > lon_end) - lon_in_range = lon_in_range - 360.; - else - break; - } - } - return lon_in_range; -}; /* lon_in_range */ - - -/********************************************************************* - int lon_fix(double *x, double *y, int n_in, double tlon) - fix longitude at pole. - ********************************************************************/ -int lon_fix(double *x, double *y, int n_in, double tlon) -{ - int i, ip, im, n_out; - double x_sum, dx; - - n_out = n_in; - i = 0; - while( i < n_out) { - if(fabs(y[i]) >= 90.-SMALL) { - im = i - 1; - if(im < 0) im = im + n_out; - ip = i + 1; - if(ip >= n_out) ip = ip - n_out; - /*--- all pole points must be paired ---------------------------- */ - if(y[im] == y[i] && y[ip] == y[i] ) { - vtx_delete(x,y, &n_out, i); - i = i - 1; - } - else if(y[im] != y[i] && y[ip] != y[i] ) { - vtx_insert(x,y,&n_out,i); - i = i + 1; - } - } - i = i + 1; - } - - /*--- first of pole pair has longitude of previous vertex ------------- - --- second of pole pair has longitude of subsequent vertex ---------- */ - for(i=0;i= 90.-SMALL) { - im= i - 1; - if(im < 0) im = im + n_out; - ip = i + 1; - if(ip >= n_out) ip = ip - n_out; - - if(y[im] != y[i]) x[i] = x[im]; - if(y[ip] != y[i]) x[i] = x[ip]; - } - } - - if(n_out == 0) return 0; - - x_sum = x[1]; - for(i=1;i< n_out;i++){ - dx = x[i] - x[i-1]; - if(dx < -180) - dx = dx + 360; - else if (dx > 180) - dx = dx - 360; - - x[i] = x[i-1] + dx; - x_sum = x_sum + x[i]; - } - - dx = x_sum/(n_out) - tlon; - if (dx < -180.) - for(i=0;i 180.) - for(i=0;i=n_ins; i--){ - x[i+1] = x[i]; - y[i+1] = y[i]; - } - (*n)++; - -}; /* vtx_insert */ - - -/*---------------------------------------------------------------------- - void vect_cross(e, p1, p2) - Perform cross products of 3D vectors: e = P1 X P2 - -------------------------------------------------------------------*/ - -/******************************************************************************** - void compute_grid_bound(int nb, const couble *bnds, const int *npts, int *grid_size, const char *center_cell) - compute the 1-D grid location. This algorithm is developed by Russell Fiedler -********************************************************************************/ -double* compute_grid_bound(int nb, const double *bnds, const int *npts, int *grid_size, const char *center) -{ - int refine, i, n, np; - double *grid=NULL, *tmp=NULL; - double *grid1=NULL, *grid2=NULL; - - if(!strcmp(center, "none") ) - refine = 1; - else if(!strcmp(center, "t_cell") || !strcmp(center, "c_cell") ) - refine = 2; - else - mpp_error("tool_util: center should be 'none', 'c_cell' or 't_cell' "); - - grid1 = (double *)malloc(nb*sizeof(double)); - grid1[0] = 1; - n = 0; - for(i=1; i 2 "); - - /* when center is 't_cell', stretch must be 1 */ - if( !strcmp(center, "t_cell") && stretch != 1 ) - mpp_error("tool_util(ompute_grid_bound_legacy): stretch must be 1 when center = 't_cell' "); - - num = 0; - for(l=0; l tol ) - mpp_error("tool_util(ompute_grid_bound_legacy): non integral number of cells in some subregion for 't_cell'"); - - for(i=0; i maxlen ) mpp_error("tool_util(ompute_grid_bound_legacy): maxlen exceeded, increase size of MAX_GRID_LENGTH"); - delta[num-1] = del; - } - } - else { - /* Calculate resolution of U cells: "deltau" - U grid points will be centered in these cells - n = number of T cells fitting within the region boundaries - note: "sum" initially discounts half of the U cells widths - at the boundaries - */ - - sum = 0.5*dbnds[l] - 0.5*dbnds[l+1]; - n = 0; - i = 0; - while (i < 100000 ) { - i++; - del = avg_res - 0.5*chg_res*cos((M_PI/ncells)*i); - if (sum + del <= wid*(1.0 + tol)) { - sum += del; - num++; - if( num > maxlen ) mpp_error("tool_util(compute_grid_bound_legacy): maxlen exceeded, increase size of MAX_GRID_LENGTH"); - delta[num-1] = del; - n++; - } - else - break; - } - if( stretch == 1 || l != nb-1 ) { - if( fabs(an-n) > tol ) { - if(mpp_pe() == mpp_root_pe()) { - printf("==>Error: non integral number of cells in region #%d, average resolution within " - "region = %f14.7, this implies %f14.7 grid cells, Change grid specifications dbnds. " - "Here is some help \n", l, avg_res, an ); - } - mpp_error("tool_util(ompute_grid_bound_legacy): non integral number of cells in some subregion for 'c_cell'"); - } - } - } - } - - npts = refine*num + 1; - *grid_size = refine*num; - grid = (double *)malloc(npts*sizeof(double)); - - grid[0] = bnds[0]; - if( !strcmp(center, "t_cell") ) { - for(i = 0; iError from get_boundary_type: ntiles is not 1, contact developer"); - - if(mpp_field_exist(grid_file, "contacts") ) { - ncontacts = read_mosaic_ncontacts(grid_file); - if(ncontacts < 1) { - sprintf(errmsg, "==>Error from get_boundary_type: number of contacts " - "number of contacts should be larger than 0 when field contacts exist in file %s",grid_file ); - mpp_error(errmsg); - } - if(ncontacts > 2) { - sprintf(errmsg, "==>Error from get_boundary_type: " - "number of contacts should be no larger than 2 in file %s",grid_file ); - mpp_error(errmsg); - } - read_mosaic_contact( grid_file, tile1, tile2, istart1, iend1, jstart1, jend1, - istart2, iend2, jstart2, jend2 ); - - for(m=0; mError from get_boundary_type: only cyclic condition is allowed for x-boundary"); - *cyclic_x = 1; - } - else if( jstart1[m] == jend1[m] ) { /* y-direction contact, cyclic or folded-north */ - if(jstart2[m] != jend2[m] ) - mpp_error("==>Error from get_boundary_type: only cyclic/folded-north condition is allowed for y-boundary"); - if( jstart1[m] == jstart2[m] ) /* folded north */ - *is_tripolar = 1; - else - *cyclic_y = 1; - } - else - mpp_error("==>Error from get_boundary_type: invalid boundary contact"); - } - } - } - else if(grid_version == VERSION_1) { - fid = mpp_open(grid_file, MPP_READ); - mpp_get_global_att(fid, "x_boundary_type", attvalue); - if( ! strcmp(attvalue, "cyclic") ) *cyclic_x = 1; - mpp_get_global_att(fid, "y_boundary_type", attvalue); - if( ! strcmp(attvalue, "cyclic") ) - *cyclic_y = 1; - else if(! strcmp(attvalue, "fold_north_edge") ) - *is_tripolar = 1; - mpp_close(fid); - } - else { - mpp_error("==>Error from get_boundary_type: grid_version should be VERSION_1 or VERSION_2"); - } - - if(mpp_pe() == mpp_root_pe()) { - if(*cyclic_x) - printf("\n==>NOTE from get_boundary_type: x_boundary_type is cyclic\n"); - else - printf("\n==>NOTE from get_boundary_type: x_boundary_type is solid_walls\n"); - - if(*cyclic_y) - printf("\n==>NOTE from get_boundary_type: y_boundary_type is cyclic\n"); - else if(*is_tripolar) - printf("\n==>NOTE from get_boundary_type: y_boundary_type is fold_north_edge\n"); - else - printf("\n==>NOTE from get_boundary_type: y_boundary_type is solid_walls\n"); - } - -}; /* get_boundary_type */ diff --git a/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.h b/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.h deleted file mode 100644 index ee8324a332..0000000000 --- a/release/v0/sorc/fre-nctools.fd/tools/shared/tool_util.h +++ /dev/null @@ -1,27 +0,0 @@ -/*********************************************************************** - tool_util.h - This header file provide some utilities routine that will be used in many tools. - - contact: Zhi.Liang@noaa.gov -***********************************************************************/ -#ifndef TOOL_UTIL_H_ -#define TOOL_UTIL_H_ -#define MAX_GRID_LENGTH (10000) -#define VERSION_1 1 -#define VERSION_2 2 -#define VERSION_3 3 -int round_to_nearest_int(double r); -void get_file_path(const char *file, char *dir); -int get_int_entry(char *line, int *value); -int get_double_entry(char *line, double *value); -double spherical_dist(double x1, double y1, double x2, double y2); -double spherical_area(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4 ); -double bipolar_dist(double x1, double y1, double x2, double y2, double bpeq, double bpsp, double bpnp, double rp ); -double bipolar_area(double x1, double y1, double x2, double y2, double x3, double y3, double x4, double y4 ); -void tp_trans(double *lon, double *lat, double lon_ref, double lon_start, - double lam0, double bpeq, double bpsp, double bpnp, double rp ); -double* compute_grid_bound(int nb, const double *bnds, const int *npts, int *grid_size, const char *center); -double* compute_grid_bound_legacy(int nb, const double *bnds, const double *dbnds, double stretch, int *grid_size, const char *center); -int get_legacy_grid_size(int nb, const double *bnds, const double *dbnds); -void get_boundary_type( const char *grid_file, int grid_version, int *cyclic_x, int *cyclic_y, int *is_tripolar ); -#endif diff --git a/release/v0/ush/fv3gfs_remap.sh b/release/v0/ush/fv3gfs_remap.sh deleted file mode 100755 index 6504558f22..0000000000 --- a/release/v0/ush/fv3gfs_remap.sh +++ /dev/null @@ -1,120 +0,0 @@ -#!/bin/ksh -set -ax - -#-------------------------------------- -#-- remap FV3 6 tiles to global array -#-- Fanglin Yang, October 2016 -#-------------------------------------- - -export CDATE=${CDATE:-"2016100300"} -export CASE=${CASE:-"C192"} # C48 C96 C192 C384 C768 C1152 C3072 -export GG=${master_grid:-"0p25deg"} # 1deg 0p5deg 0p25deg 0p125deg - -pwd=$(pwd) -export DATA=${DATA:-$pwd} -export NWPROD=${NWPROD:-$pwd} -export BASE_DATA=${BASE_DATA:-$NWPROD} -export REMAPEXE=${REMAPEXE:-$BASE_DATA/exec/fregrid_parallel} -export IPD4=${IPD4:-NO} - -cycn=`echo $CDATE | cut -c 9-10` -export TCYC=${TCYC:-".t${cycn}z."} -export CDUMP=${CDUMP:-gfs} -export PREFIX=${PREFIX:-${CDUMP}${TCYC}} - -#-------------------------------------------------- -export FIX_FV3=${FIX_FV3:-$BASE_DATA/fix/fix_fv3} -export grid_loc=$FIX_FV3/$CASE/${CASE}_mosaic.nc -export weight_file=$FIX_FV3/$CASE/remap_weights_${CASE}_${GG}.nc - -export REMAP_LAUNCHER=${REMAP_LAUNCHER:-${APRUN:-""}} -export NTHREADS_REMAP=${NTHREADS_REMAP:-${NTHREADS:-1}} - -#-------------------------------------------------- -if [ $GG = 1deg ]; then export nlon=360 ; export nlat=180 ; fi -if [ $GG = 0p5deg ]; then export nlon=720 ; export nlat=360 ; fi -if [ $GG = 0p25deg ]; then export nlon=1440 ; export nlat=720 ; fi -if [ $GG = 0p125deg ]; then export nlon=2880 ; export nlat=1440 ; fi - -#-------------------------------------------------- -hgt=h; if [ $IPD4 = YES ]; then hgt=z; fi - -#--for non-hydrostatic case -export atmos_4xdaily_nh="slp, vort850, vort200,\ - us, u1000, u850, u700, u500, u200, u100, u50, u10,\ - vs, v1000, v850, v700, v500, v200, v100, v50, v10,\ - tm, t1000, t850, t700, t500, t200, t100, t50, t10,\ - ${hgt}1000, ${hgt}850, ${hgt}700, ${hgt}500, ${hgt}200, ${hgt}100, ${hgt}50, ${hgt}10,\ - q1000, q850, q700, q500, q200, q100, q50, q10,\ - rh1000, rh850, rh700, rh500, rh200,\ - omg1000, omg850, omg700, omg500, omg200, omg100, omg50, omg10,\ - w700,w850,w500, w200" - -#--for hydrostatic case -export atmos_4xdaily_hy="slp, vort850, vort200,\ - us, u1000, u850, u700, u500, u200, u100, u50, u10,\ - vs, v1000, v850, v700, v500, v200, v100, v50, v10,\ - tm, t1000, t850, t700, t500, t200, t100, t50, t10,\ - ${hgt}1000, ${hgt}850, ${hgt}700, ${hgt}500, ${hgt}200, ${hgt}100, ${hgt}50, ${hgt}10,\ - q1000, q850, q700, q500, q200, q100, q50, q10,\ - rh1000, rh850, rh700, rh500, rh200,\ - omg1000, omg850, omg700, omg500, omg200, omg100, omg50, omg10,\ - w700" - -export nggps2d_nh="ALBDOsfc, CPRATsfc, PRATEsfc, DLWRFsfc, ULWRFsfc,\ - DSWRFsfc, USWRFsfc, DSWRFtoa, USWRFtoa, ULWRFtoa,\ - GFLUXsfc, HGTsfc, HPBLsfc, ICECsfc, SLMSKsfc,\ - LHTFLsfc, SHTFLsfc, PRESsfc, PWATclm, SOILM,\ - SOILW1, SOILW2, SOILW3, SOILW4, SPFH2m,\ - TCDCclm, TCDChcl, TCDClcl, TCDCmcl,\ - SOILT1, SOILT2, SOILT3, SOILT4,\ - TMP2m, TMPsfc, UGWDsfc, VGWDsfc, UFLXsfc,\ - VFLXsfc, UGRD10m, VGRD10m, WEASDsfc, SNODsfc,\ - ZORLsfc, VFRACsfc, F10Msfc, VTYPEsfc, STYPEsfc" -export nggps2d_hy="$nggps2d_nh" - -export nggps3d_nh="ucomp, vcomp, temp, delp, sphum, o3mr, clwmr, nhpres, w, delz" #for non-hydrostatic case -export nggps3d_hy="ucomp, vcomp, temp, delp, sphum, o3mr, clwmr, hypres" #for hydrostatic case - -#-------------------------------------------------- -cd $DATA || exit 8 - -testfile=${CDATE}0000.nggps3d.tile4.nc -if [ ! -s $testfile ]; then testfile=nggps3d.tile4.nc ; fi -nhrun=$(ncdump -c $testfile | grep nhpres) -nhrun=$? - -export OMP_NUM_THREADS=$NTHREADS_REMAP - -#-------------------------------------------------- -err=0 -for type in atmos_4xdaily nggps2d nggps3d ; do - - export in_file="${CDATE}0000.${type}" - if [ ! -s $in_file ]; then export in_file="${type}"; fi - export out_file=${PREFIX}${type}.${GG}.nc - [[ -s $DATA/$out_file ]] && rm -f $DATA/$out_file - if [ $nhrun -eq 0 ]; then - export fld=$(eval echo \${${type}_nh}) - else - export fld=$(eval echo \${${type}_hy}) - fi - - $REMAP_LAUNCHER $REMAPEXE --input_dir $DATA \ - --input_file $in_file \ - --output_dir $DATA \ - --output_file $out_file \ - --input_mosaic $grid_loc \ - --scalar_field "$fld" \ - --interp_method conserve_order1 \ - --remap_file $weight_file \ - --nlon $nlon \ - --nlat $nlat - rc=$? - ((err+=$rc)) - -done - -echo $(date) EXITING $0 with return code $err >&2 -exit $err - diff --git a/stochastic_physics b/stochastic_physics index 1745422af7..12a4dc60e2 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 1745422af76d830757cd6035b6ea101e92b4cac1 +Subproject commit 12a4dc60e2e84e9fae886a49ee761c8b4638098e diff --git a/tests/Compile_hera.intel.log b/tests/Compile_hera.intel.log index 49c0855007..fc56d11e0d 100644 --- a/tests/Compile_hera.intel.log +++ b/tests/Compile_hera.intel.log @@ -1,73112 +1,1418 @@ + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ BUILD_NAME=fv3_10 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_10 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_10.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_10.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_10 -+ mkdir -p build_fv3_10 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_10/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_10/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_10/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_10/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_10/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__240640 -++ eval 'setup__test_function__240640() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__240640 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__240640 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_10 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 59%] Linking Fortran static library libccppphys.a -[ 59%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_10.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_10 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_10 -+ elapsed=478 -+ echo 'Elapsed time 478 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 478 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y' ++ export COMPILE_NR=10 ++ COMPILE_NR=10 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=10 ++ TEST_NR=10 ++ export JBNME=compile_10 ++ JBNME=compile_10 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_10 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370861 +TEST 10 compile is waiting to enter the queue +1 min. TEST 10 compile is running, Status: R +2 min. TEST 10 compile is running, Status: R +3 min. TEST 10 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370861 COMPLETED compile_10 +8370861.bat+ COMPLETED batch +8370861.ext+ COMPLETED extern +4 min. TEST 10 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=246 ++ echo 'Elapsed time 246 seconds. Compile 10' +Elapsed time 246 seconds. Compile 10 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ BUILD_NAME=fv3_11 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_11 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_11.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_11.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_11 -+ mkdir -p build_fv3_11 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --builddir=tests/build_fv3_11/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional_c768.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_11/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_11/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_11/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -+ source build_fv3_11/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__255126 -++ eval 'setup__test_function__255126() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__255126 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__255126 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_11 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Linking Fortran static library libccpp.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Linking Fortran static library libfv3cpl.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 3%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 26%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 65%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 65%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 65%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 65%] Linking Fortran static library libccppphys.a -[ 66%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 66%] Built target ccppphys -[ 66%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 66%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 72%] Linking Fortran static library libgfsphysics.a -[ 72%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 73%] Linking Fortran static library libccppdriver.a -[ 73%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_11.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_11 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_11 -+ elapsed=465 -+ echo 'Elapsed time 465 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 465 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=11 ++ COMPILE_NR=11 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=11 ++ TEST_NR=11 ++ export JBNME=compile_11 ++ JBNME=compile_11 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_11 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370965 +TEST 11 compile is waiting to enter the queue +1 min. TEST 11 compile is pending, Status: PD +2 min. TEST 11 compile is running, Status: R +3 min. TEST 11 compile is running, Status: R +4 min. TEST 11 compile is running, Status: R +Slurm unknown status CG. Check sacct ... +8370965 COMPLETED compile_11 +8370965.bat+ COMPLETED batch +8370965.ext+ COMPLETED extern +5 min. TEST 11 compile is COMPLETED +COMPLETED +COMPLETED +Slurm unknown status -. Check sacct ... +8370965 COMPLETED compile_11 +8370965.bat+ COMPLETED batch +8370965.ext+ COMPLETED extern +6 min. TEST 11 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=366 ++ echo 'Elapsed time 366 seconds. Compile 11' +Elapsed time 366 seconds. Compile 11 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_12 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_12 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_12.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_12.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_12 -+ mkdir -p build_fv3_12 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_12/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_12/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_12/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_12/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_12/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__258858 -++ eval 'setup__test_function__258858() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__258858 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__258858 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_12 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_12.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_12 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_12 -+ elapsed=477 -+ echo 'Elapsed time 477 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 477 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ export COMPILE_NR=12 ++ COMPILE_NR=12 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=12 ++ TEST_NR=12 ++ export JBNME=compile_12 ++ JBNME=compile_12 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_12 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8371020 +TEST 12 compile is waiting to enter the queue +1 min. TEST 12 compile is pending, Status: PD +2 min. TEST 12 compile is pending, Status: PD +3 min. TEST 12 compile is pending, Status: PD +4 min. TEST 12 compile is pending, Status: PD +5 min. TEST 12 compile is pending, Status: PD +6 min. TEST 12 compile is pending, Status: PD +7 min. TEST 12 compile is pending, Status: PD +8 min. TEST 12 compile is running, Status: R +9 min. TEST 12 compile is running, Status: R +10 min. TEST 12 compile is running, Status: R +11 min. TEST 12 compile is running, Status: R +12 min. TEST 12 compile is running, Status: R +13 min. TEST 12 compile is running, Status: R +14 min. TEST 12 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8371020 COMPLETED compile_12 +8371020.bat+ COMPLETED batch +8371020.ext+ COMPLETED extern +15 min. TEST 12 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=909 ++ echo 'Elapsed time 909 seconds. Compile 12' +Elapsed time 909 seconds. Compile 12 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ BUILD_NAME=fv3_13 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_13 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_13.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_13.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_13 -+ mkdir -p build_fv3_13 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --builddir=tests/build_fv3_13/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmgshoc.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmg.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_satmedmf.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_13/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_13/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_13/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to tests/build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -+ source build_fv3_13/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__258854 -++ eval 'setup__test_function__258854() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__258854 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__258854 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_13 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Linking Fortran static library libccpp.a -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 6%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 7%] Linking Fortran static library libfv3cpl.a -[ 7%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 26%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 69%] Linking Fortran static library libccppphys.a -[ 69%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 71%] Linking Fortran static library FMS/libfms.a -[ 71%] Built target fms -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_13.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_13 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_13 -+ elapsed=479 -+ echo 'Elapsed time 479 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 479 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=13 ++ COMPILE_NR=13 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=13 ++ TEST_NR=13 ++ export JBNME=compile_13 ++ JBNME=compile_13 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_13 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8371021 +TEST 13 compile is waiting to enter the queue +1 min. TEST 13 compile is pending, Status: PD +2 min. TEST 13 compile is pending, Status: PD +3 min. TEST 13 compile is pending, Status: PD +4 min. TEST 13 compile is pending, Status: PD +5 min. TEST 13 compile is pending, Status: PD +6 min. TEST 13 compile is pending, Status: PD +7 min. TEST 13 compile is pending, Status: PD +8 min. TEST 13 compile is pending, Status: PD +9 min. TEST 13 compile is pending, Status: PD +10 min. TEST 13 compile is running, Status: R +11 min. TEST 13 compile is running, Status: R +12 min. TEST 13 compile is running, Status: R +13 min. TEST 13 compile is running, Status: R +14 min. TEST 13 compile is running, Status: R +15 min. TEST 13 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8371021 COMPLETED compile_13 +8371021.bat+ COMPLETED batch +8371021.ext+ COMPLETED extern +16 min. TEST 13 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=968 ++ echo 'Elapsed time 968 seconds. Compile 13' +Elapsed time 968 seconds. Compile 13 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ BUILD_NAME=fv3_14 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_14 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_14.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_14.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_14 -+ mkdir -p build_fv3_14 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 --builddir=tests/build_fv3_14/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_CPT_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_14/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_14/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_14/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 17 auto-generated caps to tests/build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90' -+ source build_fv3_14/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__47376 -++ eval 'setup__test_function__47376() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__47376 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__47376 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_14 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 2%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 3%] Linking Fortran static library libfv3cpl.a -[ 3%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 69%] Linking Fortran static library libccppphys.a -[ 69%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 72%] Linking Fortran static library FMS/libfms.a -[ 72%] Built target fms -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 74%] Linking Fortran static library libgfsphysics.a -[ 74%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 75%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 75%] Linking Fortran static library libccppdriver.a -[ 75%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_14.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_14 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_14 -+ elapsed=479 -+ echo 'Elapsed time 479 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 479 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017' ++ export COMPILE_NR=1 ++ COMPILE_NR=1 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=1 ++ TEST_NR=1 ++ export JBNME=compile_1 ++ JBNME=compile_1 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_1 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370853 +TEST 1 compile is waiting to enter the queue +1 min. TEST 1 compile is running, Status: R +2 min. TEST 1 compile is running, Status: R +3 min. TEST 1 compile is running, Status: R +4 min. TEST 1 compile is running, Status: R +5 min. TEST 1 compile is running, Status: R +Slurm unknown status CG. Check sacct ... +8370853 COMPLETED compile_1 +8370853.bat+ COMPLETED batch +8370853.ext+ COMPLETED extern +6 min. TEST 1 compile is COMPLETED +COMPLETED +COMPLETED +Slurm unknown status -. Check sacct ... +8370853 COMPLETED compile_1 +8370853.bat+ COMPLETED batch +8370853.ext+ COMPLETED extern +7 min. TEST 1 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 1' +Elapsed time 426 seconds. Compile 1 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ BUILD_NAME=fv3_15 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_15 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_15.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_15.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_15 -+ mkdir -p build_fv3_15 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017 --builddir=tests/build_fv3_15/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_15/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_mixing_ratio_updated_by_physics -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_15/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_15/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -+ source build_fv3_15/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__128822 -++ eval 'setup__test_function__128822() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__128822 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__128822 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_15 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Linking Fortran static library libccpp.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 67%] Linking Fortran static library libccppphys.a -[ 67%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Linking Fortran static library libio.a -[ 86%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_15.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_15 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_15 -+ elapsed=497 -+ echo 'Elapsed time 497 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 497 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ export COMPILE_NR=2 ++ COMPILE_NR=2 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=2 ++ TEST_NR=2 ++ export JBNME=compile_2 ++ JBNME=compile_2 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_2 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370854 +TEST 2 compile is waiting to enter the queue +1 min. TEST 2 compile is running, Status: R +2 min. TEST 2 compile is running, Status: R +3 min. TEST 2 compile is running, Status: R +4 min. TEST 2 compile is running, Status: R +5 min. TEST 2 compile is running, Status: R +6 min. TEST 2 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370854 COMPLETED compile_2 +8370854.bat+ COMPLETED batch +8370854.ext+ COMPLETED extern +7 min. TEST 2 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 2' +Elapsed time 426 seconds. Compile 2 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' -+ BUILD_NAME=fv3_16 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_16 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_16.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_16.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_16 -+ mkdir -p build_fv3_16 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_gfdlmp --builddir=tests/build_fv3_16/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_16/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_16/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_16/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -+ source build_fv3_16/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__27517 -++ eval 'setup__test_function__27517() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__27517 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__27517 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_16 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=hera ww3_nems - in: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16 -+ make -j 8 -Scanning dependencies of target ww3_nems -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Built target ccpp -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Built target ww3_nems -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_16.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_16 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_16 -+ elapsed=500 -+ echo 'Elapsed time 500 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished' -Elapsed time 500 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ export COMPILE_NR=3 ++ COMPILE_NR=3 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=3 ++ TEST_NR=3 ++ export JBNME=compile_3 ++ JBNME=compile_3 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_3 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370855 +TEST 3 compile is waiting to enter the queue +1 min. TEST 3 compile is running, Status: R +2 min. TEST 3 compile is running, Status: R +3 min. TEST 3 compile is running, Status: R +4 min. TEST 3 compile is running, Status: R +5 min. TEST 3 compile is running, Status: R +6 min. TEST 3 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370855 COMPLETED compile_3 +8370855.bat+ COMPLETED batch +8370855.ext+ COMPLETED extern +7 min. TEST 3 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 3' +Elapsed time 426 seconds. Compile 3 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ BUILD_NAME=fv3_17 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_17 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_17.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_17.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_17 -+ mkdir -p build_fv3_17 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_17/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_17/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_17/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_17/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_17/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__129386 -++ eval 'setup__test_function__129386() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__129386 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__129386 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_17 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Built target ccpp -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 59%] Linking Fortran static library libccppphys.a -[ 59%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_17.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_17 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_17 -+ elapsed=486 -+ echo 'Elapsed time 486 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 486 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ export COMPILE_NR=4 ++ COMPILE_NR=4 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=4 ++ TEST_NR=4 ++ export JBNME=compile_4 ++ JBNME=compile_4 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_4 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370856 +TEST 4 compile is waiting to enter the queue +1 min. TEST 4 compile is running, Status: R +2 min. TEST 4 compile is running, Status: R +3 min. TEST 4 compile is running, Status: R +4 min. TEST 4 compile is running, Status: R +5 min. TEST 4 compile is running, Status: R +6 min. TEST 4 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370856 COMPLETED compile_4 +8370856.bat+ COMPLETED batch +8370856.ext+ COMPLETED extern +7 min. TEST 4 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=427 ++ echo 'Elapsed time 427 seconds. Compile 4' +Elapsed time 427 seconds. Compile 4 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ BUILD_NAME=fv3_18 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_18 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_18.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_18.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_18 -+ mkdir -p build_fv3_18 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --builddir=tests/build_fv3_18/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional_c768.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_18/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_18/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_18/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -+ source build_fv3_18/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__150065 -++ eval 'setup__test_function__150065() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__150065 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__150065 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_18 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Linking Fortran static library libccpp.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Linking Fortran static library libfv3cpl.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 3%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 26%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 61%] Linking Fortran static library libccppphys.a -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 63%] Built target ccppphys -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -Scanning dependencies of target gfsphysics -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 70%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 72%] Linking Fortran static library libgfsphysics.a -[ 72%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 73%] Linking Fortran static library libccppdriver.a -[ 73%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_18.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_18 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_18 ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=5 ++ COMPILE_NR=5 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=5 ++ TEST_NR=5 ++ export JBNME=compile_5 ++ JBNME=compile_5 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_5 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370857 +TEST 5 compile is waiting to enter the queue +1 min. TEST 5 compile is running, Status: R +2 min. TEST 5 compile is running, Status: R +3 min. TEST 5 compile is running, Status: R +4 min. TEST 5 compile is running, Status: R +5 min. TEST 5 compile is running, Status: R +6 min. TEST 5 compile is running, Status: R +7 min. TEST 5 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370857 COMPLETED compile_5 +8370857.bat+ COMPLETED batch +8370857.ext+ COMPLETED extern +8 min. TEST 5 compile is COMPLETED +COMPLETED +COMPLETED + elapsed=487 -+ echo 'Elapsed time 487 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 487 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished ++ echo 'Elapsed time 487 seconds. Compile 5' +Elapsed time 487 seconds. Compile 5 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ BUILD_NAME=fv3_19 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_19 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_19.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_19.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_19 -+ mkdir -p build_fv3_19 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_19/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_19/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_19/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_19/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_19/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__152305 -++ eval 'setup__test_function__152305() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__152305 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__152305 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_19 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Built target ccpp -[ 3%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -fpp: warning: keyword redefined: STATIC -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -fpp: warning: keyword redefined: STATIC -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -fpp: warning: keyword redefined: STATIC -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -fpp: warning: keyword redefined: STATIC -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -fpp: warning: keyword redefined: STATIC -[ 50%] Linking Fortran static library libccppphys.a -[ 50%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -fpp: warning: keyword redefined: STATIC -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 56%] Linking Fortran static library libgfsphysics.a -[ 56%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 56%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 56%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 57%] Linking Fortran static library libccppdriver.a -[ 57%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 57%] Built target ccppdriver -[ 58%] Linking Fortran static library libipd.a -[ 58%] Built target ipd -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 73%] Linking Fortran static library FMS/libfms.a -[ 73%] Built target fms -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -fpp: warning: keyword redefined: STATIC -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_19.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_19 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_19 -+ elapsed=175 -+ echo 'Elapsed time 175 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished' -Elapsed time 175 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=6 ++ COMPILE_NR=6 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=6 ++ TEST_NR=6 ++ export JBNME=compile_6 ++ JBNME=compile_6 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_6 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370858 +TEST 6 compile is waiting to enter the queue +1 min. TEST 6 compile is running, Status: R +2 min. TEST 6 compile is running, Status: R +3 min. TEST 6 compile is running, Status: R +4 min. TEST 6 compile is running, Status: R +5 min. TEST 6 compile is running, Status: R +6 min. TEST 6 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370858 COMPLETED compile_6 +8370858.bat+ COMPLETED batch +8370858.ext+ COMPLETED extern +7 min. TEST 6 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 6' +Elapsed time 426 seconds. Compile 6 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT= -+ BUILD_NAME=fv3_1 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_1 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling into fv3_1.exe on hera.intel' -Compiling into fv3_1.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ mkdir -p build_fv3_1 -+ CCPP_CMAKE_FLAGS= -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ [[ '' == *\3\2\B\I\T\=\Y* ]] -+ [[ '' == *\O\P\E\N\M\P\=\N* ]] -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -++ trim '' -++ local var= -++ var= -++ var= -++ echo -n '' -+ CCPP_CMAKE_FLAGS= -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75461 -++ eval 'setup__test_function__75461() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75461 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75461 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_1 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_1 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 5%] Built target fv3cpl -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Linking Fortran static library FMS/libfms.a -[ 45%] Built target fms -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_1.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_1 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ elapsed=443 -+ echo 'Elapsed time 443 seconds. Compiling finished' -Elapsed time 443 seconds. Compiling finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ export COMPILE_NR=7 ++ COMPILE_NR=7 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=7 ++ TEST_NR=7 ++ export JBNME=compile_7 ++ JBNME=compile_7 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_7 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370859 +TEST 7 compile is waiting to enter the queue +1 min. TEST 7 compile is running, Status: R +2 min. TEST 7 compile is running, Status: R +3 min. TEST 7 compile is running, Status: R +4 min. TEST 7 compile is running, Status: R +5 min. TEST 7 compile is running, Status: R +6 min. TEST 7 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370859 COMPLETED compile_7 +8370859.bat+ COMPLETED batch +8370859.ext+ COMPLETED extern +7 min. TEST 7 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 7' +Elapsed time 426 seconds. Compile 7 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_20 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_20 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_20.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_20.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_20 -+ mkdir -p build_fv3_20 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_20/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_20/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_20/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_20/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_20/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__250560 -++ eval 'setup__test_function__250560() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__250560 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__250560 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_20 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_20.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_20 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_20 -+ elapsed=491 -+ echo 'Elapsed time 491 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 491 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ export COMPILE_NR=8 ++ COMPILE_NR=8 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=8 ++ TEST_NR=8 ++ export JBNME=compile_8 ++ JBNME=compile_8 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_8 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370860 +TEST 8 compile is waiting to enter the queue +1 min. TEST 8 compile is running, Status: R +2 min. TEST 8 compile is running, Status: R +3 min. TEST 8 compile is running, Status: R +4 min. TEST 8 compile is running, Status: R +5 min. TEST 8 compile is running, Status: R +6 min. TEST 8 compile is running, Status: R +7 min. TEST 8 compile is running, Status: R +8 min. TEST 8 compile is running, Status: R +9 min. TEST 8 compile is running, Status: R +10 min. TEST 8 compile is running, Status: R +11 min. TEST 8 compile is running, Status: R +12 min. TEST 8 compile is running, Status: R +Slurm unknown status -. Check sacct ... +8370860 COMPLETED compile_8 +8370860.bat+ COMPLETED batch +8370860.ext+ COMPLETED extern +13 min. TEST 8 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=787 ++ echo 'Elapsed time 787 seconds. Compile 8' +Elapsed time 787 seconds. Compile 8 + SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ BUILD_NAME=fv3_21 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_21 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_21.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_21.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_21 -+ mkdir -p build_fv3_21 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --builddir=tests/build_fv3_21/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmgshoc.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmg.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_satmedmf.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_21/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_21/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_21/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to tests/build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -+ source build_fv3_21/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__257268 -++ eval 'setup__test_function__257268() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__257268 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__257268 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_21 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 6%] Linking Fortran static library libccpp.a -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 6%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Linking Fortran static library libfv3cpl.a -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 7%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 26%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 68%] Linking Fortran static library FMS/libfms.a -[ 68%] Built target fms -[ 69%] Linking Fortran static library libccppphys.a -[ 69%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 74%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_21.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_21 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_21 -+ elapsed=511 -+ echo 'Elapsed time 511 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 511 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' -+ BUILD_NAME=fv3_22 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_22 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y into fv3_22.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y into fv3_22.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_22 -+ mkdir -p build_fv3_22 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson --builddir=tests/build_fv3_22/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_CPT_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15_thompson.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_22/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_22/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_22/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 22 auto-generated caps to tests/build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -+ source build_fv3_22/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__30376 -++ eval 'setup__test_function__30376() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__30376 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__30376 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_22 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_physics_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_cap.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 70%] Linking Fortran static library libccppphys.a -[ 70%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 72%] Linking Fortran static library FMS/libfms.a -[ 72%] Built target fms -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 74%] Linking Fortran static library libgfsphysics.a -[ 74%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 75%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 75%] Linking Fortran static library libccppdriver.a -[ 75%] Built target ccppdriver -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 83%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 83%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 84%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 84%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 85%] Linking Fortran static library libio.a -[ 85%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_22.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_22 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_22 -+ elapsed=506 -+ echo 'Elapsed time 506 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y finished' -Elapsed time 506 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta' -+ BUILD_NAME=fv3_23 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_23 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_23.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta into fv3_23.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_23 -+ mkdir -p build_fv3_23 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_v15p2,FV3_GFS_v16beta --builddir=tests/build_fv3_23/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15p2.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v16beta.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_23/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_23/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_23/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -+ source build_fv3_23/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__43525 -++ eval 'setup__test_function__43525() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__43525 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__43525 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_23 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_23.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_23 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_23 -+ elapsed=499 -+ echo 'Elapsed time 499 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished' -Elapsed time 499 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y' -+ BUILD_NAME=fv3_24 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_24 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_24.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y into fv3_24.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_24 -+ mkdir -p build_fv3_24 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_v15p2,FV3_GFS_v16beta --builddir=tests/build_fv3_24/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15p2.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v16beta.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_24/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_24/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_24/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -+ source build_fv3_24/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__52384 -++ eval 'setup__test_function__52384() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__52384 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__52384 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_24 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Built target ccpp -[ 3%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -fpp: warning: keyword redefined: STATIC -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -fpp: warning: keyword redefined: STATIC -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -fpp: warning: keyword redefined: STATIC -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -fpp: warning: keyword redefined: STATIC -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -fpp: warning: keyword redefined: STATIC -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -fpp: warning: keyword redefined: STATIC -[ 50%] Linking Fortran static library libccppphys.a -[ 50%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -fpp: warning: keyword redefined: STATIC -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 59%] Linking Fortran static library libgfsphysics.a -[ 59%] Built target gfsphysics -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ipd -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Scanning dependencies of target ccppdriver -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 60%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 60%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 63%] Linking Fortran static library libccppdriver.a -[ 63%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Built target ccppdriver -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 64%] Linking Fortran static library libipd.a -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 64%] Built target ipd -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 73%] Linking Fortran static library FMS/libfms.a -[ 73%] Built target fms -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -fpp: warning: keyword redefined: STATIC -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_24.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_24 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_24 -+ elapsed=157 -+ echo 'Elapsed time 157 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished' -Elapsed time 157 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta DEBUG=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' -+ BUILD_NAME=fv3_25 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_25 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y into fv3_25.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y into fv3_25.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_25 -+ mkdir -p build_fv3_25 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GSD_v0,FV3_GFS_v15_thompson --builddir=tests/build_fv3_25/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15_thompson.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_25/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_25/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_25/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_25/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_25/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_25/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_25/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_25/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_25/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_25/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -+ source build_fv3_25/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__139849 -++ eval 'setup__test_function__139849() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__139849 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__139849 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_25 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_25 -+ make -j 8 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Built target ccpp -[ 3%] Linking Fortran static library libfv3cpl.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 3%] Built target fv3cpl -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -fpp: warning: keyword redefined: STATIC -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -fpp: warning: keyword redefined: STATIC -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -fpp: warning: keyword redefined: STATIC -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -fpp: warning: keyword redefined: STATIC -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -fpp: warning: keyword redefined: STATIC -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -fpp: warning: keyword redefined: STATIC -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -fpp: warning: keyword redefined: STATIC -[ 48%] Linking Fortran static library libccppphys.a -[ 48%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -fpp: warning: keyword redefined: STATIC -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 54%] Linking Fortran static library libgfsphysics.a -[ 54%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 54%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 54%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 55%] Linking Fortran static library libccppdriver.a -[ 55%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 55%] Built target ccppdriver -[ 56%] Linking Fortran static library libipd.a -[ 56%] Built target ipd -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 72%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 74%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 74%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Linking Fortran static library FMS/libfms.a -[ 74%] Built target fms -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -fpp: warning: keyword redefined: STATIC -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_25.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_25 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_25 -+ elapsed=164 -+ echo 'Elapsed time 164 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y finished' -Elapsed time 164 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg' -+ BUILD_NAME=fv3_26 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_26 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg into fv3_26.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg into fv3_26.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_26 -+ mkdir -p build_fv3_26 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_v16_csawmg -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_v16_csawmg --builddir=tests/build_fv3_26/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v16_csawmg.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_26/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_aware_parameter_deep_convection -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_diffusivity_coefficient_factor -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_background_maximum -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable countergradient_mixing_term_for_temperature -INFO: filtering out variable countergradient_mixing_term_for_water_vapor -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_conversion_parameter_deep_convection -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable downdraft_fraction_reaching_surface_over_land_deep_convection -INFO: filtering out variable downdraft_fraction_reaching_surface_over_ocean_deep_convection -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_rate_coefficient_deep_convection -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable momentum_transport_reduction_factor_pgf_deep_convection -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_conversion_parameter_deep_convection -INFO: filtering out variable rain_evaporation_coefficient_deep_convection -INFO: filtering out variable rain_evaporation_coefficient_over_land_deep_convection -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_26/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_26/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_26/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_26/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_26/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_26/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_26/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_26/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_26/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90' -+ source build_fv3_26/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__146640 -++ eval 'setup__test_function__146640() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__146640 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__146640 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_26 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_26 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Built target ccpp -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 67%] Linking Fortran static library libccppphys.a -[ 67%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 86%] Linking Fortran static library libio.a -[ 86%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_26.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_26 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_26 -+ elapsed=502 -+ echo 'Elapsed time 502 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg finished' -Elapsed time 502 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_27 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_27 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_27.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_27.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_27 -+ mkdir -p build_fv3_27 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ hera.intel == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_27/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_27/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_27/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_27/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_27/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_27/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_27/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_27/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_27/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_27/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_27/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_27/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__175245 -++ eval 'setup__test_function__175245() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__175245 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__175245 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_27 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_27 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_27.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_27 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_27 -+ elapsed=483 -+ echo 'Elapsed time 483 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 483 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y' -+ BUILD_NAME=fv3_28 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_28 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y into fv3_28.exe on hera.intel' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y into fv3_28.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_28 -+ mkdir -p build_fv3_28 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_v15p2,FV3_GFS_v16beta --builddir=tests/build_fv3_28/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15p2.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v16beta.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_28/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_28/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_28/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_28/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_28/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_28/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_28/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_28/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_28/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_28/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90' -+ source build_fv3_28/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__201988 -++ eval 'setup__test_function__201988() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__201988 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__201988 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_28 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v15p2_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28/FV3/ccpp/physics/ccpp_FV3_GFS_v16beta_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_28 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_time_vary_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_time_vary_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_radiation_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_radiation_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15p2_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16beta_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_28.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_28 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_28 -+ elapsed=457 -+ echo 'Elapsed time 457 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y finished' -Elapsed time 457 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta REPRO=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT=REPRO=Y -+ BUILD_NAME=fv3_29 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_29 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y into fv3_29.exe on hera.intel' -Compiling REPRO=Y into fv3_29.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_29 -+ mkdir -p build_fv3_29 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y' -++ local 'var= -DREPRO=Y' -++ var=-DREPRO=Y -++ var=-DREPRO=Y -++ echo -n -DREPRO=Y -+ CCPP_CMAKE_FLAGS=-DREPRO=Y -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__261603 -++ eval 'setup__test_function__261603() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__261603 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__261603 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_29 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_29 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Built target fv3cpl -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Linking Fortran static library FMS/libfms.a -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Built target fms -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_29.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_29 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_29 -+ elapsed=397 -+ echo 'Elapsed time 397 seconds. Compiling REPRO=Y finished' -Elapsed time 397 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT=WW3=Y -+ BUILD_NAME=fv3_2 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_2 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling WW3=Y into fv3_2.exe on hera.intel' -Compiling WW3=Y into fv3_2.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ mkdir -p build_fv3_2 -+ CCPP_CMAKE_FLAGS= -+ [[ WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ WW3=Y == *\C\C\P\P\=\Y* ]] -+ [[ WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DWW3=Y' -++ trim ' -DWW3=Y' -++ local 'var= -DWW3=Y' -++ var=-DWW3=Y -++ var=-DWW3=Y -++ echo -n -DWW3=Y -+ CCPP_CMAKE_FLAGS=-DWW3=Y -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75462 -++ eval 'setup__test_function__75462() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75462 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75462 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_2 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DWW3=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=hera ww3_nems - in: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_2 -+ make -j 8 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target gfsphysics -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Linking Fortran static library libfv3cpl.a -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 6%] Built target fv3cpl -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Built target ww3_nems -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Linking Fortran static library FMS/libfms.a -[ 45%] Built target fms -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_2.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_2 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ elapsed=444 -+ echo 'Elapsed time 444 seconds. Compiling WW3=Y finished' -Elapsed time 444 seconds. Compiling WW3=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT=32BIT=Y -+ BUILD_NAME=fv3_3 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_3 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling 32BIT=Y into fv3_3.exe on hera.intel' -Compiling 32BIT=Y into fv3_3.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ mkdir -p build_fv3_3 -+ CCPP_CMAKE_FLAGS= -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y' -++ local 'var= -D32BIT=Y' -++ var=-D32BIT=Y -++ var=-D32BIT=Y -++ echo -n -D32BIT=Y -+ CCPP_CMAKE_FLAGS=-D32BIT=Y -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75463 -++ eval 'setup__test_function__75463() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75463 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75463 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_3 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_3 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Linking Fortran static library libfv3cpl.a -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Built target fv3cpl -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_3.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_3 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ elapsed=443 -+ echo 'Elapsed time 443 seconds. Compiling 32BIT=Y finished' -Elapsed time 443 seconds. Compiling 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='32BIT=Y DEBUG=Y' -+ BUILD_NAME=fv3_4 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_4 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling 32BIT=Y DEBUG=Y into fv3_4.exe on hera.intel' -Compiling 32BIT=Y DEBUG=Y into fv3_4.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_4 -+ mkdir -p build_fv3_4 -+ CCPP_CMAKE_FLAGS= -+ [[ 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y' -+ [[ 32BIT=Y DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -D32BIT=Y' -++ local 'var= -DDEBUG=Y -D32BIT=Y' -++ var='-DDEBUG=Y -D32BIT=Y' -++ var='-DDEBUG=Y -D32BIT=Y' -++ echo -n '-DDEBUG=Y -D32BIT=Y' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -D32BIT=Y' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75464 -++ eval 'setup__test_function__75464() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75464 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75464 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_4 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -D32BIT=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_4 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Linking Fortran static library libfv3cpl.a -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -[ 8%] Built target fv3cpl -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 29%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 29%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 29%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 29%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 29%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 51%] Linking Fortran static library libgfsphysics.a -[ 51%] Built target gfsphysics -Scanning dependencies of target ipd -[ 51%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 51%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 51%] Linking Fortran static library libipd.a -[ 51%] Built target ipd -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_4.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_4 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_4 -+ elapsed=170 -+ echo 'Elapsed time 170 seconds. Compiling 32BIT=Y DEBUG=Y finished' -Elapsed time 170 seconds. Compiling 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT=REPRO=Y -+ BUILD_NAME=fv3_5 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_5 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y into fv3_5.exe on hera.intel' -Compiling REPRO=Y into fv3_5.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_5 -+ mkdir -p build_fv3_5 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y' -++ local 'var= -DREPRO=Y' -++ var=-DREPRO=Y -++ var=-DREPRO=Y -++ echo -n -DREPRO=Y -+ CCPP_CMAKE_FLAGS=-DREPRO=Y -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75465 -++ eval 'setup__test_function__75465() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75465 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75465 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_5 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_5 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Linking Fortran static library libfv3cpl.a -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Built target fv3cpl -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Linking Fortran static library FMS/libfms.a -[ 45%] Built target fms -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_5.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_5 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_5 -+ elapsed=431 -+ echo 'Elapsed time 431 seconds. Compiling REPRO=Y finished' -Elapsed time 431 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y WW3=Y' -+ BUILD_NAME=fv3_6 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_6 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y WW3=Y into fv3_6.exe on hera.intel' -Compiling REPRO=Y WW3=Y into fv3_6.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_6 -+ mkdir -p build_fv3_6 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y WW3=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DWW3=Y' -++ trim ' -DREPRO=Y -DWW3=Y' -++ local 'var= -DREPRO=Y -DWW3=Y' -++ var='-DREPRO=Y -DWW3=Y' -++ var='-DREPRO=Y -DWW3=Y' -++ echo -n '-DREPRO=Y -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DWW3=Y' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__259172 -++ eval 'setup__test_function__259172() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__259172 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__259172 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_6 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DWW3=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=hera ww3_nems - in: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_6 -+ make -j 8 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 5%] Linking Fortran static library libfv3cpl.a -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Built target fv3cpl -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Built target ww3_nems -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Linking Fortran static library FMS/libfms.a -[ 45%] Built target fms -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_6.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_6 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_6 -+ elapsed=449 -+ echo 'Elapsed time 449 seconds. Compiling REPRO=Y WW3=Y finished' -Elapsed time 449 seconds. Compiling REPRO=Y WW3=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y 32BIT=Y' -+ BUILD_NAME=fv3_7 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_7 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y 32BIT=Y into fv3_7.exe on hera.intel' -Compiling REPRO=Y 32BIT=Y into fv3_7.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_7 -+ mkdir -p build_fv3_7 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y' -++ local 'var= -DREPRO=Y -D32BIT=Y' -++ var='-DREPRO=Y -D32BIT=Y' -++ var='-DREPRO=Y -D32BIT=Y' -++ echo -n '-DREPRO=Y -D32BIT=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__75466 -++ eval 'setup__test_function__75466() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__75466 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__75466 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_7 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 7%] Linking Fortran static library libfv3cpl.a -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Built target fv3cpl -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 27%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_7.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_7 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_7 -+ elapsed=414 -+ echo 'Elapsed time 414 seconds. Compiling REPRO=Y 32BIT=Y finished' -Elapsed time 414 seconds. Compiling REPRO=Y 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ BUILD_NAME=fv3_8 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_8 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_8.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_8.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_8 -+ mkdir -p build_fv3_8 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017 --builddir=tests/build_fv3_8/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_8/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_mixing_ratio_updated_by_physics -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_8/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_8/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -+ source build_fv3_8/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__159838 -++ eval 'setup__test_function__159838() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__159838 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__159838 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_8 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8 -+ make -j 8 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Linking Fortran static library libccpp.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 67%] Linking Fortran static library libccppphys.a -[ 67%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Linking Fortran static library libio.a -[ 86%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_8.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_8 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_8 -+ elapsed=489 -+ echo 'Elapsed time 489 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 489 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+++ readlink -f /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=hera.intel -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' -+ BUILD_NAME=fv3_9 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_9 -+ [[ hera.intel == cheyenne.* ]] -+ [[ hera.intel == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -hfe04 -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_9.exe on hera.intel' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_9.exe on hera.intel -+ '[' YES = YES ']' -+ rm -rf build_fv3_9 -+ mkdir -p build_fv3_9 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -+ cd /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_gfdlmp --builddir=tests/build_fv3_9/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_9/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_9/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_9/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -++ CCPP_CAPS='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -+ source build_fv3_9/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ source /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__128816 -++ eval 'setup__test_function__128816() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__128816 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ ! -d /scratch ]] -++ eval module help -++ module purge -+++ /apps/lmod/7.7.18/libexec/lmod bash purge -++ eval unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPATH_NO_BACKTRACE;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_F90;' unset 'I_MPI_HYDRA_BRANCH_COUNT;' unset 'I_MPI_HYDRA_PMI_CONNECT;' unset 'I_MPI_ROOT;' unset 'I_MPI_TMI_PROVIDER;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_SRC;' unset 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/apps/slurm/default/lib:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH=":/apps/slurm/default/lib";' export 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NCEPLIBS;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' unset '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'SLURM_UTILS_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset __LMOD_REF_COUNT_INTEL_LICENSE_FILE -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPATH_NO_BACKTRACE -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_F90 -+++ unset I_MPI_HYDRA_BRANCH_COUNT -+++ unset I_MPI_HYDRA_PMI_CONNECT -+++ unset I_MPI_ROOT -+++ unset I_MPI_TMI_PROVIDER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ __LMOD_REF_COUNT_LD_LIBRARY_PATH=/apps/slurm/default/lib:1 -+++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ LD_LIBRARY_PATH=:/apps/slurm/default/lib -+++ export LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ __LMOD_REF_COUNT_MANPATH='/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -+++ export MANPATH -+++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:1;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -+++ export __LMOD_REF_COUNT_MODULEPATH -+++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NCEPLIBS -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -+++ export PATH -+++ unset __LMOD_REF_COUNT_PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset SLURM_UTILS_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -+++ export _ModuleTable001_ -+++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__128816 -++ unset __ms_function_name -+ [[ hera.intel == macosx.* ]] -+ [[ hera.intel == linux.* ]] -+ module use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -++ /apps/lmod/7.7.18/libexec/lmod bash use /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel -+ eval '__LMOD_REF_COUNT_MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi";' export '_ModuleTable001_;' '_ModuleTable002_="XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0=";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ __LMOD_REF_COUNT_MODULEPATH='/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9zY3JhdGNoMi9OQ0VQREVWL2Z2My1jYW0vRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvaGVyYS5pbnRlbCIsIi9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlIiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eCIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvbW9kdWxlZmlsZXMiLCIvb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgi -++ export _ModuleTable001_ -++ _ModuleTable002_=XT0iL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmU6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcy9MaW51eDovYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzOi9vcHQvY3JheS9tb2R1bGVmaWxlczovb3B0L2NyYXkvY3JheXBlL2RlZmF1bHQvbW9kdWxlZmlsZXMiLH0= -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /apps/lmod/7.7.18/libexec/lmod bash load fv3 -+ eval 'BACIO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' '__LMOD_REF_COUNT_CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="hera.intel";' export 'CMAKE_Platform;' 'COMP="intel";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include";' export 'CPATH;' 'CRTM_FIX="/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6";' export 'CRTM_FIX;' 'CRTM_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'ESMFMKFILE="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info";' export 'INFOPATH;' '__LMOD_REF_COUNT_INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1";' export '__LMOD_REF_COUNT_INTEL_LICENSE_FILE;' 'INTEL_LICENSE_FILE="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/";' export 'INTEL_PYTHONHOME;' 'IPATH_NO_BACKTRACE="1";' export 'IPATH_NO_BACKTRACE;' 'IP_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_HYDRA_BRANCH_COUNT="128";' export 'I_MPI_HYDRA_BRANCH_COUNT;' 'I_MPI_HYDRA_PMI_CONNECT="alltoall";' export 'I_MPI_HYDRA_PMI_CONNECT;' 'I_MPI_ROOT="/apps/intel/compilers_and_libraries_2018/linux/mpi";' export 'I_MPI_ROOT;' 'I_MPI_TMI_PROVIDER="psm";' export 'I_MPI_TMI_PROVIDER;' 'JASPER_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1";' export 'JASPER_INC;' 'JASPER_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a";' export 'JASPER_LIB;' 'JASPER_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'JASPER_SRC;' 'JASPER_VER="v1.900.1";' export 'JASPER_VER;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="intel";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.5.274";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="2018.0.4";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3";' export 'LOADEDMODULES;' '__LMOD_REF_COUNT_MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man";' export 'MANPATH;' '__LMOD_REF_COUNT_MODULEPATH="/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1";' export '__LMOD_REF_COUNT_MODULEPATH;' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NCEPLIBS="/scratch2/NCEPDEV/nwprod/NCEPLIBS";' export 'NCEPLIBS;' 'NEMSIO_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse";' export 'PATH;' '__LMOD_REF_COUNT_PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1";' export '__LMOD_REF_COUNT_PKG_CONFIG_PATH;' 'PKG_CONFIG_PATH="/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44";' export 'PNG_INC;' 'PNG_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a";' export 'PNG_LIB;' 'PNG_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'PNG_SRC;' 'PNG_VER="v1.2.44";' export 'PNG_VER;' 'POST_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'SLURM_UTILS_PATH="/contrib/sutils/bin";' export 'SLURM_UTILS_PATH;' 'SP_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'W3EMC_INC4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'Z_INC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11";' export 'Z_INC;' 'Z_LIB="/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a";' export 'Z_LIB;' 'Z_SRC="/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty";' export 'Z_SRC;' 'Z_VER="v1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ BACIO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ __LMOD_REF_COUNT_CLASSPATH='/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/mpi.jar:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=hera.intel -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/pstl/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/include:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/include -++ export CPATH -++ CRTM_FIX=/scratch2/NCEPDEV/nwprod/NCEPLIBS/fix/crtm_v2.2.6 -++ export CRTM_FIX -++ CRTM_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/crtm_v2.2.6 -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ ESMFMKFILE=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/info:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/info -++ export INFOPATH -++ __LMOD_REF_COUNT_INTEL_LICENSE_FILE='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:1;/apps/intel/licenses:1' -++ export __LMOD_REF_COUNT_INTEL_LICENSE_FILE -++ INTEL_LICENSE_FILE=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/licenses:/apps/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/python/intel64/ -++ export INTEL_PYTHONHOME -++ IPATH_NO_BACKTRACE=1 -++ export IPATH_NO_BACKTRACE -++ IP_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_HYDRA_BRANCH_COUNT=128 -++ export I_MPI_HYDRA_BRANCH_COUNT -++ I_MPI_HYDRA_PMI_CONNECT=alltoall -++ export I_MPI_HYDRA_PMI_CONNECT -++ I_MPI_ROOT=/apps/intel/compilers_and_libraries_2018/linux/mpi -++ export I_MPI_ROOT -++ I_MPI_TMI_PROVIDER=psm -++ export I_MPI_TMI_PROVIDER -++ JASPER_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/include/jasper_v1.900.1 -++ export JASPER_INC -++ JASPER_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a -++ export JASPER_LIB -++ JASPER_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export JASPER_SRC -++ JASPER_VER=v1.900.1 -++ export JASPER_VER -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib:1;/apps/slurm/default/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib::/apps/slurm/default/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/ipp/lib/intel64:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/libipt/intel64/lib:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:2;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/tbb/lib/intel64/gcc4.7:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/lib/intel64_lin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/daal/../tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=intel -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.5.274 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=2018.0.4 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='contrib:1;sutils/default:1;intel/18.0.5.274:1;impi/2018.0.4:1;bacio/2.0.3:1;ip/3.0.2:1;nemsio/2.2.4:1;sp/2.0.3:1;w3emc/2.3.1:1;w3nco/2.0.7:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.1:1;png/1.2.44:1;z/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.9.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=contrib:sutils/default:intel/18.0.5.274:impi/2018.0.4:bacio/2.0.3:ip/3.0.2:nemsio/2.2.4:sp/2.0.3:w3emc/2.3.1:w3nco/2.0.7:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.1:png/1.2.44:z/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.9.0:fv3 -++ export LOADEDMODULES -++ __LMOD_REF_COUNT_MANPATH='/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/man:1;/apps/intel/parallel_studio_xe_2018.4.057/man/common:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:1;/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:1;/apps/lmod/lmod/share/man:1;/apps/local/man:1;/apps/slurm/default/share/man:1;/apps/slurm/tools/sbank/share/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/share/man:/apps/intel/compilers_and_libraries_2018/linux/mpi/man:/apps/intel/parallel_studio_xe_2018.4.057/man/common:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-ia/man:/apps/intel/parallel_studio_xe_2018.4.057/documentation_2018/en/debugger/gdb-igfx/man:/apps/lmod/lmod/share/man::/apps/local/man:/apps/slurm/default/share/man:/apps/slurm/tools/sbank/share/man -++ export MANPATH -++ __LMOD_REF_COUNT_MODULEPATH='/contrib/modulefiles:2;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:2;/apps/lmod/lmod/modulefiles/Core:1;/apps/modules/modulefiles/Linux:1;/apps/modules/modulefiles:1;/opt/cray/modulefiles:1;/opt/cray/craype/default/modulefiles:1;/apps/modules/modulefamilies/intel:1;/apps/modules/modulefamilies/intel_impi:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:1;/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles:1' -++ export __LMOD_REF_COUNT_MODULEPATH -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NCEPLIBS=/scratch2/NCEPDEV/nwprod/NCEPLIBS -++ export NCEPLIBS -++ NEMSIO_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/compiler/lib/intel64/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:/apps/intel/parallel_studio_xe_2018.4.057/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/contrib/cmake/3.9.0/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:2;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:1;/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:1;/contrib/sutils/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/opt/ibutils/bin:1;/apps/local/bin:1;/apps/local/sbin:1;/apps/slurm/default/tools:1;/apps/slurm/default/bin:1;/apps/slurm/default/sbin:1;/apps/slurm/tools/sbank/bin:1;/home/Dusan.Jovic/bin:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/contrib/cmake/3.9.0/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/bin:/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel/bin:/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin:/apps/intel/parallel_studio_xe_2018.4.057/compilers_and_libraries_2018/linux/bin/intel64:/contrib/sutils/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/opt/ibutils/bin:/apps/local/bin:/apps/local/sbin:/apps/slurm/default/tools:/apps/slurm/default/bin:/apps/slurm/default/sbin:/apps/slurm/tools/sbank/bin:/home/Dusan.Jovic/bin:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/dbrowse -++ export PATH -++ __LMOD_REF_COUNT_PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig:1 -++ export __LMOD_REF_COUNT_PKG_CONFIG_PATH -++ PKG_CONFIG_PATH=/apps/intel/compilers_and_libraries_2018/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/png_v1.2.44 -++ export PNG_INC -++ PNG_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a -++ export PNG_LIB -++ PNG_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export PNG_SRC -++ PNG_VER=v1.2.44 -++ export PNG_VER -++ POST_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SLURM_UTILS_PATH=/contrib/sutils/bin -++ export SLURM_UTILS_PATH -++ SP_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ W3EMC_INC4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ Z_INC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/z_v1.2.11 -++ export Z_INC -++ Z_LIB=/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -++ export Z_LIB -++ Z_SRC=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/thirdParty -++ export Z_SRC -++ Z_VER=v1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/apps/modules/modulefiles/contrib:1;/contrib/modulefiles/sutils/default:1;/apps/modules/modulefiles/intel/18.0.5.274:1;/apps/modules/modulefamilies/intel/impi/2018.0.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:1;/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/contrib/modulefiles/cmake/3.9.0:1;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/apps/modules/modulefiles/contrib:/contrib/modulefiles/sutils/default:/apps/modules/modulefiles/intel/18.0.5.274:/apps/modules/modulefamilies/intel/impi/2018.0.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/bacio/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/ip/3.0.2:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/nemsio/2.2.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/sp/2.0.3:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3emc/2.3.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/w3nco/2.0.7:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2/3.1.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/crtm/2.2.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/jasper/1.900.1:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/png/1.2.44:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/z/1.2.11:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/post/8.0.5:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/hdf5_parallel/1.10.6:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/netcdf_parallel/4.7.4:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles/esmf/8.0.0_ParallelNetCDF:/contrib/modulefiles/cmake/3.9.0:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /apps/lmod/7.7.18/libexec/lmod bash list -+ eval echo ''\'''\'';' echo ''\''Currently'\''' ''\''Loaded'\''' ''\''Modules:'\'';' echo ''\'''\''' ''\'''\''' ''\''1)'\''' ''\''contrib'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''9)'\''' ''\''w3emc/2.3.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''17)'\''' ''\''post/8.0.5'\'';' echo ''\'''\''' ''\'''\''' ''\''2)'\''' ''\''sutils/default'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''10)'\''' ''\''w3nco/2.0.7'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''18)'\''' ''\''hdf5_parallel/1.10.6'\'';' echo ''\'''\''' ''\'''\''' ''\''3)'\''' ''\''intel/18.0.5.274'\''' ''\'''\''' ''\''11)'\''' ''\''g2/3.1.1'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''19)'\''' ''\''netcdf_parallel/4.7.4'\'';' echo ''\'''\''' ''\'''\''' ''\''4)'\''' ''\''impi/2018.0.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''12)'\''' ''\''g2tmpl/1.6.0'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''20)'\''' ''\''esmf/8.0.0_ParallelNetCDF'\'';' echo ''\'''\''' ''\'''\''' ''\''5)'\''' ''\''bacio/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''13)'\''' ''\''crtm/2.2.6'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''21)'\''' ''\''cmake/3.9.0'\'';' echo ''\'''\''' ''\'''\''' ''\''6)'\''' ''\''ip/3.0.2'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''14)'\''' ''\''jasper/1.900.1'\''' ''\'''\''' ''\''22)'\''' ''\''fv3'\'';' echo ''\'''\''' ''\'''\''' ''\''7)'\''' ''\''nemsio/2.2.4'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''15)'\''' ''\''png/1.2.44'\'';' echo ''\'''\''' ''\'''\''' ''\''8)'\''' ''\''sp/2.0.3'\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\'''\''' ''\''16)'\''' ''\''z/1.2.11'\'';' echo ''\'''\'';' echo ''\'''\''' ''\'''\'';' echo ''\'''\'';' 'MODULEPATH="/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs";' export '_ModuleTable001_;' '_ModuleTable002_="TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy";' export '_ModuleTable002_;' '_ModuleTable003_="Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh";' export '_ModuleTable003_;' '_ModuleTable004_="dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz";' export '_ModuleTable004_;' '_ModuleTable005_="L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv";' export '_ModuleTable005_;' '_ModuleTable006_="bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u";' export '_ModuleTable006_;' '_ModuleTable007_="d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF";' export '_ModuleTable007_;' '_ModuleTable008_="Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs";' export '_ModuleTable008_;' '_ModuleTable009_="bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w";' export '_ModuleTable009_;' '_ModuleTable010_="LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ";' export '_ModuleTable010_;' '_ModuleTable011_="REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW";' export '_ModuleTable011_;' '_ModuleTable012_="L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh";' export '_ModuleTable012_;' '_ModuleTable013_="eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny";' export '_ModuleTable013_;' '_ModuleTable014_="YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9";' export '_ModuleTable014_;' '_ModuleTable_Sz_="14";' export '_ModuleTable_Sz_;' -++ echo '' - -++ echo Currently Loaded Modules: -Currently Loaded Modules: -++ echo '' '' '1)' contrib '' '' '' '' '' '' '' '' '' '' '' '9)' w3emc/2.3.1 '' '' '' '' '17)' post/8.0.5 - 1) contrib 9) w3emc/2.3.1 17) post/8.0.5 -++ echo '' '' '2)' sutils/default '' '' '' '10)' w3nco/2.0.7 '' '' '' '' '18)' hdf5_parallel/1.10.6 - 2) sutils/default 10) w3nco/2.0.7 18) hdf5_parallel/1.10.6 -++ echo '' '' '3)' intel/18.0.5.274 '' '11)' g2/3.1.1 '' '' '' '' '' '' '' '19)' netcdf_parallel/4.7.4 - 3) intel/18.0.5.274 11) g2/3.1.1 19) netcdf_parallel/4.7.4 -++ echo '' '' '4)' impi/2018.0.4 '' '' '' '' '12)' g2tmpl/1.6.0 '' '' '' '20)' esmf/8.0.0_ParallelNetCDF - 4) impi/2018.0.4 12) g2tmpl/1.6.0 20) esmf/8.0.0_ParallelNetCDF -++ echo '' '' '5)' bacio/2.0.3 '' '' '' '' '' '' '13)' crtm/2.2.6 '' '' '' '' '' '21)' cmake/3.9.0 - 5) bacio/2.0.3 13) crtm/2.2.6 21) cmake/3.9.0 -++ echo '' '' '6)' ip/3.0.2 '' '' '' '' '' '' '' '' '' '14)' jasper/1.900.1 '' '22)' fv3 - 6) ip/3.0.2 14) jasper/1.900.1 22) fv3 -++ echo '' '' '7)' nemsio/2.2.4 '' '' '' '' '' '15)' png/1.2.44 - 7) nemsio/2.2.4 15) png/1.2.44 -++ echo '' '' '8)' sp/2.0.3 '' '' '' '' '' '' '' '' '' '16)' z/1.2.11 - 8) sp/2.0.3 16) z/1.2.11 -++ echo '' - -++ echo '' '' - -++ echo '' - -++ MODULEPATH=/contrib/modulefiles:/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel:/apps/lmod/lmod/modulefiles/Core:/apps/modules/modulefiles/Linux:/apps/modules/modulefiles:/opt/cray/modulefiles:/opt/cray/craype/default/modulefiles:/apps/modules/modulefamilies/intel:/apps/modules/modulefamilies/intel_impi:/scratch2/NCEPDEV/nwprod/NCEPLIBS/modulefiles:/scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImludGVsIixbIm1waSJdPSJpbXBpIix9LG1UPXtiYWNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvYmFjaW8vMi4wLjMiLFsiZnVsbE5hbWUiXT0iYmFjaW8vMi4wLjMiLFsibG9hZE9yZGVyIl09NSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJiYWNpby8yLjAuMyIsfSxjbWFrZT17WyJmbiJdPSIvY29udHJpYi9tb2R1bGVmaWxlcy9jbWFrZS8zLjkuMCIsWyJmdWxs -++ export _ModuleTable001_ -++ _ModuleTable002_=TmFtZSJdPSJjbWFrZS8zLjkuMCIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjbWFrZS8zLjkuMCIsfSxjb250cmliPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvY29udHJpYiIsWyJmdWxsTmFtZSJdPSJjb250cmliIixbImxvYWRPcmRlciJdPTEscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY29udHJpYiIsfSxjcnRtPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9jcnRtLzIuMi42IixbImZ1bGxOYW1lIl09ImNydG0vMi4yLjYiLFsibG9hZE9yZGVy -++ export _ModuleTable002_ -++ _ModuleTable003_=Il09MTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY3J0bS8yLjIuNiIsfSxlc21mPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9lc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImZ1bGxOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsfSxmdjM9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2Vh -++ export _ModuleTable003_ -++ _ModuleTable004_=dGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsL2Z2MyIsWyJmdWxsTmFtZSJdPSJmdjMiLFsibG9hZE9yZGVyIl09MjIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MCxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZnYzIix9LGcyPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy9nMi8zLjEuMSIsWyJmdWxsTmFtZSJdPSJnMi8zLjEuMSIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMi8zLjEuMSIsfSxnMnRtcGw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVz -++ export _ModuleTable004_ -++ _ModuleTable005_=L2cydG1wbC8xLjYuMCIsWyJmdWxsTmFtZSJdPSJnMnRtcGwvMS42LjAiLFsibG9hZE9yZGVyIl09MTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iZzJ0bXBsLzEuNi4wIix9LGhkZjVfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2hkZjVfcGFyYWxsZWwvMS4xMC42IixbImZ1bGxOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImhkZjVfcGFyYWxsZWwvMS4xMC42Iix9LGltcGk9e1siZm4iXT0iL2FwcHMv -++ export _ModuleTable005_ -++ _ModuleTable006_=bW9kdWxlcy9tb2R1bGVmYW1pbGllcy9pbnRlbC9pbXBpLzIwMTguMC40IixbImZ1bGxOYW1lIl09ImltcGkvMjAxOC4wLjQiLFsibG9hZE9yZGVyIl09NCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpbXBpLzIwMTguMC40Iix9LGludGVsPXtbImZuIl09Ii9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvaW50ZWwvMTguMC41LjI3NCIsWyJmdWxsTmFtZSJdPSJpbnRlbC8xOC4wLjUuMjc0IixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW50ZWwvMTguMC41LjI3NCIsfSxpcD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9u -++ export _ModuleTable006_ -++ _ModuleTable007_=d3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvaXAvMy4wLjIiLFsiZnVsbE5hbWUiXT0iaXAvMy4wLjIiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJpcC8zLjAuMiIsfSxqYXNwZXI9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL2phc3Blci8xLjkwMC4xIixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4xIixbImxvYWRPcmRlciJdPTE0LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imphc3Blci8xLjkwMC4xIix9LG5lbXNpbz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERF -++ export _ModuleTable007_ -++ _ModuleTable008_=Vi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvbmVtc2lvLzIuMi40IixbImZ1bGxOYW1lIl09Im5lbXNpby8yLjIuNCIsWyJsb2FkT3JkZXIiXT03LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5lbXNpby8yLjIuNCIsfSxuZXRjZGZfcGFyYWxsZWw9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL25ldGNkZl9wYXJhbGxlbC80LjcuNCIsWyJmdWxsTmFtZSJdPSJuZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsibG9hZE9yZGVyIl09MTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmV0Y2RmX3BhcmFs -++ export _ModuleTable008_ -++ _ModuleTable009_=bGVsLzQuNy40Iix9LHBuZz17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG5nLzEuMi40NCIsWyJmdWxsTmFtZSJdPSJwbmcvMS4yLjQ0IixbImxvYWRPcmRlciJdPTE1LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBuZy8xLjIuNDQiLH0scG9zdD17WyJmbiJdPSIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMvcG9zdC84LjAuNSIsWyJmdWxsTmFtZSJdPSJwb3N0LzguMC41IixbImxvYWRPcmRlciJdPTE3LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InBvc3QvOC4w -++ export _ModuleTable009_ -++ _ModuleTable010_=LjUiLH0sc3A9e1siZm4iXT0iL3NjcmF0Y2gyL05DRVBERVYvbndwcm9kL05DRVBMSUJTL21vZHVsZWZpbGVzL3NwLzIuMC4zIixbImZ1bGxOYW1lIl09InNwLzIuMC4zIixbImxvYWRPcmRlciJdPTgscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3AvMi4wLjMiLH0sc3V0aWxzPXtbImZuIl09Ii9jb250cmliL21vZHVsZWZpbGVzL3N1dGlscy9kZWZhdWx0IixbImZ1bGxOYW1lIl09InN1dGlscy9kZWZhdWx0IixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ic3V0aWxzIix9LHczZW1jPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQ -++ export _ModuleTable010_ -++ _ModuleTable011_=REVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M2VtYy8yLjMuMSIsWyJmdWxsTmFtZSJdPSJ3M2VtYy8yLjMuMSIsWyJsb2FkT3JkZXIiXT05LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09InczZW1jLzIuMy4xIix9LHczbmNvPXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVWL253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy93M25jby8yLjAuNyIsWyJmdWxsTmFtZSJdPSJ3M25jby8yLjAuNyIsWyJsb2FkT3JkZXIiXT0xMCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6PXtbImZuIl09Ii9zY3JhdGNoMi9OQ0VQREVW -++ export _ModuleTable011_ -++ _ModuleTable012_=L253cHJvZC9OQ0VQTElCUy9tb2R1bGVmaWxlcy96LzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6LzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6LzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9jb250cmliL21vZHVsZWZpbGVzIiwiL3NjcmF0Y2gyL05DRVBERVYvZnYzLWNhbS9EdXNhbi5Kb3ZpYy91ZnMvTUczX3J2MS91ZnMtd2VhdGhlci1tb2RlbC9tb2R1bGVmaWxlcy9oZXJhLmludGVsIiwiL2FwcHMvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZpbGVzL0xpbnV4IiwiL2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlcyIsIi9vcHQvY3Jh -++ export _ModuleTable012_ -++ _ModuleTable013_=eS9tb2R1bGVmaWxlcyIsIi9vcHQvY3JheS9jcmF5cGUvZGVmYXVsdC9tb2R1bGVmaWxlcyIsIi9hcHBzL21vZHVsZXMvbW9kdWxlZmFtaWxpZXMvaW50ZWwiLCIvYXBwcy9tb2R1bGVzL21vZHVsZWZhbWlsaWVzL2ludGVsX2ltcGkiLCIvc2NyYXRjaDIvTkNFUERFVi9ud3Byb2QvTkNFUExJQlMvbW9kdWxlZmlsZXMiLCIvc2NyYXRjaDEvTkNFUERFVi9uZW1zL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIix9LFsic3lzdGVtQmFzZU1QQVRIIl09Ii9hcHBzL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi9hcHBzL21vZHVsZXMvbW9kdWxlZmlsZXMvTGludXg6L2FwcHMvbW9kdWxlcy9tb2R1bGVmaWxlczovb3B0L2NyYXkvbW9kdWxlZmlsZXM6L29wdC9jcmF5L2Ny -++ export _ModuleTable013_ -++ _ModuleTable014_=YXlwZS9kZWZhdWx0L21vZHVsZWZpbGVzIix9 -++ export _ModuleTable014_ -++ _ModuleTable_Sz_=14 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_9 -+ cmake /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y --- The C compiler identification is Intel 18.0.5.20180823 --- The CXX compiler identification is Intel 18.0.5.20180823 --- The Fortran compiler identification is Intel 18.0.5.20180823 --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc --- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc --- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort --- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 --- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_CXX: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpicxx.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so --- Found MPI_Fortran: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpifort.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/release_mt/libmpi.so;/apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/lib/libmpigi.a;/usr/lib64/libdl.so;/usr/lib64/librt.so;/usr/lib64/libpthread.so -ESMFMKFILE: /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod;/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include;/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for hera.intel - -C compiler: Intel 18.0.5.20180823 (mpiicc) -CXX compiler: Intel 18.0.5.20180823 (mpiicpc) -Fortran compiler: Intel 18.0.5.20180823 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=hera ww3_nems - in: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9 -+ make -j 8 -Scanning dependencies of target ww3_nems -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Linking Fortran static library libccpp.a -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Built target ccpp -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Built target ww3_nems -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': -jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_9.exe -+ cp /scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/hera.intel/fv3 ../modules.fv3_9 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_9 -+ elapsed=484 -+ echo 'Elapsed time 484 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished' -Elapsed time 484 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ export RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ RUNDIR_ROOT=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP' ++ export COMPILE_NR=9 ++ COMPILE_NR=9 ++ cd /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests ++ [[ -e /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9.env ]] ++ source /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9.env +++ export MACHINE_ID=hera.intel +++ MACHINE_ID=hera.intel +++ export PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ PATHRT=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests +++ export PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ PATHTR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ REGRESSIONTEST_LOG=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/RegressionTests_hera.intel.log +++ export LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel +++ LOG_DIR=/scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/log_hera.intel ++ source default_vars.sh +++ '[' hera.intel = wcoss ']' +++ '[' hera.intel = wcoss_cray ']' +++ '[' hera.intel = wcoss_dell_p3 ']' +++ [[ hera.intel = orion.* ]] +++ [[ hera.intel = hera.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=40 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=20 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=9 ++ TEST_NR=9 ++ export JBNME=compile_9 ++ JBNME=compile_9 ++ export RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9 ++ RUNDIR=/scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9 ++ source rt_utils.sh +++ set -eu +++ [[ /scratch1/BMC/gmtb/Dom.Heinzeller/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/rt/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9 ++ cd /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/compile_9 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 8370862 +TEST 9 compile is waiting to enter the queue +1 min. TEST 9 compile is running, Status: R +2 min. TEST 9 compile is running, Status: R +3 min. TEST 9 compile is running, Status: R +4 min. TEST 9 compile is running, Status: R +5 min. TEST 9 compile is running, Status: R +6 min. TEST 9 compile is running, Status: R +7 min. TEST 9 compile is running, Status: R +Slurm unknown status CG. Check sacct ... +8370862 COMPLETED compile_9 +8370862.bat+ COMPLETED batch +8370862.ext+ COMPLETED extern +8 min. TEST 9 compile is COMPLETED +COMPLETED +COMPLETED +Slurm unknown status -. Check sacct ... +8370862 COMPLETED compile_9 +8370862.bat+ COMPLETED batch +8370862.ext+ COMPLETED extern +9 min. TEST 9 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=546 ++ echo 'Elapsed time 546 seconds. Compile 9' +Elapsed time 546 seconds. Compile 9 diff --git a/tests/Compile_orion.intel.log b/tests/Compile_orion.intel.log new file mode 100644 index 0000000000..ce76785821 --- /dev/null +++ b/tests/Compile_orion.intel.log @@ -0,0 +1,1445 @@ ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y' ++ export COMPILE_NR=10 ++ COMPILE_NR=10 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=10 ++ TEST_NR=10 ++ export JBNME=compile_10 ++ JBNME=compile_10 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_10 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69991 +TEST 10 compile is waiting to enter the queue +1 min. TEST 10 compile is running, Status: R +2 min. TEST 10 compile is running, Status: R +3 min. TEST 10 compile is running, Status: R +4 min. TEST 10 compile is running, Status: R +5 min. TEST 10 compile is running, Status: R +6 min. TEST 10 compile is running, Status: R +7 min. TEST 10 compile is running, Status: R +8 min. TEST 10 compile is running, Status: R +9 min. TEST 10 compile is running, Status: R +10 min. TEST 10 compile is running, Status: R +11 min. TEST 10 compile is running, Status: R +12 min. TEST 10 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69991 COMPLETED compile_10 +69991.batch COMPLETED batch +69991.extern COMPLETED extern +13 min. TEST 10 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=786 ++ echo 'Elapsed time 786 seconds. Compile 10' +Elapsed time 786 seconds. Compile 10 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=11 ++ COMPILE_NR=11 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=11 ++ TEST_NR=11 ++ export JBNME=compile_11 ++ JBNME=compile_11 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_11 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 70005 +TEST 11 compile is waiting to enter the queue +1 min. TEST 11 compile is running, Status: R +2 min. TEST 11 compile is running, Status: R +Slurm unknown status -. Check sacct ... +70005 COMPLETED compile_11 +70005.batch COMPLETED batch +70005.extern COMPLETED extern +3 min. TEST 11 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=186 ++ echo 'Elapsed time 186 seconds. Compile 11' +Elapsed time 186 seconds. Compile 11 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ export COMPILE_NR=12 ++ COMPILE_NR=12 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=12 ++ TEST_NR=12 ++ export JBNME=compile_12 ++ JBNME=compile_12 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_12 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 70012 +TEST 12 compile is waiting to enter the queue +1 min. TEST 12 compile is running, Status: R +2 min. TEST 12 compile is running, Status: R +3 min. TEST 12 compile is running, Status: R +4 min. TEST 12 compile is running, Status: R +5 min. TEST 12 compile is running, Status: R +6 min. TEST 12 compile is running, Status: R +7 min. TEST 12 compile is running, Status: R +Slurm unknown status -. Check sacct ... +70012 COMPLETED compile_12 +70012.batch COMPLETED batch +70012.extern COMPLETED extern +8 min. TEST 12 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=486 ++ echo 'Elapsed time 486 seconds. Compile 12' +Elapsed time 486 seconds. Compile 12 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=13 ++ COMPILE_NR=13 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=13 ++ TEST_NR=13 ++ export JBNME=compile_13 ++ JBNME=compile_13 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_13 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 70024 +TEST 13 compile is waiting to enter the queue +1 min. TEST 13 compile is running, Status: R +2 min. TEST 13 compile is running, Status: R +3 min. TEST 13 compile is running, Status: R +4 min. TEST 13 compile is running, Status: R +5 min. TEST 13 compile is running, Status: R +6 min. TEST 13 compile is running, Status: R +7 min. TEST 13 compile is running, Status: R +8 min. TEST 13 compile is running, Status: R +Slurm unknown status -. Check sacct ... +70024 COMPLETED compile_13 +70024.batch COMPLETED batch +70024.extern COMPLETED extern +9 min. TEST 13 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=546 ++ echo 'Elapsed time 546 seconds. Compile 13' +Elapsed time 546 seconds. Compile 13 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017' ++ export COMPILE_NR=1 ++ COMPILE_NR=1 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=1 ++ TEST_NR=1 ++ export JBNME=compile_1 ++ JBNME=compile_1 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_1 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69992 +TEST 1 compile is waiting to enter the queue +1 min. TEST 1 compile is running, Status: R +2 min. TEST 1 compile is running, Status: R +3 min. TEST 1 compile is running, Status: R +4 min. TEST 1 compile is running, Status: R +5 min. TEST 1 compile is running, Status: R +6 min. TEST 1 compile is running, Status: R +7 min. TEST 1 compile is running, Status: R +8 min. TEST 1 compile is running, Status: R +9 min. TEST 1 compile is running, Status: R +10 min. TEST 1 compile is running, Status: R +11 min. TEST 1 compile is running, Status: R +12 min. TEST 1 compile is running, Status: R +13 min. TEST 1 compile is running, Status: R +14 min. TEST 1 compile is running, Status: R +15 min. TEST 1 compile is running, Status: R +16 min. TEST 1 compile is running, Status: R +17 min. TEST 1 compile is running, Status: R +18 min. TEST 1 compile is running, Status: R +19 min. TEST 1 compile is running, Status: R +20 min. TEST 1 compile is running, Status: R +21 min. TEST 1 compile is running, Status: R +22 min. TEST 1 compile is running, Status: R +23 min. TEST 1 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69992 COMPLETED compile_1 +69992.batch COMPLETED batch +69992.extern COMPLETED extern +24 min. TEST 1 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=1447 ++ echo 'Elapsed time 1447 seconds. Compile 1' +Elapsed time 1447 seconds. Compile 1 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ export COMPILE_NR=2 ++ COMPILE_NR=2 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=2 ++ TEST_NR=2 ++ export JBNME=compile_2 ++ JBNME=compile_2 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_2 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69994 +TEST 2 compile is waiting to enter the queue +1 min. TEST 2 compile is running, Status: R +2 min. TEST 2 compile is running, Status: R +3 min. TEST 2 compile is running, Status: R +4 min. TEST 2 compile is running, Status: R +5 min. TEST 2 compile is running, Status: R +6 min. TEST 2 compile is running, Status: R +7 min. TEST 2 compile is running, Status: R +8 min. TEST 2 compile is running, Status: R +9 min. TEST 2 compile is running, Status: R +10 min. TEST 2 compile is running, Status: R +11 min. TEST 2 compile is running, Status: R +12 min. TEST 2 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69994 COMPLETED compile_2 +69994.batch COMPLETED batch +69994.extern COMPLETED extern +13 min. TEST 2 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=786 ++ echo 'Elapsed time 786 seconds. Compile 2' +Elapsed time 786 seconds. Compile 2 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ export COMPILE_NR=3 ++ COMPILE_NR=3 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=3 ++ TEST_NR=3 ++ export JBNME=compile_3 ++ JBNME=compile_3 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_3 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69989 +TEST 3 compile is waiting to enter the queue +1 min. TEST 3 compile is running, Status: R +2 min. TEST 3 compile is running, Status: R +3 min. TEST 3 compile is running, Status: R +4 min. TEST 3 compile is running, Status: R +5 min. TEST 3 compile is running, Status: R +6 min. TEST 3 compile is running, Status: R +7 min. TEST 3 compile is running, Status: R +8 min. TEST 3 compile is running, Status: R +9 min. TEST 3 compile is running, Status: R +10 min. TEST 3 compile is running, Status: R +11 min. TEST 3 compile is running, Status: R +12 min. TEST 3 compile is running, Status: R +13 min. TEST 3 compile is running, Status: R +14 min. TEST 3 compile is running, Status: R +15 min. TEST 3 compile is running, Status: R +16 min. TEST 3 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69989 COMPLETED compile_3 +69989.batch COMPLETED batch +69989.extern COMPLETED extern +17 min. TEST 3 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=1027 ++ echo 'Elapsed time 1027 seconds. Compile 3' +Elapsed time 1027 seconds. Compile 3 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ export COMPILE_NR=4 ++ COMPILE_NR=4 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=4 ++ TEST_NR=4 ++ export JBNME=compile_4 ++ JBNME=compile_4 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_4 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69993 +TEST 4 compile is waiting to enter the queue +1 min. TEST 4 compile is running, Status: R +2 min. TEST 4 compile is running, Status: R +3 min. TEST 4 compile is running, Status: R +4 min. TEST 4 compile is running, Status: R +5 min. TEST 4 compile is running, Status: R +6 min. TEST 4 compile is running, Status: R +7 min. TEST 4 compile is running, Status: R +8 min. TEST 4 compile is running, Status: R +9 min. TEST 4 compile is running, Status: R +10 min. TEST 4 compile is running, Status: R +11 min. TEST 4 compile is running, Status: R +12 min. TEST 4 compile is running, Status: R +13 min. TEST 4 compile is running, Status: R +14 min. TEST 4 compile is running, Status: R +15 min. TEST 4 compile is running, Status: R +16 min. TEST 4 compile is running, Status: R +17 min. TEST 4 compile is running, Status: R +18 min. TEST 4 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69993 COMPLETED compile_4 +69993.batch COMPLETED batch +69993.extern COMPLETED extern +19 min. TEST 4 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=1147 ++ echo 'Elapsed time 1147 seconds. Compile 4' +Elapsed time 1147 seconds. Compile 4 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=5 ++ COMPILE_NR=5 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=5 ++ TEST_NR=5 ++ export JBNME=compile_5 ++ JBNME=compile_5 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_5 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69990 +TEST 5 compile is waiting to enter the queue +1 min. TEST 5 compile is running, Status: R +2 min. TEST 5 compile is running, Status: R +3 min. TEST 5 compile is running, Status: R +4 min. TEST 5 compile is running, Status: R +5 min. TEST 5 compile is running, Status: R +6 min. TEST 5 compile is running, Status: R +7 min. TEST 5 compile is running, Status: R +8 min. TEST 5 compile is running, Status: R +9 min. TEST 5 compile is running, Status: R +10 min. TEST 5 compile is running, Status: R +11 min. TEST 5 compile is running, Status: R +12 min. TEST 5 compile is running, Status: R +13 min. TEST 5 compile is running, Status: R +14 min. TEST 5 compile is running, Status: R +15 min. TEST 5 compile is running, Status: R +16 min. TEST 5 compile is running, Status: R +17 min. TEST 5 compile is running, Status: R +18 min. TEST 5 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69990 COMPLETED compile_5 +69990.batch COMPLETED batch +69990.extern COMPLETED extern +19 min. TEST 5 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=1147 ++ echo 'Elapsed time 1147 seconds. Compile 5' +Elapsed time 1147 seconds. Compile 5 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=6 ++ COMPILE_NR=6 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=6 ++ TEST_NR=6 ++ export JBNME=compile_6 ++ JBNME=compile_6 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_6 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69987 +TEST 6 compile is waiting to enter the queue +1 min. TEST 6 compile is running, Status: R +2 min. TEST 6 compile is running, Status: R +3 min. TEST 6 compile is running, Status: R +4 min. TEST 6 compile is running, Status: R +5 min. TEST 6 compile is running, Status: R +6 min. TEST 6 compile is running, Status: R +7 min. TEST 6 compile is running, Status: R +8 min. TEST 6 compile is running, Status: R +9 min. TEST 6 compile is running, Status: R +10 min. TEST 6 compile is running, Status: R +11 min. TEST 6 compile is running, Status: R +12 min. TEST 6 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69987 COMPLETED compile_6 +69987.batch COMPLETED batch +69987.extern COMPLETED extern +13 min. TEST 6 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=786 ++ echo 'Elapsed time 786 seconds. Compile 6' +Elapsed time 786 seconds. Compile 6 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' ++ export COMPILE_NR=7 ++ COMPILE_NR=7 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=7 ++ TEST_NR=7 ++ export JBNME=compile_7 ++ JBNME=compile_7 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_7 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69988 +TEST 7 compile is waiting to enter the queue +1 min. TEST 7 compile is running, Status: R +2 min. TEST 7 compile is running, Status: R +3 min. TEST 7 compile is running, Status: R +4 min. TEST 7 compile is running, Status: R +5 min. TEST 7 compile is running, Status: R +6 min. TEST 7 compile is running, Status: R +7 min. TEST 7 compile is running, Status: R +8 min. TEST 7 compile is running, Status: R +9 min. TEST 7 compile is running, Status: R +10 min. TEST 7 compile is running, Status: R +11 min. TEST 7 compile is running, Status: R +12 min. TEST 7 compile is running, Status: R +13 min. TEST 7 compile is running, Status: R +14 min. TEST 7 compile is running, Status: R +15 min. TEST 7 compile is running, Status: R +16 min. TEST 7 compile is running, Status: R +17 min. TEST 7 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69988 COMPLETED compile_7 +69988.batch COMPLETED batch +69988.extern COMPLETED extern +18 min. TEST 7 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=1087 ++ echo 'Elapsed time 1087 seconds. Compile 7' +Elapsed time 1087 seconds. Compile 7 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ export COMPILE_NR=8 ++ COMPILE_NR=8 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=8 ++ TEST_NR=8 ++ export JBNME=compile_8 ++ JBNME=compile_8 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_8 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69986 +TEST 8 compile is waiting to enter the queue +1 min. TEST 8 compile is running, Status: R +2 min. TEST 8 compile is running, Status: R +3 min. TEST 8 compile is running, Status: R +4 min. TEST 8 compile is running, Status: R +5 min. TEST 8 compile is running, Status: R +6 min. TEST 8 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69986 COMPLETED compile_8 +69986.batch COMPLETED batch +69986.extern COMPLETED extern +7 min. TEST 8 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 8' +Elapsed time 426 seconds. Compile 8 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ export RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ RUNDIR_ROOT=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP' ++ export COMPILE_NR=9 ++ COMPILE_NR=9 ++ cd /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests ++ [[ -e /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9.env ]] ++ source /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9.env +++ export MACHINE_ID=orion.intel +++ MACHINE_ID=orion.intel +++ export PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ PATHRT=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests +++ export PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ PATHTR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify +++ export SCHEDULER=slurm +++ SCHEDULER=slurm +++ export ACCNR=gsd-hpcs +++ ACCNR=gsd-hpcs +++ export QUEUE=batch +++ QUEUE=batch +++ export PARTITION=orion +++ PARTITION=orion +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ REGRESSIONTEST_LOG=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/RegressionTests_orion.intel.log +++ export LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel +++ LOG_DIR=/work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/log_orion.intel ++ source default_vars.sh +++ '[' orion.intel = wcoss ']' +++ '[' orion.intel = wcoss_cray ']' +++ '[' orion.intel = wcoss_dell_p3 ']' +++ [[ orion.intel = orion.* ]] +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=12 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=12 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=9 ++ TEST_NR=9 ++ export JBNME=compile_9 ++ JBNME=compile_9 ++ export RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9 ++ RUNDIR=/work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9 ++ source rt_utils.sh +++ set -eu +++ [[ /work/noaa/gmtb/dheinzel/ufs-weather-model/ufs-weather-model-emc-develop-20200401-merge-hwrf-sas_UPDATE_20200603/create_and_verify/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9 ++ cd /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/compile_9 ++ [[ slurm = \s\l\u\r\m ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +Job id 69985 +TEST 9 compile is waiting to enter the queue +1 min. TEST 9 compile is running, Status: R +2 min. TEST 9 compile is running, Status: R +3 min. TEST 9 compile is running, Status: R +4 min. TEST 9 compile is running, Status: R +5 min. TEST 9 compile is running, Status: R +6 min. TEST 9 compile is running, Status: R +7 min. TEST 9 compile is running, Status: R +Slurm unknown status -. Check sacct ... +69985 COMPLETED compile_9 +69985.batch COMPLETED batch +69985.extern COMPLETED extern +8 min. TEST 9 compile is COMPLETED +COMPLETED +COMPLETED ++ elapsed=486 ++ echo 'Elapsed time 486 seconds. Compile 9' +Elapsed time 486 seconds. Compile 9 diff --git a/tests/Compile_ut_hera.intel.log b/tests/Compile_ut_hera.intel.log new file mode 100644 index 0000000000..78dc3e6955 --- /dev/null +++ b/tests/Compile_ut_hera.intel.log @@ -0,0 +1,19534 @@ ++ SECONDS=0 ++ [[ 4 -lt 2 ]] ++ readonly PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ readonly BUILD_TARGET=hera.intel ++ BUILD_TARGET=hera.intel ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y' ++ readonly BUILD_NAME=fv3_32bit ++ BUILD_NAME=fv3_32bit ++ readonly clean_before=YES ++ clean_before=YES ++ readonly clean_after=YES ++ clean_after=YES ++ hostname +hfe01 ++ echo 'Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y into fv3_32bit.exe on hera.intel' +Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y into fv3_32bit.exe on hera.intel ++ gnu_make=gmake ++ which gmake +/usr/bin/gmake ++ [[ hera.intel == cheyenne.* ]] ++ [[ hera.intel == stampede.* ]] ++ MAKE_THREADS=8 ++ [[ 8 -gt 1 ]] ++ echo Using '$MAKE_THREADS=8' threads to build FV3 and FMS. +Using $MAKE_THREADS=8 threads to build FV3 and FMS. ++ echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. +Consider reducing $MAKE_THREADS if you hit memory or process limits. ++ gnu_make='gmake -j 8' ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../NEMS ++ COMPONENTS=FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\C\C\P\P\=\Y* ]] ++ COMPONENTS=CCPP,FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\W\W\3\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\D\E\B\U\G\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\D\E\B\U\G\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\R\E\P\R\O\=\Y* ]] ++ NEMS_BUILDOPT= ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_32bit BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y' NEMS_BUILDOPT= distclean +Will copy modules.nems and NEMS.x as fv3_32bit under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +ls: cannot access */*.a: No such file or directory +ls: cannot access */*.o: No such file or directory +ls: cannot access */*.mod: No such file or directory +ls: cannot access */depend: No such file or directory +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 --clean ; \ +cd $PATH_CCPP ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include" ; \ +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 --clean +INFO: Logging level set to INFO +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Performing clean .... +INFO: CCPP prebuild clean completed successfully, exiting. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test_results.mk ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y == *\C\C\P\P\=\Y* ]] ++ mkdir -p /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_32bit BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y' NEMS_BUILDOPT= build +Will copy modules.nems and NEMS.x as fv3_32bit under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_32bit" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_32bit +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh" +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +if [ -f "/modules.nems" ] ; then \ + . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ +fi ; \ +( \ +echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ +echo "CASELESS_FILESYSTEM=NO" ; \ +if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ +) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ +exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" all + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov_kernel.F90 -o ../monin_obukhov/monin_obukhov_kernel.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../affinity/affinity.c -o ../affinity/affinity.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../affinity/fms_affinity.F90 -o ../affinity/fms_affinity.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o +ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../affinity/fms_affinity.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../constants/constants.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.o ../diag_integral/diag_integral.o ../diag_manager/diag_axis.o ../diag_manager/diag_data.o ../diag_manager/diag_grid.o ../diag_manager/diag_manifest.o ../diag_manager/diag_manager.o ../diag_manager/diag_output.o ../diag_manager/diag_table.o ../diag_manager/diag_util.o ../drifters/cloud_interpolator.o ../drifters/drifters.o ../drifters/drifters_comm.o ../drifters/drifters_core.o ../drifters/drifters_input.o ../drifters/drifters_io.o ../drifters/quicksort.o ../exchange/stock_constants.o ../exchange/xgrid.o ../fft/fft.o ../fft/fft99.o ../field_manager/field_manager.o ../field_manager/fm_util.o ../fms/fms.o ../fms/fms_io.o ../horiz_interp/horiz_interp.o ../horiz_interp/horiz_interp_bicubic.o ../horiz_interp/horiz_interp_bilinear.o ../horiz_interp/horiz_interp_conserve.o ../horiz_interp/horiz_interp_spherical.o ../horiz_interp/horiz_interp_type.o ../interpolator/interpolator.o ../memutils/memutils.o ../monin_obukhov/monin_obukhov.o ../monin_obukhov/monin_obukhov_kernel.o ../mosaic/gradient.o ../mosaic/grid.o ../mosaic/mosaic.o ../mpp/mpp.o ../mpp/mpp_data.o ../mpp/mpp_domains.o ../mpp/mpp_efp.o ../mpp/mpp_io.o ../mpp/mpp_memutils.o ../mpp/mpp_parameter.o ../mpp/mpp_pset.o ../mpp/mpp_utilities.o ../oda_tools/oda_core.o ../oda_tools/oda_core_ecda.o ../oda_tools/oda_types.o ../oda_tools/write_ocean_data.o ../platform/platform.o ../random_numbers/MersenneTwister.o ../random_numbers/random_numbers.o ../sat_vapor_pres/sat_vapor_pres.o ../sat_vapor_pres/sat_vapor_pres_k.o ../station_data/station_data.o ../time_interp/time_interp.o ../time_interp/time_interp_external.o ../time_manager/get_cal_time.o ../time_manager/time_manager.o ../topography/gaussian_topog.o ../topography/topography.o ../tracer_manager/tracer_manager.o ../tridiagonal/tridiagonal.o ../affinity/affinity.o ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/nsclock.o ../mpp/threadloc.o +ar: creating libfms.a +a - ../oda_tools/xbt_drop_rate_adjust.o +a - ../affinity/fms_affinity.o +a - ../amip_interp/amip_interp.o +a - ../astronomy/astronomy.o +a - ../axis_utils/axis_utils.o +a - ../block_control/block_control.o +a - ../column_diagnostics/column_diagnostics.o +a - ../constants/constants.o +a - ../coupler/atmos_ocean_fluxes.o +a - ../coupler/coupler_types.o +a - ../coupler/ensemble_manager.o +a - ../data_override/data_override.o +a - ../diag_integral/diag_integral.o +a - ../diag_manager/diag_axis.o +a - ../diag_manager/diag_data.o +a - ../diag_manager/diag_grid.o +a - ../diag_manager/diag_manifest.o +a - ../diag_manager/diag_manager.o +a - ../diag_manager/diag_output.o +a - ../diag_manager/diag_table.o +a - ../diag_manager/diag_util.o +a - ../drifters/cloud_interpolator.o +a - ../drifters/drifters.o +a - ../drifters/drifters_comm.o +a - ../drifters/drifters_core.o +a - ../drifters/drifters_input.o +a - ../drifters/drifters_io.o +a - ../drifters/quicksort.o +a - ../exchange/stock_constants.o +a - ../exchange/xgrid.o +a - ../fft/fft.o +a - ../fft/fft99.o +a - ../field_manager/field_manager.o +a - ../field_manager/fm_util.o +a - ../fms/fms.o +a - ../fms/fms_io.o +a - ../horiz_interp/horiz_interp.o +a - ../horiz_interp/horiz_interp_bicubic.o +a - ../horiz_interp/horiz_interp_bilinear.o +a - ../horiz_interp/horiz_interp_conserve.o +a - ../horiz_interp/horiz_interp_spherical.o +a - ../horiz_interp/horiz_interp_type.o +a - ../interpolator/interpolator.o +a - ../memutils/memutils.o +a - ../monin_obukhov/monin_obukhov.o +a - ../monin_obukhov/monin_obukhov_kernel.o +a - ../mosaic/gradient.o +a - ../mosaic/grid.o +a - ../mosaic/mosaic.o +a - ../mpp/mpp.o +a - ../mpp/mpp_data.o +a - ../mpp/mpp_domains.o +a - ../mpp/mpp_efp.o +a - ../mpp/mpp_io.o +a - ../mpp/mpp_memutils.o +a - ../mpp/mpp_parameter.o +a - ../mpp/mpp_pset.o +a - ../mpp/mpp_utilities.o +a - ../oda_tools/oda_core.o +a - ../oda_tools/oda_core_ecda.o +a - ../oda_tools/oda_types.o +a - ../oda_tools/write_ocean_data.o +a - ../platform/platform.o +a - ../random_numbers/MersenneTwister.o +a - ../random_numbers/random_numbers.o +a - ../sat_vapor_pres/sat_vapor_pres.o +a - ../sat_vapor_pres/sat_vapor_pres_k.o +a - ../station_data/station_data.o +a - ../time_interp/time_interp.o +a - ../time_interp/time_interp_external.o +a - ../time_manager/get_cal_time.o +a - ../time_manager/time_manager.o +a - ../topography/gaussian_topog.o +a - ../topography/topography.o +a - ../tracer_manager/tracer_manager.o +a - ../tridiagonal/tridiagonal.o +a - ../affinity/affinity.o +a - ../memutils/memuse.o +a - ../mosaic/create_xgrid.o +a - ../mosaic/gradient_c2l.o +a - ../mosaic/interp.o +a - ../mosaic/mosaic_util.o +a - ../mosaic/read_mosaic.o +a - ../mpp/nsclock.o +a - ../mpp/threadloc.o +mkdir -p "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 ; \ +cd $PATH_CCPP ; \ +./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk \ + "CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"" NO NO ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/include ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/lib + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 +INFO: Logging level set to INFO +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Parsing suite definition files ... +INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... +INFO: Parsing metadata tables for variables provided by host model ... +INFO: Parsed variable definition tables in module machine +INFO: Parsed variable definition tables in module module_radsw_parameters +INFO: Parsed variable definition tables in module module_radlw_parameters +INFO: Parsed variable definition tables in module CCPP_typedefs +INFO: Parsed variable definition tables in module GFS_typedefs +INFO: Parsed variable definition tables in module CCPP_data +INFO: Parsed variable definition tables in module mo_gas_optics_rrtmgp +INFO: Parsed variable definition tables in module mo_gas_concentrations +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_arry +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_1scl +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_2str +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_nstr +INFO: Parsed variable definition tables in module mo_optical_props +INFO: Parsed variable definition tables in module mo_cloud_optics +INFO: Parsed variable definition tables in module mo_source_functions +INFO: Parsed variable definition tables in module ccpp_types +INFO: Convert local names from new metadata format into old metadata format ... +INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata +INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata +INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata +INFO: Converting local name facsf of variable fractional_coverage_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata +INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata +INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata +INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata +INFO: Converting local name gas_concentrations of variable Gas_concentrations_for_RRTMGP_suite from new to old metadata +INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata +INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata +INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata +INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata +INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata +INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata +INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata +INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata +INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata +INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata +INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata +INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata +INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata +INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata +INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata +INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata +INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata +INFO: Converting local name toa_src_sw of variable toa_incident_sw_flux_by_spectral_point from new to old metadata +INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata +INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata +INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata +INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata +INFO: Converting local name oro of variable orography from new to old metadata +INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata +INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata +INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata +INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata +INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata +INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata +INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata +INFO: Converting local name condition of variable physics_field_for_coupling from new to old metadata +INFO: Converting local name ntasks of variable mpi_size from new to old metadata +INFO: Converting local name hlwb of variable RRTMGP_lw_heating_rate_spectral from new to old metadata +INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata +INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata +INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata +INFO: Converting local name cld_swp of variable RRTMGP_cloud_snow_water_path from new to old metadata +INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata +INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata +INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata +INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata +INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata +INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata +INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata +INFO: Converting local name slag of variable equation_of_time from new to old metadata +INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata +INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata +INFO: Converting local name rrtmgp_nGptsLW of variable number_of_lw_spectral_points_rrtmgp from new to old metadata +INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata +INFO: Converting local name aerosolslw of variable RRTMGP_aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata +INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata +INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata +INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name qsq of variable q_prime_squared from new to old metadata +INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata +INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name flxprf_sw of variable RRTMGP_sw_fluxes from new to old metadata +INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata +INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata +INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata +INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata +INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata +INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata +INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata +INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata +INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata +INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata +INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata +INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata +INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata +INFO: Converting local name ty_cloud_optics of variable ty_cloud_optics from new to old metadata +INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata +INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata +INFO: Converting local name ty_optical_props_2str of variable ty_optical_props_2str from new to old metadata +INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata +INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata +INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata +INFO: Converting local name logunit of variable iounit_log from new to old metadata +INFO: Converting local name lw_optical_props_cloudsByBand of variable longwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata +INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata +INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata +INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata +INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata +INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata +INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata +INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata +INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata +INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata +INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata +INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata +INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata +INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata +INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata +INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata +INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata +INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata +INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata +INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata +INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata +INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata +INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata +INFO: Converting local name ty_optical_props_nstr of variable ty_optical_props_nstr from new to old metadata +INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata +INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata +INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata +INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata +INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata +INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata +INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata +INFO: Converting local name icseed_lw of variable seed_random_numbers_lw_for_RRTMGP from new to old metadata +INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata +INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata +INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata +INFO: Converting local name fluxlwUP_clrsky of variable RRTMGP_lw_flux_profile_upward_clrsky from new to old metadata +INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata +INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata +INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata +INFO: Converting local name fluxlwDOWN_allsky of variable RRTMGP_lw_flux_profile_downward_allsky from new to old metadata +INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata +INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata +INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata +INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata +INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata +INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata +INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata +INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata +INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata +INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata +INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata +INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata +INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata +INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata +INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata +INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata +INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata +INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata +INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata +INFO: Converting local name f_rimef of variable rime_factor from new to old metadata +INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata +INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata +INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata +INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata +INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata +INFO: Converting local name cld_reliq of variable RRTMGP_mean_effective_radius_for_liquid_cloud from new to old metadata +INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata +INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata +INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata +INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata +INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata +INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata +INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata +INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata +INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata +INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata +INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata +INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata +INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata +INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata +INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata +INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata +INFO: Converting local name icseed_sw of variable seed_random_numbers_sw_for_RRTMGP from new to old metadata +INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata +INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata +INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata +INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata +INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata +INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata +INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata +INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata +INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata +INFO: Converting local name aerosolssw of variable RRTMGP_aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata +INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata +INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata +INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata +INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata +INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata +INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata +INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata +INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata +INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata +INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata +INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata +INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata +INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata +INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata +INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata +INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata +INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata +INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata +INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata +INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata +INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata +INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata +INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata +INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata +INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata +INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata +INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata +INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata +INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata +INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata +INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata +INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata +INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata +INFO: Converting local name ipsdlw0 of variable initial_permutation_seed_lw from new to old metadata +INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata +INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata +INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata +INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata +INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata +INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata +INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata +INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata +INFO: Converting local name area of variable cell_area from new to old metadata +INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata +INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata +INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata +INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata +INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata +INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata +INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata +INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata +INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata +INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata +INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata +INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata +INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata +INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata +INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata +INFO: Converting local name LTP of variable extra_top_layer from new to old metadata +INFO: Converting local name solcon of variable solar_constant from new to old metadata +INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata +INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata +INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata +INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata +INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata +INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata +INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata +INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata +INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata +INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata +INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata +INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata +INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata +INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata +INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata +INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata +INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata +INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata +INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata +INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata +INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata +INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata +INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata +INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata +INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata +INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata +INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata +INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata +INFO: Converting local name vvl of variable omega from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata +INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata +INFO: Converting local name restart of variable flag_for_restart from new to old metadata +INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata +INFO: Converting local name ty_gas_concs of variable ty_gas_concs from new to old metadata +INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata +INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata +INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata +INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata +INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata +INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata +INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata +INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata +INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata +INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata +INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata +INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name sfc_alb_nir_dif of variable surface_albedo_nearIR_diffuse from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata +INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata +INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata +INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata +INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata +INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata +INFO: Converting local name hlwc of variable RRTMGP_lw_heating_rate_all_sky from new to old metadata +INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata +INFO: Converting local name cld_rerain of variable RRTMGP_mean_effective_radius_for_rain_drop from new to old metadata +INFO: Converting local name idxday of variable daytime_points from new to old metadata +INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata +INFO: Converting local name stc of variable soil_temperature from new to old metadata +INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata +INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata +INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata +INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata +INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata +INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata +INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata +INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata +INFO: Converting local name kdt of variable index_of_time_step from new to old metadata +INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata +INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata +INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata +INFO: Converting local name nblks of variable number_of_blocks from new to old metadata +INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata +INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata +INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata +INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata +INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata +INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata +INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata +INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata +INFO: Converting local name rrtmgp_nGptsSW of variable number_of_sw_spectral_points_rrtmgp from new to old metadata +INFO: Converting local name sw_gas_props of variable coefficients_for_sw_gas_optics from new to old metadata +INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata +INFO: Converting local name xlon of variable longitude from new to old metadata +INFO: Converting local name kind_grid of variable kind_grid from new to old metadata +INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata +INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata +INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name rrtmgp_nBandsLW of variable number_of_lw_bands_rrtmgp from new to old metadata +INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata +INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata +INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata +INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name lprnt of variable flag_print from new to old metadata +INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata +INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata +INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata +INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata +INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata +INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata +INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata +INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata +INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata +INFO: Converting local name active_gases of variable active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata +INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata +INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata +INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata +INFO: Converting local name kice of variable ice_vertical_dimension from new to old metadata +INFO: Converting local name ca_trigger of variable flag_for_global_cellular_automata_trigger from new to old metadata +INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata +INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata +INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata +INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata +INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata +INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata +INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata +INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata +INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata +INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata +INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata +INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata +INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata +INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata +INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata +INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata +INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata +INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata +INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata +INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata +INFO: Converting local name fluxlwDOWN_clrsky of variable RRTMGP_lw_flux_profile_downward_clrsky from new to old metadata +INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata +INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata +INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata +INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata +INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata +INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata +INFO: Converting local name kind_phys of variable kind_phys from new to old metadata +INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata +INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata +INFO: Converting local name t_lay of variable air_temperature_at_layer_for_RRTMGP from new to old metadata +INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata +INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata +INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata +INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata +INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata +INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata +INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata +INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata +INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata +INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata +INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata +INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata +INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata +INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata +INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata +INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata +INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata +INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata +INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata +INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata +INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata +INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata +INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata +INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata +INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata +INFO: Converting local name hlw0 of variable RRTMGP_lw_heating_rate_clear_sky from new to old metadata +INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata +INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata +INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata +INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata +INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata +INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata +INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata +INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata +INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata +INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata +INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata +INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata +INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata +INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata +INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata +INFO: Converting local name alnsf of variable mean_nir_albedo_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata +INFO: Converting local name tv_lay of variable virtual_temperature from new to old metadata +INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata +INFO: Converting local name nGases of variable number_of_active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata +INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata +INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata +INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata +INFO: Converting local name save_t of variable air_temperature_save from new to old metadata +INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata +INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata +INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata +INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata +INFO: Converting local name ty_optical_props_1scl of variable ty_optical_props_1scl from new to old metadata +INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata +INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata +INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata +INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata +INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata +INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata +INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata +INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata +INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata +INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata +INFO: Converting local name hflxq of variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness from new to old metadata +INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata +INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata +INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata +INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata +INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata +INFO: Converting local name sw_cloud_props of variable coefficients_for_sw_cloud_optics from new to old metadata +INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata +INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata +INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata +INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata +INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata +INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata +INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata +INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata +INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata +INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata +INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata +INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata +INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata +INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata +INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata +INFO: Converting local name fluxswDOWN_allsky of variable RRTMGP_sw_flux_profile_downward_allsky from new to old metadata +INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata +INFO: Converting local name ca_closure of variable flag_for_global_cellular_automata_closure from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata +INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata +INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata +INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata +INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata +INFO: Converting local name rrtmgp_root of variable directory_for_rte_rrtmgp_source_code from new to old metadata +INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata +INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata +INFO: Converting local name rrtmgp_nGauss_ang of variable number_of_angles_used_in_gaussian_quadrature from new to old metadata +INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata +INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata +INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata +INFO: Converting local name flipv of variable flag_flip from new to old metadata +INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata +INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata +INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata +INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata +INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata +INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata +INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata +INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name lw_optical_props_clrsky of variable longwave_optical_properties_for_clear_sky from new to old metadata +INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name ca_entr of variable flag_for_global_cellular_automata_entr from new to old metadata +INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name hsw0 of variable RRTMGP_sw_heating_rate_clear_sky from new to old metadata +INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata +INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata +INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata +INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata +INFO: Converting local name cld_rwp of variable RRTMGP_cloud_rain_water_path from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata +INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata +INFO: Converting local name lw_optical_props_aerosol of variable longwave_optical_properties_for_aerosols from new to old metadata +INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata +INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata +INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata +INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata +INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata +INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata +INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name do_GPsw_Glw of variable scheme_flag from new to old metadata +INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata +INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata +INFO: Converting local name imn of variable forecast_month from new to old metadata +INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata +INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata +INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata +INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata +INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata +INFO: Converting local name cld_iwp of variable RRTMGP_cloud_ice_water_path from new to old metadata +INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata +INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata +INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata +INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata +INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata +INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata +INFO: Converting local name runoff of variable total_runoff from new to old metadata +INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata +INFO: Converting local name ty_source_func_lw of variable ty_source_func_lw from new to old metadata +INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata +INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata +INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata +INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata +INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata +INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata +INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name hswc of variable RRTMGP_sw_heating_rate_all_sky from new to old metadata +INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata +INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata +INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata +INFO: Converting local name t_lev of variable air_temperature_at_interface_for_RRTMGP from new to old metadata +INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata +INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata +INFO: Converting local name p_lay of variable air_pressure_at_layer_for_RRTMGP_in_hPa from new to old metadata +INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata +INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata +INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata +INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata +INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata +INFO: Converting local name stmassxy of variable stem_mass from new to old metadata +INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata +INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata +INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata +INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata +INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata +INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata +INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata +INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata +INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata +INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata +INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata +INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata +INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata +INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata +INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata +INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata +INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata +INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata +INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata +INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata +INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata +INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata +INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata +INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata +INFO: Converting local name sfc_alb_nir_dir of variable surface_albedo_nearIR_direct from new to old metadata +INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata +INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata +INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata +INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata +INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata +INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata +INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata +INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata +INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata +INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata +INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata +INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata +INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata +INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata +INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata +INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata +INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata +INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata +INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata +INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata +INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata +INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata +INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata +INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata +INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata +INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata +INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata +INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata +INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata +INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata +INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata +INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata +INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata +INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata +INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata +INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata +INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata +INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata +INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata +INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata +INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata +INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata +INFO: Converting local name lh of variable surface_latent_heat from new to old metadata +INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata +INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata +INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata +INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata +INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata +INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata +INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata +INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata +INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata +INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata +INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata +INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata +INFO: Converting local name dx of variable cell_size from new to old metadata +INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata +INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata +INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata +INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata +INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata +INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata +INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata +INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata +INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata +INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata +INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata +INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata +INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata +INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata +INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata +INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata +INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata +INFO: Converting local name ca1 of variable cellular_automata_global_pattern from new to old metadata +INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name sw_optical_props_cloudsByBand of variable shortwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata +INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata +INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata +INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata +INFO: Converting local name ugrs of variable x_wind from new to old metadata +INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata +INFO: Converting local name fluxswUP_clrsky of variable RRTMGP_sw_flux_profile_upward_clrsky from new to old metadata +INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata +INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata +INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata +INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata +INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata +INFO: Converting local name facwf of variable fractional_coverage_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata +INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata +INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata +INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata +INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata +INFO: Converting local name alvsf of variable mean_vis_albedo_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata +INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata +INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata +INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata +INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata +INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata +INFO: Converting local name sw_file_gas of variable rrtmgp_kdistribution_sw from new to old metadata +INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata +INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata +INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata +INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata +INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata +INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata +INFO: Converting local name topflw_type of variable topflw_type from new to old metadata +INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata +INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata +INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata +INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata +INFO: Converting local name rann of variable random_number_array from new to old metadata +INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata +INFO: Converting local name tracer of variable chemical_tracers from new to old metadata +INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata +INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata +INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata +INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata +INFO: Converting local name sfc_emiss_byband of variable surface_emissivity_in_each_RRTMGP_LW_band from new to old metadata +INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata +INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata +INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata +INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata +INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata +INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata +INFO: Converting local name rrtmgp_nrghice of variable number_of_rrtmgp_ice_roughness from new to old metadata +INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata +INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata +INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata +INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata +INFO: Converting local name tsq of variable t_prime_squared from new to old metadata +INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata +INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata +INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata +INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata +INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata +INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata +INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata +INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata +INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata +INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata +INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata +INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata +INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata +INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata +INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata +INFO: Converting local name debug of variable flag_debug from new to old metadata +INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata +INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata +INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata +INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata +INFO: Converting local name save_v of variable y_wind_save from new to old metadata +INFO: Converting local name el_pbl of variable mixing_length from new to old metadata +INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata +INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata +INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata +INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata +INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata +INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata +INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata +INFO: Converting local name cld_lwp of variable RRTMGP_cloud_liquid_water_path from new to old metadata +INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata +INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata +INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata +INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata +INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata +INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata +INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata +INFO: Converting local name trans of variable transpiration_flux from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata +INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata +INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata +INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata +INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata +INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata +INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata +INFO: Converting local name tile_num of variable number_of_tile from new to old metadata +INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata +INFO: Converting local name me of variable mpi_rank from new to old metadata +INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata +INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata +INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata +INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata +INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata +INFO: Converting local name nwat of variable number_of_water_species from new to old metadata +INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata +INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata +INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata +INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata +INFO: Converting local name toa_src_lw of variable toa_incident_lw_flux_by_spectral_point from new to old metadata +INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata +INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata +INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata +INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata +INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata +INFO: Converting local name relhum of variable relative_humidity from new to old metadata +INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata +INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata +INFO: Converting local name srunoff of variable surface_runoff from new to old metadata +INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata +INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata +INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata +INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata +INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata +INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata +INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata +INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata +INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata +INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata +INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata +INFO: Converting local name con_pi of variable pi from new to old metadata +INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata +INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata +INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata +INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata +INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata +INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata +INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata +INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata +INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata +INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata +INFO: Converting local name julian of variable julian_day from new to old metadata +INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata +INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata +INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata +INFO: Converting local name mol of variable theta_star from new to old metadata +INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata +INFO: Converting local name sw_optical_props_clouds of variable shortwave_optical_properties_for_cloudy_atmosphere from new to old metadata +INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata +INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata +INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata +INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata +INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata +INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata +INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata +INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata +INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata +INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata +INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata +INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name hffac of variable surface_upward_sensible_heat_flux_reduction_factor from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata +INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata +INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata +INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata +INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata +INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata +INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name sfc_alb_uvvis_dif of variable surface_albedo_uvvis_dif from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata +INFO: Converting local name sfc_alb_uvvis_dir of variable surface_albedo_uvvis_dir from new to old metadata +INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata +INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata +INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata +INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata +INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata +INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata +INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata +INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata +INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata +INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata +INFO: Converting local name is of variable starting_x_direction_index from new to old metadata +INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata +INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata +INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata +INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata +INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata +INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata +INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata +INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata +INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata +INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name levs of variable vertical_dimension from new to old metadata +INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata +INFO: Converting local name rrtmgp_cld_optics of variable rrtmgp_cloud_optics_flag from new to old metadata +INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name cldtaulw of variable RRTMGP_cloud_optical_depth_layers_at_10mu_band from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name prnum of variable prandtl_number from new to old metadata +INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata +INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata +INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata +INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata +INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata +INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata +INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata +INFO: Converting local name active_gases_array of variable list_of_active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata +INFO: Converting local name master of variable mpi_root from new to old metadata +INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata +INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata +INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata +INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata +INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata +INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata +INFO: Converting local name flxprf_lw of variable RRTMGP_lw_fluxes from new to old metadata +INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata +INFO: Converting local name communicator of variable mpi_comm from new to old metadata +INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata +INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata +INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata +INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata +INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata +INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata +INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata +INFO: Converting local name cld_frac of variable RRTMGP_total_cloud_fraction from new to old metadata +INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata +INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata +INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata +INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata +INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata +INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata +INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata +INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata +INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata +INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata +INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata +INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata +INFO: Converting local name fluxswUP_allsky of variable RRTMGP_sw_flux_profile_upward_allsky from new to old metadata +INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata +INFO: Converting local name cld_resnow of variable RRTMGP_mean_effective_radius_for_snow_flake from new to old metadata +INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata +INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata +INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata +INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata +INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata +INFO: Converting local name evapq of variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness from new to old metadata +INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata +INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata +INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata +INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata +INFO: Converting local name tgrs of variable air_temperature from new to old metadata +INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata +INFO: Converting local name sw_optical_props_aerosol of variable shortwave_optical_properties_for_aerosols from new to old metadata +INFO: Converting local name e0fac of variable latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux from new to old metadata +INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata +INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata +INFO: Converting local name do_RRTMGP of variable flag_for_rrtmgp_radiation_scheme from new to old metadata +INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata +INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata +INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata +INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata +INFO: Converting local name lw_file_clouds of variable rrtmgp_coeff_lw_cloud_optics from new to old metadata +INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata +INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata +INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata +INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata +INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata +INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata +INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata +INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata +INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata +INFO: Converting local name lw_file_gas of variable rrtmgp_kdistribution_lw from new to old metadata +INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata +INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name je of variable ending_y_direction_index from new to old metadata +INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata +INFO: Converting local name hefac of variable surface_upward_latent_heat_flux_reduction_factor from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata +INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata +INFO: Converting local name p_lev of variable air_pressure_at_interface_for_RRTMGP_in_hPa from new to old metadata +INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata +INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata +INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata +INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata +INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata +INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata +INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata +INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata +INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata +INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata +INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata +INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata +INFO: Converting local name sec_diff_byband of variable secant_of_diffusivity_angle_each_RRTMGP_LW_band from new to old metadata +INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata +INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata +INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata +INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata +INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata +INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata +INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata +INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata +INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata +INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata +INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata +INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata +INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata +INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata +INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata +INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata +INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata +INFO: Converting local name z0fac of variable surface_roughness_fraction_factor from new to old metadata +INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata +INFO: Converting local name prsl of variable air_pressure from new to old metadata +INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata +INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata +INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata +INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata +INFO: Converting local name xs of variable sea_water_salinity from new to old metadata +INFO: Converting local name xlat of variable latitude from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata +INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata +INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata +INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata +INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata +INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata +INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata +INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata +INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata +INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata +INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata +INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata +INFO: Converting local name grav_settling of variable grav_settling from new to old metadata +INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata +INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata +INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata +INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata +INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata +INFO: Converting local name js of variable starting_y_direction_index from new to old metadata +INFO: Converting local name sources of variable longwave_source_function from new to old metadata +INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata +INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata +INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata +INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata +INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata +INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata +INFO: Converting local name stress of variable surface_wind_stress from new to old metadata +INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata +INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata +INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata +INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata +INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata +INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata +INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata +INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata +INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata +INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata +INFO: Converting local name vfact_ca of variable vertical_weight_for_ca from new to old metadata +INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata +INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata +INFO: Converting local name cld_reice of variable RRTMGP_mean_effective_radius_for_ice_cloud from new to old metadata +INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata +INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata +INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata +INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata +INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata +INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata +INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata +INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata +INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata +INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata +INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata +INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata +INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata +INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata +INFO: Converting local name ipsdsw0 of variable initial_permutation_seed_sw from new to old metadata +INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata +INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata +INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata +INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata +INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata +INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata +INFO: Converting local name lw_cloud_props of variable coefficients_for_lw_cloud_optics from new to old metadata +INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata +INFO: Converting local name woodxy of variable wood_mass from new to old metadata +INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata +INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata +INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name hswb of variable RRTMGP_sw_heating_rate_spectral from new to old metadata +INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata +INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata +INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata +INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata +INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata +INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata +INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata +INFO: Converting local name lw_gas_props of variable coefficients_for_lw_gas_optics from new to old metadata +INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name ty_gas_optics_rrtmgp of variable ty_gas_optics_rrtmgp from new to old metadata +INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name save_u of variable x_wind_save from new to old metadata +INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata +INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata +INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata +INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata +INFO: Converting local name vgrs of variable y_wind from new to old metadata +INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata +INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata +INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata +INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata +INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata +INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata +INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata +INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name fluxlwUP_allsky of variable RRTMGP_lw_flux_profile_upward_allsky from new to old metadata +INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata +INFO: Converting local name tiice of variable internal_ice_temperature from new to old metadata +INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata +INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata +INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata +INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata +INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata +INFO: Converting local name fluxswDOWN_clrsky of variable RRTMGP_sw_flux_profile_downward_clrsky from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata +INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata +INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata +INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata +INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata +INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata +INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata +INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata +INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata +INFO: Converting local name nthreads of variable omp_threads from new to old metadata +INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata +INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata +INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata +INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata +INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata +INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata +INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata +INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata +INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata +INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata +INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata +INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata +INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata +INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata +INFO: Converting local name rrtmgp_nBandsSW of variable number_of_sw_bands_rrtmgp from new to old metadata +INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata +INFO: Converting local name fhour of variable forecast_time from new to old metadata +INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata +INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata +INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata +INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata +INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata +INFO: Converting local name proflw_type of variable proflw_type from new to old metadata +INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata +INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata +INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata +INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata +INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata +INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata +INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata +INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata +INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata +INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata +INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata +INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata +INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata +INFO: Converting local name lw_optical_props_clouds of variable longwave_optical_properties_for_cloudy_atmosphere from new to old metadata +INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata +INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata +INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata +INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata +INFO: Converting local name phil of variable geopotential from new to old metadata +INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata +INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata +INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata +INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata +INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata +INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata +INFO: Converting local name coszdg of variable daytime_mean_cosz_over_rad_call_period from new to old metadata +INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata +INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata +INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata +INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata +INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata +INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata +INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata +INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata +INFO: Converting local name sw_file_clouds of variable rrtmgp_coeff_sw_cloud_optics from new to old metadata +INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata +INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata +INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +INFO: Converting local name sw_optical_props_clrsky of variable shortwave_optical_properties_for_clear_sky from new to old metadata +INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata +INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata +INFO: Converting local name cldtausw of variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band from new to old metadata +INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata +INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata +INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata +INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata +INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata +INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata +INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata +INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata +INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata +INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata +INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata +INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata +INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata +INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata +INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata +INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata +INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata +INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata +INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata +INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata +INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata +INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata +INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata +INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata +INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata +INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata +INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata +INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata +INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata +INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata +INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata +INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata +INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata +INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata +INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata +INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata +INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata +INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata +INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata +INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata +INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata +INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata +INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata +INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata +INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata +INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata +INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata +INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Parsing metadata tables in physics scheme files ... +INFO: Parsed tables in scheme rayleigh_damp +INFO: Parsed tables in scheme sfc_ocean +INFO: Parsed tables in scheme rrtmg_lw_post +INFO: Parsed tables in scheme rrtmgp_sw_cloud_optics +INFO: Parsed tables in scheme GFS_rrtmg_pre +INFO: Parsed tables in scheme ysuvdif +INFO: Parsed tables in scheme cu_gf_driver_post +INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme noahmpdrv +INFO: Parsed tables in scheme mp_fer_hires +INFO: Parsed tables in scheme GFS_diagtoscreen +INFO: Parsed tables in scheme GFS_interstitialtoscreen +INFO: Parsed tables in scheme GFS_abort +INFO: Parsed tables in scheme GFS_checkland +INFO: Parsed tables in scheme zhaocarr_precpd +INFO: Parsed tables in scheme cs_conv_pre +INFO: Parsed tables in scheme cs_conv_post +INFO: Parsed tables in scheme cs_conv +INFO: Parsed tables in scheme hedmf_hafs +INFO: Parsed tables in scheme GFS_rrtmgp_sw_pre +INFO: Parsed tables in scheme sfc_sice +INFO: Parsed tables in scheme GFS_rrtmgp_lw_post +INFO: Parsed tables in scheme sfc_diff +INFO: Parsed tables in scheme GFS_GWD_generic_pre +INFO: Parsed tables in scheme GFS_GWD_generic_post +INFO: Parsed tables in scheme rrtmg_sw_pre +INFO: Parsed tables in scheme rrtmg_lw +INFO: Parsed tables in scheme rrtmgp_lw_rte +INFO: Parsed tables in scheme dcyc2t3 +INFO: Parsed tables in scheme gwdc_pre +INFO: Parsed tables in scheme gwdc +INFO: Parsed tables in scheme gwdc_post +INFO: Parsed tables in scheme cu_gf_driver_pre +INFO: Parsed tables in scheme gfdl_cloud_microphys +INFO: Parsed tables in scheme cires_ugwp_post +INFO: Parsed tables in scheme rrtmgp_lw_cloud_optics +INFO: Parsed tables in scheme gwdps +INFO: Parsed tables in scheme moninshoc +INFO: Parsed tables in scheme sfc_cice +INFO: Parsed tables in scheme GFS_suite_ini_fini_test +INFO: Parsed tables in scheme myjpbl_wrapper +INFO: Parsed tables in scheme rrtmgp_lw_cloud_sampling +INFO: Parsed tables in scheme sfc_diag +INFO: Parsed tables in scheme satmedmfvdifq +INFO: Parsed tables in scheme cu_ntiedtke_post +INFO: Parsed tables in scheme cu_ntiedtke_pre +INFO: Parsed tables in scheme mp_thompson_pre +INFO: Parsed tables in scheme m_micro +INFO: Parsed tables in scheme lsm_noah +INFO: Parsed tables in scheme sascnvn +INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset +INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset +INFO: Parsed tables in scheme GFS_suite_interstitial_1 +INFO: Parsed tables in scheme GFS_suite_interstitial_2 +INFO: Parsed tables in scheme GFS_suite_stateout_reset +INFO: Parsed tables in scheme GFS_suite_stateout_update +INFO: Parsed tables in scheme GFS_suite_interstitial_3 +INFO: Parsed tables in scheme GFS_suite_interstitial_4 +INFO: Parsed tables in scheme GFS_suite_interstitial_5 +INFO: Parsed tables in scheme mp_thompson_post +INFO: Parsed tables in scheme sfc_nst +INFO: Parsed tables in scheme sfc_nst_pre +INFO: Parsed tables in scheme sfc_nst_post +INFO: Parsed tables in scheme shalcnv +INFO: Parsed tables in scheme get_prs_fv3 +INFO: Parsed tables in scheme get_phi_fv3 +INFO: Parsed tables in scheme mynnsfc_wrapper +INFO: Parsed tables in scheme myjsfc_wrapper +INFO: Parsed tables in scheme mynnedmf_wrapper +INFO: Parsed tables in scheme lsm_ruc +INFO: Parsed tables in scheme mynnrad_pre +INFO: Parsed tables in scheme drag_suite +INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre +INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post +INFO: Parsed tables in scheme mynnrad_post +INFO: Parsed tables in scheme shoc +INFO: Parsed tables in scheme GFS_rrtmgp_pre +INFO: Parsed tables in scheme GFS_surface_composites_pre +INFO: Parsed tables in scheme GFS_surface_composites_inter +INFO: Parsed tables in scheme GFS_surface_composites_post +INFO: Parsed tables in scheme GFS_MP_generic_pre +INFO: Parsed tables in scheme GFS_MP_generic_post +INFO: Parsed tables in scheme zhaocarr_gscond +INFO: Parsed tables in scheme ozphys +INFO: Parsed tables in scheme GFS_phys_time_vary +INFO: Parsed tables in scheme ozphys_2015 +INFO: Parsed tables in scheme GFS_surface_generic_pre +INFO: Parsed tables in scheme GFS_surface_generic_post +INFO: Parsed tables in scheme cu_ntiedtke +INFO: Parsed tables in scheme rrtmgp_sw_rte +INFO: Parsed tables in scheme rrtmgp_lw_pre +INFO: Parsed tables in scheme GFS_rrtmg_post +INFO: Parsed tables in scheme GFS_rrtmgp_sw_post +INFO: Parsed tables in scheme GFS_PBL_generic_pre +INFO: Parsed tables in scheme GFS_PBL_generic_post +INFO: Parsed tables in scheme rrtmgp_sw_aerosol_optics +INFO: Parsed tables in scheme GFS_surface_loop_control_part1 +INFO: Parsed tables in scheme GFS_surface_loop_control_part2 +INFO: Parsed tables in scheme rrtmgp_lw_aerosol_optics +INFO: Parsed tables in scheme cnvc90 +INFO: Parsed tables in scheme maximum_hourly_diagnostics +INFO: Parsed tables in scheme rrtmg_sw +INFO: Parsed tables in scheme samfshalcnv +INFO: Parsed tables in scheme GFS_time_vary_pre +INFO: Parsed tables in scheme GFS_rrtmg_setup +INFO: Parsed tables in scheme rrtmgp_sw_gas_optics +INFO: Parsed tables in scheme rrtmg_sw_post +INFO: Parsed tables in scheme GFS_SCNV_generic_pre +INFO: Parsed tables in scheme GFS_SCNV_generic_post +INFO: Parsed tables in scheme satmedmfvdif +INFO: Parsed tables in scheme GFS_stochastics +INFO: Parsed tables in scheme rrtmgp_sw_cloud_sampling +INFO: Parsed tables in scheme shinhongvdif +INFO: Parsed tables in scheme h2ophys +INFO: Parsed tables in scheme hedmf +INFO: Parsed tables in scheme m_micro_pre +INFO: Parsed tables in scheme m_micro_post +INFO: Parsed tables in scheme fv_sat_adj +INFO: Parsed tables in scheme cu_gf_driver +INFO: Parsed tables in scheme samfdeepcnv +INFO: Parsed tables in scheme rrtmgp_lw_gas_optics +INFO: Parsed tables in scheme mp_thompson +INFO: Parsed tables in scheme rrtmg_lw_pre +INFO: Parsed tables in scheme cires_ugwp +INFO: Parsed tables in scheme rascnv +INFO: Parsed tables in scheme cs_conv_aw_adj +INFO: Parsed tables in scheme GFS_DCNV_generic_pre +INFO: Parsed tables in scheme GFS_DCNV_generic_post +INFO: Parsed tables in scheme GFS_rad_time_vary +INFO: Parsed tables in scheme GFS_rrtmgp_setup +INFO: filtering out variable GFS_stateout_type_instance +INFO: filtering out variable Gas_concentrations_for_RRTMGP_suite +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_10mu_band +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_lw_fluxes +INFO: filtering out variable RRTMGP_lw_heating_rate_spectral +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_sw_fluxes +INFO: filtering out variable RRTMGP_sw_heating_rate_spectral +INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme +INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip +INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology +INFO: filtering out variable air_pressure_at_interface_for_RRTMGP_in_hPa +INFO: filtering out variable air_pressure_at_layer_for_RRTMGP_in_hPa +INFO: filtering out variable air_temperature_at_interface_for_RRTMGP +INFO: filtering out variable air_temperature_at_layer_for_RRTMGP +INFO: filtering out variable area_fraction_of_wet_canopy +INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface +INFO: filtering out variable atmosphere_energy_content_in_column +INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl +INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc +INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl +INFO: filtering out variable baseline_surface_roughness_length +INFO: filtering out variable canopy_air_temperature +INFO: filtering out variable canopy_air_vapor_pressure +INFO: filtering out variable canopy_intercepted_ice_mass +INFO: filtering out variable canopy_intercepted_liquid_water +INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface +INFO: filtering out variable ccn_number_concentration +INFO: filtering out variable ccpp_block_number +INFO: filtering out variable cell_area_for_fast_physics +INFO: filtering out variable cell_size +INFO: filtering out variable characteristic_grid_length_scale +INFO: filtering out variable chemical_tracers +INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable cloud_area_fraction +INFO: filtering out variable cloud_base_mass_flux +INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface +INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_droplet_number_concentration +INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics +INFO: filtering out variable cloud_fraction_at_Lagrangian_surface +INFO: filtering out variable cloud_fraction_for_MG +INFO: filtering out variable cloud_fraction_updated_by_physics +INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_phase_transition_denominator +INFO: filtering out variable cloud_phase_transition_threshold_temperature +INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_specie_mix_flag +INFO: filtering out variable cloudpdf +INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras +INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras +INFO: filtering out variable coefficients_for_lw_cloud_optics +INFO: filtering out variable coefficients_for_lw_gas_optics +INFO: filtering out variable coefficients_for_sw_cloud_optics +INFO: filtering out variable coefficients_for_sw_gas_optics +INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers +INFO: filtering out variable conv_activity_counter +INFO: filtering out variable convective_updraft_area_fraction +INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces +INFO: filtering out variable couple_sgs_clouds_to_radiation_flag +INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable density_of_frozen_precipitation +INFO: filtering out variable depth_of_soil_levels_for_land_surface_model +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS +INFO: filtering out variable dimensionless_exner_function_at_model_interfaces +INFO: filtering out variable directory_for_rte_rrtmgp_source_code +INFO: filtering out variable do_myjsfc +INFO: filtering out variable do_mynnsfclay +INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable edmf_flag +INFO: filtering out variable edmf_momentum_transport_flag +INFO: filtering out variable edmf_partition_flag +INFO: filtering out variable edmf_tke_transport_flag +INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um +INFO: filtering out variable emdf_updraft_area +INFO: filtering out variable emdf_updraft_cloud_water +INFO: filtering out variable emdf_updraft_entrainment_rate +INFO: filtering out variable emdf_updraft_theta_l +INFO: filtering out variable emdf_updraft_total_water +INFO: filtering out variable emdf_updraft_vertical_velocity +INFO: filtering out variable ending_x_direction_index +INFO: filtering out variable ending_x_direction_index_domain +INFO: filtering out variable ending_y_direction_index +INFO: filtering out variable ending_y_direction_index_domain +INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS +INFO: filtering out variable equilibrium_soil_water_content +INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation +INFO: filtering out variable fast_soil_pool_mass_content_of_carbon +INFO: filtering out variable fine_root_mass +INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa +INFO: filtering out variable flag_arakawa_wu_downdraft +INFO: filtering out variable flag_convective_tracer_transport +INFO: filtering out variable flag_flip +INFO: filtering out variable flag_flux_form_CS +INFO: filtering out variable flag_for_2015_ozone_physics +INFO: filtering out variable flag_for_canopy_stomatal_resistance_option +INFO: filtering out variable flag_for_cloud_effective_radii +INFO: filtering out variable flag_for_dynamic_vegetation_option +INFO: filtering out variable flag_for_fast_microphysics_energy_conservation +INFO: filtering out variable flag_for_frozen_soil_permeability_option +INFO: filtering out variable flag_for_frozen_soil_physics +INFO: filtering out variable flag_for_ground_snow_surface_albedo_option +INFO: filtering out variable flag_for_hydrostatic_heating_from_physics +INFO: filtering out variable flag_for_hydrostatic_solver +INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics +INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics +INFO: filtering out variable flag_for_individual_cloud_species_advected +INFO: filtering out variable flag_for_inline_cloud_fraction_calculation +INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option +INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme +INFO: filtering out variable flag_for_precipitation_partition_option +INFO: filtering out variable flag_for_radiation_transfer_option +INFO: filtering out variable flag_for_reading_leaf_area_index_from_input +INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation +INFO: filtering out variable flag_for_restart +INFO: filtering out variable flag_for_runoff_and_groundwater_option +INFO: filtering out variable flag_for_sas_deep_convection_scheme +INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics +INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option +INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option +INFO: filtering out variable flag_for_supercooled_liquid_water_option +INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option +INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping +INFO: filtering out variable flag_mg3_as_mg2 +INFO: filtering out variable flag_skip_macro +INFO: filtering out variable fraction_of_cloud_top_water_scavenged +INFO: filtering out variable fraction_of_tracer_scavenged +INFO: filtering out variable gas_constants_for_multi_gases_physics +INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface +INFO: filtering out variable gf_memory_counter +INFO: filtering out variable graupel_mixing_ratio_updated_by_physics +INFO: filtering out variable graupel_number_concentration_updated_by_physics +INFO: filtering out variable grav_settling +INFO: filtering out variable ground_temperature_for_noahmp +INFO: filtering out variable gwd_opt +INFO: filtering out variable h2o_forcing +INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable ice_friendly_aerosol_number_concentration +INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable ice_number_concentration +INFO: filtering out variable ice_number_concentration_updated_by_physics +INFO: filtering out variable ice_supersaturation_threshold +INFO: filtering out variable ice_water_mixing_ratio +INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics +INFO: filtering out variable in_number_concentration +INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer +INFO: filtering out variable initial_permutation_seed_lw +INFO: filtering out variable initial_permutation_seed_sw +INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_x_momentum_flux_from_form_drag +INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_y_momentum_flux_from_form_drag +INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd +INFO: filtering out variable k_level_of_highest_reaching_plume +INFO: filtering out variable kappa_dry_for_fast_physics +INFO: filtering out variable kinematic_buoyancy_flux_from_shoc +INFO: filtering out variable kinematic_surface_latent_heat_flux +INFO: filtering out variable lake_water_storage +INFO: filtering out variable latitude_index_in_debug_printouts +INFO: filtering out variable layer_bottom_depth_from_snow_surface +INFO: filtering out variable leaf_area_index +INFO: filtering out variable leaf_mass +INFO: filtering out variable limit_for_temperature_tendency_for_microphysics +INFO: filtering out variable liquid_water_density +INFO: filtering out variable list_of_active_gases_used_by_RRTMGP +INFO: filtering out variable local_graupel_mixing_ratio +INFO: filtering out variable local_graupel_number_concentration +INFO: filtering out variable local_rain_number_concentration +INFO: filtering out variable local_rain_water_mixing_ratio +INFO: filtering out variable local_snow_number_concentration +INFO: filtering out variable local_snow_water_mixing_ratio +INFO: filtering out variable log_pressure_at_Lagrangian_surface +INFO: filtering out variable longwave_optical_properties_for_aerosols +INFO: filtering out variable longwave_optical_properties_for_clear_sky +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable longwave_source_function +INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics +INFO: filtering out variable maximum_column_heating_rate +INFO: filtering out variable maximum_mass_flux +INFO: filtering out variable maximum_updraft_velocity_at_cloud_base +INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency +INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency +INFO: filtering out variable mg_allow_supersat_after_sed +INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow +INFO: filtering out variable mg_bergeron_efficiency_factor +INFO: filtering out variable mg_cloud_water_variance +INFO: filtering out variable mg_drop_concentration_constant +INFO: filtering out variable mg_flag_drop_concentration_constant +INFO: filtering out variable mg_flag_for_cloud_ice_processes +INFO: filtering out variable mg_flag_for_gmao_ice_formulation +INFO: filtering out variable mg_flag_for_graupel +INFO: filtering out variable mg_flag_for_hail +INFO: filtering out variable mg_flag_for_heterogeneous_freezing +INFO: filtering out variable mg_flag_for_liu_liquid_treatment +INFO: filtering out variable mg_flag_for_sb2001_autoconversion +INFO: filtering out variable mg_flag_for_uniform_subcolumns +INFO: filtering out variable mg_flag_graupel_concentration_constant +INFO: filtering out variable mg_flag_ice_concentration_constant +INFO: filtering out variable mg_graupel_concentration_constant +INFO: filtering out variable mg_ice_concentration_constant +INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio +INFO: filtering out variable mg_minimum_rh_for_ice +INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice +INFO: filtering out variable mg_tuning_factor_for_alphas +INFO: filtering out variable mg_type_of_precip_fraction_method +INFO: filtering out variable minimum_value_of_specific_humidity +INFO: filtering out variable mix_total_water_flag +INFO: filtering out variable mixing_length +INFO: filtering out variable mixing_length_flag +INFO: filtering out variable moisture_from_previous_timestep +INFO: filtering out variable moisture_tendency_due_to_dynamics +INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable mpi_comm +INFO: filtering out variable mpi_rank_for_fast_physics +INFO: filtering out variable mpi_root_for_fast_physics +INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction +INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels +INFO: filtering out variable nondimensional_snow_age +INFO: filtering out variable normalized_soil_wetness_for_land_surface_model +INFO: filtering out variable number_of_active_gases_used_by_RRTMGP +INFO: filtering out variable number_of_aerosol_tracers_MG +INFO: filtering out variable number_of_angles_used_in_gaussian_quadrature +INFO: filtering out variable number_of_cloud_types_CS +INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data +INFO: filtering out variable number_of_frozen_precipitation_species +INFO: filtering out variable number_of_gases_for_multi_gases_physics +INFO: filtering out variable number_of_ghost_zones +INFO: filtering out variable number_of_plumes +INFO: filtering out variable number_of_rrtmgp_ice_roughness +INFO: filtering out variable number_of_snow_layers +INFO: filtering out variable number_of_spectral_wave_trancation_for_sas +INFO: filtering out variable number_of_tracers_for_CS +INFO: filtering out variable number_of_tracers_plus_one +INFO: filtering out variable number_of_water_species +INFO: filtering out variable omp_threads_for_fast_physics +INFO: filtering out variable ozone_mixing_ratio +INFO: filtering out variable potential_temperature_at_2m +INFO: filtering out variable potential_temperature_at_viscous_sublayer_top +INFO: filtering out variable prandtl_number +INFO: filtering out variable pressure_thickness_at_Lagrangian_surface +INFO: filtering out variable q_prime_squared +INFO: filtering out variable rain_number_concentration_updated_by_physics +INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics +INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind +INFO: filtering out variable reciprocal_of_obukhov_length +INFO: filtering out variable relative_humidity +INFO: filtering out variable rrtmgp_cloud_optics_flag +INFO: filtering out variable rrtmgp_coeff_lw_cloud_optics +INFO: filtering out variable rrtmgp_coeff_sw_cloud_optics +INFO: filtering out variable rrtmgp_kdistribution_lw +INFO: filtering out variable rrtmgp_kdistribution_sw +INFO: filtering out variable secant_of_diffusivity_angle_each_RRTMGP_LW_band +INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation +INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term +INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface +INFO: filtering out variable shortwave_optical_properties_for_aerosols +INFO: filtering out variable shortwave_optical_properties_for_clear_sky +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable slow_soil_pool_mass_content_of_carbon +INFO: filtering out variable snow_albedo_at_previous_time_step +INFO: filtering out variable snow_layer_ice +INFO: filtering out variable snow_layer_liquid_water +INFO: filtering out variable snow_mass_at_previous_time_step +INFO: filtering out variable snow_number_concentration_updated_by_physics +INFO: filtering out variable snow_precipitation_rate_at_surface +INFO: filtering out variable snow_temperature +INFO: filtering out variable snow_temperature_bottom_first_layer +INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics +INFO: filtering out variable soil_temperature_for_land_surface_model +INFO: filtering out variable soil_vertical_dimension_for_land_surface_model +INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table +INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics +INFO: filtering out variable specific_heat_of_ice_at_constant_pressure +INFO: filtering out variable specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable stability_function_for_heat +INFO: filtering out variable starting_x_direction_index +INFO: filtering out variable starting_x_direction_index_domain +INFO: filtering out variable starting_y_direction_index +INFO: filtering out variable starting_y_direction_index_domain +INFO: filtering out variable stem_area_index +INFO: filtering out variable stem_mass +INFO: filtering out variable subgrid_cloud_fraction_pbl +INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl +INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc +INFO: filtering out variable surface_albedo_nearIR_diffuse +INFO: filtering out variable surface_albedo_nearIR_direct +INFO: filtering out variable surface_albedo_uvvis_dif +INFO: filtering out variable surface_albedo_uvvis_dir +INFO: filtering out variable surface_condensation_mass +INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp +INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp +INFO: filtering out variable surface_emissivity_in_each_RRTMGP_LW_band +INFO: filtering out variable surface_exchange_coefficient_for_heat +INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m +INFO: filtering out variable surface_exchange_coefficient_for_moisture +INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m +INFO: filtering out variable surface_friction_velocity_drag +INFO: filtering out variable surface_geopotential_at_Lagrangian_surface +INFO: filtering out variable surface_latent_heat +INFO: filtering out variable surface_layer_evaporation_switch +INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes +INFO: filtering out variable surface_stability_parameter +INFO: filtering out variable t_prime_q_prime +INFO: filtering out variable t_prime_squared +INFO: filtering out variable temperature_from_previous_timestep +INFO: filtering out variable temperature_tendency_due_to_dynamics +INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics +INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable theta_star +INFO: filtering out variable thickness_at_Lagrangian_surface +INFO: filtering out variable time_step_for_remapping_for_fast_physics +INFO: filtering out variable tke_advect +INFO: filtering out variable tke_at_mass_points +INFO: filtering out variable tke_budget +INFO: filtering out variable tke_dissipative_heating_factor +INFO: filtering out variable toa_incident_sw_flux_by_spectral_point +INFO: filtering out variable top_layer_index_for_fast_physics +INFO: filtering out variable total_accumulated_snowfall +INFO: filtering out variable triple_point_temperature_of_water +INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer +INFO: filtering out variable u_wind_component_at_viscous_sublayer_top +INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS +INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS +INFO: filtering out variable v_wind_component_at_viscous_sublayer_top +INFO: filtering out variable vegetation_temperature +INFO: filtering out variable vertical_dimension_for_fast_physics +INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface +INFO: filtering out variable vertical_dimension_of_h2o_forcing_data +INFO: filtering out variable virtual_temperature +INFO: filtering out variable virtual_temperature_at_Lagrangian_surface +INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model +INFO: filtering out variable water_friendly_aerosol_number_concentration +INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable water_storage_in_aquifer +INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil +INFO: filtering out variable water_table_depth +INFO: filtering out variable water_table_recharge_when_deep +INFO: filtering out variable water_table_recharge_when_shallow +INFO: filtering out variable water_vapor_mixing_ratio_at_surface +INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top +INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top +INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable wood_mass +INFO: filtering out variable x_momentum_tendency_from_blocking_drag +INFO: filtering out variable x_momentum_tendency_from_form_drag +INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_blocking_drag +INFO: filtering out variable y_momentum_tendency_from_form_drag +INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd +INFO: Checking optional arguments in physics schemes ... +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Comparing metadata for requested and provided variables ... +INFO: Generating list of Fortran modules containing CCPP type definitions ... +INFO: Generating typedefs makefile/cmakefile snippet ... +INFO: Added 10 typedefs to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh +INFO: Generating schemes makefile/cmakefile snippet ... +INFO: Added 215 schemes to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Generating suite and group caps ... +INFO: Generating static API ccpp_static_api.F90 in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics ... +INFO: Generating caps makefile/cmakefile snippet ... +INFO: Added 5 auto-generated caps to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh +INFO: CCPP prebuild step completed successfully. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ ./build_ccpp.sh hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk 'CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp' NO NO +MACHINE_ID=hera.intel is valid. +Compilers set for hera.intel. +Obtained ESMF_LIB=/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib from /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk +Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -DNETCDF_DIR=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... +-- The C compiler identification is Intel 18.0.5.20180823 +-- The CXX compiler identification is Intel 18.0.5.20180823 +-- The Fortran compiler identification is Intel 18.0.5.20180823 +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting C compile features +-- Detecting C compile features - done +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works +-- Detecting Fortran compiler ABI info +-- Detecting Fortran compiler ABI info - done +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes +-- Dynamics compiled with 32-bit option, adjust fv_sat_adj types +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Disable SIONlib support +-- Disable Intel MKL support +-- Enable netCDF support +-- Disable ESMF support +-- Disable multi-gases physics +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Got CCPP TYPEDEFS from cmakefile include file: gfs_typedefs.mod;mo_cloud_optics.mod;mo_optical_props.mod;ccpp_typedefs.mod;mo_gas_concentrations.mod;machine.mod;mo_source_functions.mod;module_radlw_parameters.mod;module_radsw_parameters.mod;mo_gas_optics_rrtmgp.mod +-- Got CCPP SCHEMES from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 +-- Got CCPP CAPS from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 +-- Configuring done +-- Generating done +CMake Warning: + Manually-specified variables were not used by the project: + + LEGACY_INTEL + + +-- Build files have been written to: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Scanning dependencies of target ccpp +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types.mod framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api.mod framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build +[ 1%] Linking Fortran static library libccpp.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 +/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/usr/bin/ranlib libccpp.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Scanning dependencies of target ccppphys +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/machine.mod physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physcons.mod physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common.mod physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel +[ 3%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel +[ 4%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdps.mod physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel +[ 5%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cnvc90.mod physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3.mod physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3.mod physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3.mod physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister.mod physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel +[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_kind.mod physics/CMakeFiles/ccppphys.dir/mo_rte_kind.mod.stamp Intel +[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props_kernels.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_util_array.mod physics/CMakeFiles/ccppphys.dir/mo_rte_util_array.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_optics.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_string.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_string.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_concentrations.mod physics/CMakeFiles/ccppphys.dir/mo_gas_concentrations.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_source_functions.mod physics/CMakeFiles/ccppphys.dir/mo_source_functions.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_kernels.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_constants.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_constants.mod.stamp Intel +[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder_kernels.mod.stamp Intel +[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder.mod.stamp Intel +[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_rrtmgp.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_rrtmgp.mod.stamp Intel +[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physparam.mod physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel +[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers.mod physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs.mod physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel +[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel +[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation.mod physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/funcphys.mod physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf.mod physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah.mod physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel +[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics.mod physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys.mod physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp.mod physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols.mod physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv.mod physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv.mod physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag.mod physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post.mod physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff.mod physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/date_def.mod physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters.mod physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel +[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop.mod physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel +[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/nst_module.mod physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel +[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst.mod physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice.mod physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def.mod physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef.mod physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols.mod physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy.mod physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel +[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics.mod physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds.mod physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozne_def.mod physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases.mod physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/radcons.mod physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank.mod physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw.mod physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface.mod physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb.mod physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux.mod physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel +[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel +[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel +[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics.mod physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel +[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel +[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerinterp.mod physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2o_def.mod physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp.mod physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccn_def.mod physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccninterp.mod physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozinterp.mod physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel +[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort.mod physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland.mod physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_broadband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_broadband_kernels.mod.stamp Intel +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband_kernels.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband.mod.stamp Intel +[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_heating_rates.mod physics/CMakeFiles/ccppphys.dir/mo_heating_rates.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_aux.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_aux.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_lw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_lw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_lw_cloud_optics.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_setup.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_5.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_5.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build +[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud.mod physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation.mod physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldmacro.mod physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build +[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro.mod physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build +[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv.mod physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post.mod physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre.mod physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj.mod physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep.mod physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh.mod physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build +[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build +[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/drag_suite.mod physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shoc.mod physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar.mod physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build +[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 32 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj.mod physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config.mod physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc.mod physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post.mod physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre.mod physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build +[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ophys.mod physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils.mod physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro.mod physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post.mod physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre.mod physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl.mod physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90 -o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/module_mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build +[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc.mod physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn.mod physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn.mod physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post.mod physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build +[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre.mod physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build +[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre.mod physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f -o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf_hafs.mod physics/CMakeFiles/ccppphys.dir/hedmf_hafs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/moninshoc.mod physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90 -o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson.mod physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod.mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables.mod physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015.mod physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90 -o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rascnv.mod physics/CMakeFiles/ccppphys.dir/rascnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o.provides.build +[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_sampling.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o.provides.build +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_solver_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rte_solver_kernels.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_lw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_lw.mod.stamp Intel +[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_sw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_sw.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_compute_bc.mod physics/CMakeFiles/ccppphys.dir/mo_compute_bc.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o.provides.build +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o.provides.build +[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o.provides.build +[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o.provides.build +[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_bygpoint.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_bygpoint.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_clr_all_sky.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_clr_all_sky.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F -o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sascnvn.mod physics/CMakeFiles/ccppphys.dir/sascnvn.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build +[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdifq.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdifq.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build +[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice.mod physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build +[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv.mod physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean.mod physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module.mod physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F -o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shalcnv.mod physics/CMakeFiles/ccppphys.dir/shalcnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif.mod physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde.mod physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif.mod physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs.mod physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f -o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f -o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o +[100%] Linking Fortran static library libccppphys.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 +/usr/bin/ar qc libccppphys.a CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o CMakeFiles/ccppphys.dir/physics/date_def.f.o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o CMakeFiles/ccppphys.dir/physics/machine.F.o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o CMakeFiles/ccppphys.dir/physics/mfscu.f.o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o CMakeFiles/ccppphys.dir/physics/physcons.F90.o CMakeFiles/ccppphys.dir/physics/physparam.f.o CMakeFiles/ccppphys.dir/physics/radcons.f90.o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o CMakeFiles/ccppphys.dir/physics/sflx.f.o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o CMakeFiles/ccppphys.dir/physics/tridi.f.o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/gwdc.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/usr/bin/ranlib libccppphys.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make -f CMakeFiles/Makefile2 preinstall +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[2]: Nothing to be done for `preinstall'. +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +Install the project... +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P cmake_install.cmake +-- Install configuration: "Release" +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccpp.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config-release.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_types.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_api.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccppphys.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/gfs_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_cloud_optics.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_optical_props.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_concentrations.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/machine.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_source_functions.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radlw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radsw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_optics_rrtmgp.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib +Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" into /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL on hera +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/configure.fv3 +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/modules.fv3 +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 COMP_BINDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" nemsinstall + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 +ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o +ar: creating libfv3cpl.a +a - module_cplfields.o +a - module_cap_cpl.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ar rv libgfsphys.a physics/mersenne_twister.o physics/namelist_soilveg.o physics/physparam.o physics/set_soilveg.o physics/noahmp_tables.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_data.o ../ccpp/physics/ccpp_static_api.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_restart.o +ar: creating libgfsphys.a +a - physics/mersenne_twister.o +a - physics/namelist_soilveg.o +a - physics/physparam.o +a - physics/set_soilveg.o +a - physics/noahmp_tables.o +a - physics/GFDL_parse_tracers.o +a - physics/physcons.o +a - CCPP_layer/CCPP_data.o +a - ../ccpp/physics/ccpp_static_api.o +a - GFS_layer/GFS_abstraction_layer.o +a - GFS_layer/GFS_diagnostics.o +a - GFS_layer/GFS_driver.o +a - GFS_layer/GFS_restart.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +gmake -C ccpp/driver FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../../gfsphysics -I../../atmos_cubed_sphere -c CCPP_driver.tmp.f90 -o CCPP_driver.o +ar rv libccppdriver.a CCPP_driver.o +ar: creating libccppdriver.a +a - CCPP_driver.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_driver.F90 -o IPD_driver.o +ar rv libipd.a IPD_driver.o IPD_typedefs.o +ar: creating libipd.a +a - IPD_driver.o +a - IPD_typedefs.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_io_def.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o +ar: creating libfv3io.a +a - ffsync.o +a - FV3GFS_io.o +a - post_gfs.o +a - post_nems_routines.o +a - module_write_nemsio.o +a - module_write_netcdf.o +a - module_write_netcdf_parallel.o +a - module_fv3_io_def.o +a - module_write_internal_state.o +a - module_wrt_grid_comp.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +ar rv libfv3core.a model/a2b_edge.o model/multi_gases.o model/boundary.o model/dyn_core.o model/fv_arrays.o model/fv_control.o model/fv_dynamics.o model/fv_fill.o model/fv_grid_utils.o model/fv_mapz.o model/fv_nesting.o model/fv_regional_bc.o model/fv_sg.o model/fv_tracer2d.o model/fv_update_phys.o model/sw_core.o model/tp_core.o model/nh_core.o model/nh_utils.o tools/external_ic.o tools/external_sst.o tools/fv_diagnostics.o tools/fv_eta.o tools/fv_grid_tools.o tools/fv_io.o tools/fv_mp_mod.o tools/fv_nudge.o tools/fv_treat_da_inc.o tools/fv_iau_mod.o tools/fv_restart.o tools/fv_surf_map.o tools/fv_timing.o tools/init_hydro.o tools/sim_nc_mod.o tools/sorted_index.o tools/test_cases.o driver/fvGFS/DYCORE_typedefs.o driver/fvGFS/fv_nggps_diag.o driver/fvGFS/atmosphere.o +ar: creating libfv3core.a +a - model/a2b_edge.o +a - model/multi_gases.o +a - model/boundary.o +a - model/dyn_core.o +a - model/fv_arrays.o +a - model/fv_control.o +a - model/fv_dynamics.o +a - model/fv_fill.o +a - model/fv_grid_utils.o +a - model/fv_mapz.o +a - model/fv_nesting.o +a - model/fv_regional_bc.o +a - model/fv_sg.o +a - model/fv_tracer2d.o +a - model/fv_update_phys.o +a - model/sw_core.o +a - model/tp_core.o +a - model/nh_core.o +a - model/nh_utils.o +a - tools/external_ic.o +a - tools/external_sst.o +a - tools/fv_diagnostics.o +a - tools/fv_eta.o +a - tools/fv_grid_tools.o +a - tools/fv_io.o +a - tools/fv_mp_mod.o +a - tools/fv_nudge.o +a - tools/fv_treat_da_inc.o +a - tools/fv_iau_mod.o +a - tools/fv_restart.o +a - tools/fv_surf_map.o +a - tools/fv_timing.o +a - tools/init_hydro.o +a - tools/sim_nc_mod.o +a - tools/sorted_index.o +a - tools/test_cases.o +a - driver/fvGFS/DYCORE_typedefs.o +a - driver/fvGFS/fv_nggps_diag.o +a - driver/fvGFS/atmosphere.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o +ar: creating libstochastic_physics.a +a - stochy_gg_def.o +a - stochy_resol_def.o +a - stochy_layout_lag.o +a - four_to_grid_stochy.o +a - glats_stochy.o +a - sumfln_stochy.o +a - gozrineo_stochy.o +a - get_ls_node_stochy.o +a - get_lats_node_a_stochy.o +a - setlats_a_stochy.o +a - setlats_lag_stochy.o +a - epslon_stochy.o +a - getcon_lag_stochy.o +a - pln2eo_stochy.o +a - dozeuv_stochy.o +a - dezouv_stochy.o +a - plumes.o +a - spectral_layout.o +a - getcon_spectral.o +a - stochy_namelist_def.o +a - compns_stochy.o +a - stochy_internal_state_mod.o +a - stochastic_physics.o +a - stochy_patterngenerator.o +a - stochy_data_mod.o +a - get_stochy_pattern.o +a - initialize_spectral_mod.o +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o +ar: creating libfv3cap.a +a - atmos_model.o +a - module_fv3_config.o +a - module_fcst_grid_comp.o +a - time_utils.o +a - fv3_cap.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +# additional include files needed for PGI +#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/nems_dir" >> fv3.mk + +Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk + +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Installation into "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL" complete! + +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL +( \ +echo "# Do not edit this file. It is automatically generated." ; \ +echo "# Edit the component list or /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -e ; \ +for m in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; do \ + test -s $m ; \ +done ; \ +echo build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; \ +gmake nems \ + COMPONENTS="FMS CCPP FV3" \ + FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp FV3_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +cd ENS_Cpl && gmake stub +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 +ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o +ar: creating ENS_Cpl.a +a - ENS_CplComp_ESMFMod_STUB.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o +‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o +‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o +‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o +‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o +‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o +‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o +‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o +‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o +‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ +mpiicc -c nems_c_rusage.c +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:06:30 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o +‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ +echo libgocart is +libgocart is +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libccppdriver.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib -lccpp -lccppphys /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_32bit.exe" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_32bit.exe ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_32bit BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y' NEMS_BUILDOPT= clean +Will copy modules.nems and NEMS.x as fv3_32bit under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' ++ elapsed=889 ++ echo 'Elapsed time 889 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y finished' +Elapsed time 889 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y finished ++ SECONDS=0 ++ [[ 4 -lt 2 ]] ++ readonly PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ readonly BUILD_TARGET=hera.intel ++ BUILD_TARGET=hera.intel ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' ++ readonly BUILD_NAME=fv3_debug ++ BUILD_NAME=fv3_debug ++ readonly clean_before=YES ++ clean_before=YES ++ readonly clean_after=YES ++ clean_after=YES ++ hostname +hfe01 ++ echo 'Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y into fv3_debug.exe on hera.intel' +Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y into fv3_debug.exe on hera.intel ++ gnu_make=gmake ++ which gmake +/usr/bin/gmake ++ [[ hera.intel == cheyenne.* ]] ++ [[ hera.intel == stampede.* ]] ++ MAKE_THREADS=8 ++ [[ 8 -gt 1 ]] ++ echo Using '$MAKE_THREADS=8' threads to build FV3 and FMS. +Using $MAKE_THREADS=8 threads to build FV3 and FMS. ++ echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. +Consider reducing $MAKE_THREADS if you hit memory or process limits. ++ gnu_make='gmake -j 8' ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../NEMS ++ COMPONENTS=FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] ++ COMPONENTS=CCPP,FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\R\E\P\R\O\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] ++ NEMS_BUILDOPT=DEBUG=Y ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_debug BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y distclean +Will copy modules.nems and NEMS.x as fv3_debug under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +ls: cannot access */*.a: No such file or directory +ls: cannot access */*.o: No such file or directory +ls: cannot access */*.mod: No such file or directory +ls: cannot access */depend: No such file or directory +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --debug --suites=FV3_GFS_2017 --clean ; \ +cd $PATH_CCPP ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include" ; \ +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --debug --suites=FV3_GFS_2017 --clean +INFO: Logging level set to DEBUG +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Performing clean .... +DEBUG: Executing "rm -vf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_*_cap.F90 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_static_api.F90 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_STATIC_API.sh" +DEBUG: Execution of "rm -vf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_*_cap.F90 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_static_api.F90 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_STATIC_API.sh" returned with exit code 0 + stdout: "removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_static_api.F90 +removed /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_STATIC_API.sh" + stderr: "" +INFO: CCPP prebuild clean completed successfully, exiting. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test_results.mk ++ [[ CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] ++ mkdir -p /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_debug BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y build +Will copy modules.nems and NEMS.x as fv3_debug under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_debug" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_debug +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh" +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +if [ -f "/modules.nems" ] ; then \ + . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ +fi ; \ +( \ +echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ +echo "CASELESS_FILESYSTEM=NO" ; \ +if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ +) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ +exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" all + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov_kernel.F90 -o ../monin_obukhov/monin_obukhov_kernel.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../affinity/affinity.c -o ../affinity/affinity.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O0 -g -ftrapuv -traceback -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../affinity/fms_affinity.F90 -o ../affinity/fms_affinity.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../affinity/fms_affinity.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../constants/constants.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.o ../diag_integral/diag_integral.o ../diag_manager/diag_axis.o ../diag_manager/diag_data.o ../diag_manager/diag_grid.o ../diag_manager/diag_manifest.o ../diag_manager/diag_manager.o ../diag_manager/diag_output.o ../diag_manager/diag_table.o ../diag_manager/diag_util.o ../drifters/cloud_interpolator.o ../drifters/drifters.o ../drifters/drifters_comm.o ../drifters/drifters_core.o ../drifters/drifters_input.o ../drifters/drifters_io.o ../drifters/quicksort.o ../exchange/stock_constants.o ../exchange/xgrid.o ../fft/fft.o ../fft/fft99.o ../field_manager/field_manager.o ../field_manager/fm_util.o ../fms/fms.o ../fms/fms_io.o ../horiz_interp/horiz_interp.o ../horiz_interp/horiz_interp_bicubic.o ../horiz_interp/horiz_interp_bilinear.o ../horiz_interp/horiz_interp_conserve.o ../horiz_interp/horiz_interp_spherical.o ../horiz_interp/horiz_interp_type.o ../interpolator/interpolator.o ../memutils/memutils.o ../monin_obukhov/monin_obukhov.o ../monin_obukhov/monin_obukhov_kernel.o ../mosaic/gradient.o ../mosaic/grid.o ../mosaic/mosaic.o ../mpp/mpp.o ../mpp/mpp_data.o ../mpp/mpp_domains.o ../mpp/mpp_efp.o ../mpp/mpp_io.o ../mpp/mpp_memutils.o ../mpp/mpp_parameter.o ../mpp/mpp_pset.o ../mpp/mpp_utilities.o ../oda_tools/oda_core.o ../oda_tools/oda_core_ecda.o ../oda_tools/oda_types.o ../oda_tools/write_ocean_data.o ../platform/platform.o ../random_numbers/MersenneTwister.o ../random_numbers/random_numbers.o ../sat_vapor_pres/sat_vapor_pres.o ../sat_vapor_pres/sat_vapor_pres_k.o ../station_data/station_data.o ../time_interp/time_interp.o ../time_interp/time_interp_external.o ../time_manager/get_cal_time.o ../time_manager/time_manager.o ../topography/gaussian_topog.o ../topography/topography.o ../tracer_manager/tracer_manager.o ../tridiagonal/tridiagonal.o ../affinity/affinity.o ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/nsclock.o ../mpp/threadloc.o +ar: creating libfms.a +a - ../oda_tools/xbt_drop_rate_adjust.o +a - ../affinity/fms_affinity.o +a - ../amip_interp/amip_interp.o +a - ../astronomy/astronomy.o +a - ../axis_utils/axis_utils.o +a - ../block_control/block_control.o +a - ../column_diagnostics/column_diagnostics.o +a - ../constants/constants.o +a - ../coupler/atmos_ocean_fluxes.o +a - ../coupler/coupler_types.o +a - ../coupler/ensemble_manager.o +a - ../data_override/data_override.o +a - ../diag_integral/diag_integral.o +a - ../diag_manager/diag_axis.o +a - ../diag_manager/diag_data.o +a - ../diag_manager/diag_grid.o +a - ../diag_manager/diag_manifest.o +a - ../diag_manager/diag_manager.o +a - ../diag_manager/diag_output.o +a - ../diag_manager/diag_table.o +a - ../diag_manager/diag_util.o +a - ../drifters/cloud_interpolator.o +a - ../drifters/drifters.o +a - ../drifters/drifters_comm.o +a - ../drifters/drifters_core.o +a - ../drifters/drifters_input.o +a - ../drifters/drifters_io.o +a - ../drifters/quicksort.o +a - ../exchange/stock_constants.o +a - ../exchange/xgrid.o +a - ../fft/fft.o +a - ../fft/fft99.o +a - ../field_manager/field_manager.o +a - ../field_manager/fm_util.o +a - ../fms/fms.o +a - ../fms/fms_io.o +a - ../horiz_interp/horiz_interp.o +a - ../horiz_interp/horiz_interp_bicubic.o +a - ../horiz_interp/horiz_interp_bilinear.o +a - ../horiz_interp/horiz_interp_conserve.o +a - ../horiz_interp/horiz_interp_spherical.o +a - ../horiz_interp/horiz_interp_type.o +a - ../interpolator/interpolator.o +a - ../memutils/memutils.o +a - ../monin_obukhov/monin_obukhov.o +a - ../monin_obukhov/monin_obukhov_kernel.o +a - ../mosaic/gradient.o +a - ../mosaic/grid.o +a - ../mosaic/mosaic.o +a - ../mpp/mpp.o +a - ../mpp/mpp_data.o +a - ../mpp/mpp_domains.o +a - ../mpp/mpp_efp.o +a - ../mpp/mpp_io.o +a - ../mpp/mpp_memutils.o +a - ../mpp/mpp_parameter.o +a - ../mpp/mpp_pset.o +a - ../mpp/mpp_utilities.o +a - ../oda_tools/oda_core.o +a - ../oda_tools/oda_core_ecda.o +a - ../oda_tools/oda_types.o +a - ../oda_tools/write_ocean_data.o +a - ../platform/platform.o +a - ../random_numbers/MersenneTwister.o +a - ../random_numbers/random_numbers.o +a - ../sat_vapor_pres/sat_vapor_pres.o +a - ../sat_vapor_pres/sat_vapor_pres_k.o +a - ../station_data/station_data.o +a - ../time_interp/time_interp.o +a - ../time_interp/time_interp_external.o +a - ../time_manager/get_cal_time.o +a - ../time_manager/time_manager.o +a - ../topography/gaussian_topog.o +a - ../topography/topography.o +a - ../tracer_manager/tracer_manager.o +a - ../tridiagonal/tridiagonal.o +a - ../affinity/affinity.o +a - ../memutils/memuse.o +a - ../mosaic/create_xgrid.o +a - ../mosaic/gradient_c2l.o +a - ../mosaic/interp.o +a - ../mosaic/mosaic_util.o +a - ../mosaic/read_mosaic.o +a - ../mpp/nsclock.o +a - ../mpp/threadloc.o +mkdir -p "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --debug --suites=FV3_GFS_2017 ; \ +cd $PATH_CCPP ; \ +./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk \ + "CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"" NO NO ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/include ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/lib + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --debug --suites=FV3_GFS_2017 +INFO: Logging level set to DEBUG +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Parsing suite definition files ... +INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... +INFO: Parsing metadata tables for variables provided by host model ... +DEBUG: Parsing file machine.F with registry OrderedDict([('machine', {})]) +DEBUG: Module name: machine +DEBUG: Module variables: kind_dyn, kind_grid, kind_phys, kind_LOGICAL, kind_INTEGER +INFO: Parsed variable definition tables in module machine +DEBUG: Parsing file radsw_param.f with registry OrderedDict([('module_radsw_parameters', {'sfcfsw_type': [83, 88], 'cmpfsw_type': [102, 109], 'topfsw_type': [73, 77], 'profsw_type': [91, 96]})]) +DEBUG: Module name: module_radsw_parameters +DEBUG: Module variables: topfsw_type, sfcfsw_type, cmpfsw_type, profsw_type +DEBUG: Variables in derived type sfcfsw_type: +DEBUG: Variables in derived type cmpfsw_type: +DEBUG: Variables in derived type topfsw_type: +DEBUG: Variables in derived type profsw_type: +INFO: Parsed variable definition tables in module module_radsw_parameters +DEBUG: Parsing file radlw_param.f with registry OrderedDict([('module_radlw_parameters', {'sfcflw_type': [81, 86], 'proflw_type': [88, 93], 'topflw_type': [72, 75]})]) +DEBUG: Module name: module_radlw_parameters +DEBUG: Module variables: topflw_type, sfcflw_type, proflw_type +DEBUG: Variables in derived type sfcflw_type: +DEBUG: Variables in derived type proflw_type: +DEBUG: Variables in derived type topflw_type: +INFO: Parsed variable definition tables in module module_radlw_parameters +DEBUG: Parsing file CCPP_typedefs.F90 with registry OrderedDict([('CCPP_typedefs', {'CCPP_interstitial_type': [11, 69]})]) +DEBUG: Module name: CCPP_typedefs +DEBUG: Module variables: CCPP_interstitial_type +DEBUG: Variables in derived type CCPP_interstitial_type: kappa_dry_for_fast_physics, cappa_moist_gas_constant_at_Lagrangian_surface, tendency_of_air_temperature_at_Lagrangian_surface, flag_for_inline_cloud_fraction_calculation, flag_for_fast_microphysics_energy_conservation, top_layer_index_for_fast_physics, flag_for_the_last_step_of_k_split_remapping, time_step_for_remapping_for_fast_physics, flag_for_tendency_of_air_temperature_at_Lagrangian_surface, atmosphere_energy_content_in_column, atmosphere_energy_content_at_Lagrangian_surface, ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind, flag_for_saturation_adjustment_for_microphysics_in_dynamics, starting_x_direction_index, ending_x_direction_index, starting_x_direction_index_domain, ending_x_direction_index_domain, starting_y_direction_index, ending_y_direction_index, starting_y_direction_index_domain, ending_y_direction_index_domain, pressure_thickness_at_Lagrangian_surface, thickness_at_Lagrangian_surface, cell_area_for_fast_physics, number_of_ghost_zones, vertical_dimension_for_fast_physics, vertical_dimension_for_fast_physics_plus_one, vertical_dimension_for_thickness_at_Lagrangian_surface, vertical_dimension_for_condensed_water_at_Lagrangian_surface, vertical_dimension_for_cappa_at_Lagrangian_surface, log_pressure_at_Lagrangian_surface, surface_geopotential_at_Lagrangian_surface, finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa, virtual_temperature_at_Lagrangian_surface, gas_tracers_for_multi_gas_physics_at_Lagrangian_surface, water_vapor_specific_humidity_at_Lagrangian_surface, cloud_liquid_water_specific_humidity_at_Lagrangian_surface, cloud_ice_specific_humidity_at_Lagrangian_surface, cloud_rain_specific_humidity_at_Lagrangian_surface, cloud_snow_specific_humidity_at_Lagrangian_surface, cloud_graupel_specific_humidity_at_Lagrangian_surface, cloud_fraction_at_Lagrangian_surface, cloud_condensed_water_specific_humidity_at_Lagrangian_surface, omp_threads_for_fast_physics, flag_for_hydrostatic_solver_for_fast_physics, number_of_water_species, number_of_gases_for_multi_gases_physics, gas_constants_for_multi_gases_physics, specific_heat_capacities_for_multi_gases_physics, mpi_rank_for_fast_physics, mpi_root_for_fast_physics +INFO: Parsed variable definition tables in module CCPP_typedefs +DEBUG: Parsing file GFS_typedefs.F90 with registry OrderedDict([('GFS_typedefs', {'GFS_diag_type': [1225, 1470], 'GFS_control_type': [476, 1041], 'GFS_interstitial_type': [1480, 1875], 'GFS_tbd_type': [1094, 1163], 'GFS_sfcprop_type': [197, 354], 'GFS_coupling_type': [362, 467], 'GFS_statein_type': [149, 173], 'GFS_cldprop_type': [1171, 1179], 'GFS_data_type': [1887, 1897], 'GFS_radtend_type': [1187, 1217], 'GFS_grid_type': [1049, 1086], 'GFS_stateout_type': [181, 189], 'GFS_init_type': [98, 141]})]) +DEBUG: Module name: GFS_typedefs +DEBUG: Module variables: GFS_cldprop_type, GFS_control_type, GFS_coupling_type, GFS_data_type, GFS_diag_type, GFS_grid_type, GFS_interstitial_type, GFS_radtend_type, GFS_sfcprop_type, GFS_statein_type, GFS_stateout_type, GFS_tbd_type, extra_top_layer, netcdf_float_fillvalue, specific_heat_of_liquid_water_at_constant_pressure, specific_heat_of_dry_air_at_constant_pressure, specific_heat_of_water_vapor_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, minimum_value_of_specific_humidity, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gravitational_acceleration, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, pi, gas_constant_dry_air, gas_constant_water_vapor, temperature_at_zero_celsius, triple_point_temperature_of_water, minimum_sea_ice_concentration, air_temperature_lapse_rate_constant, joules_per_calorie_constant, sea_water_reference_density, stefan_boltzmann_constant, freezing_point_temperature_of_seawater, standard_atmospheric_pressure, liquid_water_density, specific_heat_of_ice_at_constant_pressure +DEBUG: Variables in derived type GFS_diag_type: sw_fluxes_top_atmosphere, lw_fluxes_top_atmosphere, surface_runoff, cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep, cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep, cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep, cumulative_transpiration_flux_multiplied_by_timestep, cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep, cumulative_surface_snow_area_fraction_multiplied_by_timestep, soil_moisture_content, minimum_temperature_at_2m, maximum_temperature_at_2m, cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep, cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep, cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep, cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep, integrated_x_momentum_flux_from_large_scale_gwd, integrated_y_momentum_flux_from_large_scale_gwd, integrated_x_momentum_flux_from_blocking_drag, integrated_y_momentum_flux_from_blocking_drag, integrated_x_momentum_flux_from_small_scale_gwd, integrated_y_momentum_flux_from_small_scale_gwd, integrated_x_momentum_flux_from_form_drag, integrated_y_momentum_flux_from_form_drag, x_momentum_tendency_from_large_scale_gwd, y_momentum_tendency_from_large_scale_gwd, x_momentum_tendency_from_blocking_drag, y_momentum_tendency_from_blocking_drag, x_momentum_tendency_from_small_scale_gwd, y_momentum_tendency_from_small_scale_gwd, x_momentum_tendency_from_form_drag, y_momentum_tendency_from_form_drag, accumulated_lwe_thickness_of_precipitation_amount, accumulated_lwe_thickness_of_ice_amount, accumulated_lwe_thickness_of_snow_amount, accumulated_lwe_thickness_of_graupel_amount, accumulated_lwe_thickness_of_precipitation_amount_in_bucket, accumulated_lwe_thickness_of_ice_amount_in_bucket, accumulated_lwe_thickness_of_snow_amount_in_bucket, accumulated_lwe_thickness_of_graupel_amount_in_bucket, accumulated_change_of_air_temperature_due_to_FA_scheme, cumulative_surface_ground_heat_flux_multiplied_by_timestep, cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep, cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep, duration_of_sunshine, total_runoff, cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep, cumulative_cloud_work_function, time_integral_of_x_stress_due_to_gravity_wave_drag, time_integral_of_y_stress_due_to_gravity_wave_drag, cumulative_surface_pressure_multiplied_by_timestep, cumulative_lwe_thickness_of_convective_precipitation_amount, cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket, minimum_specific_humidity_at_2m, maximum_specific_humidity_at_2m, maximum_x_wind_at_10m, maximum_y_wind_at_10m, maximum_wind_at_10m, maximum_u_wind_at_10m_over_maximum_hourly_time_interval, maximum_v_wind_at_10m_over_maximum_hourly_time_interval, maximum_wind_at_10m_over_maximum_hourly_time_interval, lwe_thickness_of_precipitation_amount_on_dynamics_timestep, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, lwe_thickness_of_ice_amount_on_dynamics_timestep, lwe_thickness_of_snow_amount_on_dynamics_timestep, lwe_thickness_of_graupel_amount_on_dynamics_timestep, x_wind_at_10m, y_wind_at_10m, dewpoint_temperature_at_2m, height_above_ground_at_lowest_model_layer, surface_air_pressure_diag, atmosphere_boundary_layer_thickness, column_precipitable_water, air_temperature_at_lowest_model_layer_for_diag, water_vapor_specific_humidity_at_lowest_model_layer_for_diag, x_wind_at_lowest_model_layer_for_diag, y_wind_at_lowest_model_layer_for_diag, surface_drag_mass_flux_for_heat_and_moisture_in_air, surface_drag_wind_speed_for_momentum_in_air, surface_downwelling_longwave_flux, surface_upwelling_longwave_flux, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, surface_upwelling_shortwave_flux, instantaneous_surface_x_momentum_flux_for_diag, instantaneous_surface_y_momentum_flux_for_diag, instantaneous_surface_upward_sensible_heat_flux_for_diag, instantaneous_surface_upward_latent_heat_flux_for_diag, instantaneous_surface_ground_heat_flux, instantaneous_surface_potential_evaporation, volume_fraction_of_condensed_water_in_soil_at_wilting_point, threshold_volume_fraction_of_condensed_water_in_soil, ratio_of_snowfall_to_rainfall, normalized_soil_wetness, dominant_rain_type, dominant_freezing_rain_type, dominant_sleet_type, dominant_snow_type, weights_for_stochastic_skeb_perturbation_of_x_wind_flipped, weights_for_stochastic_skeb_perturbation_of_y_wind_flipped, weights_for_stochastic_sppt_perturbation_flipped, weights_for_stochastic_shum_perturbation_flipped, level_of_dividing_streamline, cumulative_change_in_x_wind_due_to_PBL, cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_x_wind_due_to_deep_convection, cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag, cumulative_change_in_y_wind_due_to_PBL, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_deep_convection, cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag, cumulative_change_in_temperature_due_to_longwave_radiation, cumulative_change_in_temperature_due_to_shortwave_radiation, cumulative_change_in_temperature_due_to_PBL, cumulative_change_in_temperature_due_to_deep_convection, cumulative_change_in_temperature_due_to_shal_convection, cumulative_change_in_temperature_due_to_microphysics, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, cumulative_change_in_water_vapor_specific_humidity_due_to_PBL, cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection, cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection, cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics, cumulative_change_in_ozone_mixing_ratio_due_to_PBL, cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate, cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio, cumulative_change_in_ozone_concentration_due_to_temperature, cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column, maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval, maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval, maximum_temperature_at_2m_over_maximum_hourly_time_interval, minimum_temperature_at_2m_over_maximum_hourly_time_interval, maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval, minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval, cumulative_atmosphere_updraft_convective_mass_flux, cumulative_atmosphere_downdraft_convective_mass_flux, cumulative_atmosphere_detrainment_convective_mass_flux, radar_reflectivity_10cm, number_of_dust_bins_for_diagnostics, number_of_seasalt_bins_for_diagnostics, number_of_chemical_tracers_for_diagnostics, instantaneous_dust_emission_flux, instantaneous_seasalt_emission_flux, instantaneous_sedimentation, instantaneous_dry_deposition, instantaneous_large_scale_wet_deposition, instantaneous_convective_scale_wet_deposition, instantaneous_anthopogenic_and_biomass_burning_emissions, instantaneous_aerosol_column_mass_densities, emdf_updraft_area, emdf_updraft_vertical_velocity, emdf_updraft_total_water, emdf_updraft_theta_l, emdf_updraft_entrainment_rate, emdf_updraft_cloud_water, number_of_plumes, maximum_mass_flux, k_level_of_highest_reaching_plume, atmosphere_heat_diffusivity_for_mynnpbl, atmosphere_momentum_diffusivity_for_mynnpbl, time_integral_of_height_of_mountain_blocking, time_integral_of_height_of_low_level_wave_breaking, time_integral_of_height_of_launch_level_of_orographic_gravity_wave, time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag, time_integral_of_momentum_flux_due_to_mountain_blocking_drag, time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag, time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave, time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag, time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag, time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag, time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave, time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave +DEBUG: Variables in derived type GFS_control_type: mpi_rank, mpi_root, mpi_comm, mpi_size, omp_threads, iounit_namelist, namelist_filename, number_of_lines_of_namelist_filename_for_internal_file_reads, namelist_filename_for_internal_file_reads, iounit_log, flag_diagnostics_3D, flag_diagnostics, vertical_dimension, a_parameter_of_the_hybrid_coordinate, b_parameter_of_the_hybrid_coordinate, vertical_dimension_plus_one, vertical_dimension_minus_one, number_of_equatorial_longitude_points, number_of_latitude_points, number_of_blocks, horizontal_block_size, horizontal_loop_extent, horizontal_dimension, number_of_tile, flag_for_flux_coupling, flag_for_wave_coupling, flag_for_wave_coupling_to_atm, flag_for_chemistry_coupling, flag_idealized_physics, number_of_timesteps_between_surface_cycling_calls, time_step_for_physics, time_step_for_dynamics, date_and_time_at_model_initialization, date_and_time_at_model_initialization_reordered, number_of_timesteps_between_shortwave_radiation_calls, number_of_timesteps_between_longwave_radiation_calls, frequency_for_shortwave_radiation, frequency_for_longwave_radiation, number_of_vertical_layers_for_radiation_calculations, number_of_vertical_layers_for_radiation_calculations_plus_one, flag_for_aerosol_input_MG_radiation, number_of_aerosol_tracers_MG, array_dimension_of_random_number, flag_for_vertical_index_direction_control, flag_for_solar_constant, flag_for_using_prescribed_global_mean_co2_value, flag_for_using_climatology_albedo, flag_for_surface_emissivity_control, flag_for_default_aerosol_effect_in_shortwave_radiation, flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation, flag_for_max_random_overlap_clouds_for_shortwave_radiation, flag_for_max_random_overlap_clouds_for_longwave_radiation, flag_for_initial_time_date_control, flag_for_sw_clouds_without_sub_grid_approximation, flag_for_lw_clouds_without_sub_grid_approximation, flag_for_CRICK_proof_cloud_water, flag_for_cloud_condensate_normalized_by_cloud_cover, flag_for_precipitation_effect_on_radiation, flag_for_output_of_longwave_heating_rate, flag_for_output_of_shortwave_heating_rate, active_gases_used_by_RRTMGP, number_of_active_gases_used_by_RRTMGP, directory_for_rte_rrtmgp_source_code, rrtmgp_kdistribution_lw, rrtmgp_coeff_lw_cloud_optics, number_of_lw_bands_rrtmgp, number_of_lw_spectral_points_rrtmgp, rrtmgp_kdistribution_sw, rrtmgp_coeff_sw_cloud_optics, number_of_sw_bands_rrtmgp, number_of_sw_spectral_points_rrtmgp, rrtmgp_cloud_optics_flag, number_of_rrtmgp_ice_roughness, number_of_angles_used_in_gaussian_quadrature, flag_for_rrtmgp_radiation_scheme, scheme_flag, number_of_hydrometeors, flag_for_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_wsm6_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, coefficient_from_cloud_ice_to_snow, coefficient_from_cloud_water_to_rain, coefficient_from_cloud_ice_to_snow_ras, coefficient_from_cloud_water_to_rain_ras, coefficient_for_evaporation_of_rainfall, cloud_condensed_water_conversion_threshold, cloud_condensed_water_ice_conversion_threshold_ras, condensate_fraction_detrained_in_updraft_layers, time_interval_for_maximum_hourly_fields, number_of_frozen_precipitation_species, flag_for_pdf_for_morrison_gettelman_microphysics_scheme, mg_autoconversion_size_threshold_ice_snow, mg_cloud_water_variance, mg_time_scale_for_autoconversion_of_ice, mg_minimum_rh_for_ice, mg_drop_concentration_constant, mg_ice_concentration_constant, mg_graupel_concentration_constant, mg_bergeron_efficiency_factor, mg_tuning_factor_for_alphas, mg_minimum_cloud_condensed_water_and_ice_mixing_ratio, mg_minimum_cloud_condensed_water_mixing_ratio, mg_minimum_ice_mixing_ratio, mg_type_of_precip_fraction_method, frozen_cloud_threshold_temperature, cloud_phase_transition_threshold_temperature, cloud_phase_transition_denominator, flag_for_cloud_effective_radii, mg_flag_for_uniform_subcolumns, mg_flag_for_cloud_ice_processes, mg_flag_for_heterogeneous_freezing, mg_flag_drop_concentration_constant, mg_flag_ice_concentration_constant, mg_flag_graupel_concentration_constant, mg_allow_supersat_after_sed, mg_flag_for_sb2001_autoconversion, mg_flag_for_graupel, mg_flag_for_hail, mg_flag_for_gmao_ice_formulation, mg_flag_for_liu_liquid_treatment, shoc_tke_dissipatation_pressure_threshold, shoc_tke_dissipation_tunable_parameter, shoc_tke_dissipation_tunable_parameter_near_surface, shoc_implicit_TKE_integration_uncentering_term, shoc_flag_for_optional_surface_TKE_dissipation, number_of_cloud_condensate_types, flag_for_aerosol_physics, flag_for_radar_reflectivity, limit_for_temperature_tendency_for_microphysics, flag_for_land_surface_scheme, flag_for_noah_land_surface_scheme, flag_for_noahmp_land_surface_scheme, flag_for_ruc_land_surface_scheme, ice_vertical_dimension, soil_vertical_dimension, soil_vertical_dimension_for_land_surface_model, snow_vertical_dimension_for_land_surface_model, lower_bound_of_snow_vertical_dimension_for_land_surface_model, flag_for_reading_leaf_area_index_from_input, vegetation_type_dataset_choice, soil_type_dataset_choice, flag_for_individual_cloud_species_advected, minimum_large_ice_fraction, flag_for_dynamic_vegetation_option, flag_for_canopy_stomatal_resistance_option, flag_for_soil_moisture_factor_stomatal_resistance_option, flag_for_runoff_and_groundwater_option, flag_for_surface_layer_drag_coefficient_option, flag_for_supercooled_liquid_water_option, flag_for_frozen_soil_permeability_option, flag_for_radiation_transfer_option, flag_for_ground_snow_surface_albedo_option, flag_for_precipitation_partition_option, flag_for_lower_boundary_soil_temperature_option, flag_for_soil_and_snow_temperature_time_stepping_option, flag_for_ras_deep_convection, fa_threshold_relative_humidity_for_onset_of_condensation, flag_flip, flag_for_convective_transport_of_tracers, flag_for_old_PBL_scheme, flag_for_moorthi_stratus, flag_for_Chikira_Sugiyama_deep_convection, flag_for_scale_aware_TKE_moist_EDMF_PBL, flag_for_scale_aware_Shinhong_PBL, flag_for_ysu, flag_for_precipitation_type_algorithm, flag_for_Arakawa_Wu_adjustment, flag_arakawa_wu_downdraft, flag_flux_form_CS, flag_for_shoc, flag_for_shoc_after_convection, flag_for_ozone_physics, flag_for_2015_ozone_physics, flag_shallow_convective_cloud, flag_for_reduced_drag_coefficient_over_sea, flag_for_hedmf, flag_TKE_dissipation_heating, flag_for_canopy_heat_storage, flag_for_shallow_convection, flag_for_mass_flux_shallow_convection_scheme, flag_for_sas_shallow_convection_scheme, flag_for_samf_shallow_convection_scheme, flag_for_gf_shallow_convection_scheme, flag_for_ntiedtke_shallow_convection_scheme, flag_for_mass_flux_deep_convection_scheme, flag_for_sas_deep_convection_scheme, flag_for_samf_deep_convection_scheme, flag_for_gf_deep_convection_scheme, flag_for_ntiedtke_deep_convection_scheme, choice_of_scale_aware_TKE_moist_EDMF_PBL, choice_of_original_scale_aware_TKE_moist_EDMF_PBL, choice_of_updated_scale_aware_TKE_moist_EDMF_PBL, number_of_statistical_measures_of_subgrid_orography, number_of_spectral_wave_trancation_for_sas, updraft_velocity_tunable_parameter_1_CS, updraft_velocity_tunable_parameter_2_CS, detrainment_and_precipitation_tunable_parameter_3_CS, detrainment_and_precipitation_tunable_parameter_4_CS, entrainment_efficiency_tunable_parameter_9_CS, multiplication_factors_for_convective_gravity_wave_drag, multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag, multiplication_factor_for_critical_cloud_workfunction, ice_supersaturation_threshold, critical_cloud_top_entrainment_instability_criteria, critical_relative_humidity_at_surface, critical_relative_humidity_at_PBL_top, critical_relative_humidity_at_top_of_atmosphere, pressure_cutoff_for_rayleigh_damping, time_scale_for_rayleigh_damping, entrainment_rate_coefficient_deep_convection, rain_conversion_parameter_deep_convection, detrainment_conversion_parameter_deep_convection, downdraft_fraction_reaching_surface_over_land_deep_convection, downdraft_fraction_reaching_surface_over_ocean_deep_convection, rain_evaporation_coefficient_deep_convection, rain_evaporation_coefficient_over_land_deep_convection, momentum_transport_reduction_factor_pgf_deep_convection, aerosol_aware_parameter_deep_convection, entrainment_rate_coefficient_shallow_convection, rain_conversion_parameter_shallow_convection, detrainment_conversion_parameter_shallow_convection, momentum_transport_reduction_factor_pgf_shallow_convection, aerosol_aware_parameter_shallow_convection, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, flag_for_nsstm_run, vertical_temperature_average_range_lower_bound, vertical_temperature_average_range_upper_bound, flag_for_fractional_grid, lake_ice_minimum, sea_ice_minimum, density_of_fresh_water, flag_for_surface_roughness_option_over_ocean, atmosphere_heat_diffusivity_background_maximum, atmosphere_diffusivity_coefficient_factor, tke_dissipative_heating_factor, updraft_fraction_in_boundary_layer_mass_flux_scheme, downdraft_fraction_in_boundary_layer_mass_flux_scheme, surface_roughness_fraction_factor, latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux, number_of_independent_cellular_automata, cellular_automata_lifetime, cellular_automata_finer_grid, cellular_automata_seed_probability, cellular_automata_seed_frequency, flag_for_cellular_automata, flag_for_sgs_cellular_automata, flag_for_global_cellular_automata, flag_for_global_cellular_automata_closure, flag_for_global_cellular_automata_entr, flag_for_global_cellular_automata_trigger, flag_for_gaussian_spatial_filter, seed_for_random_number_generation_in_cellular_automata_scheme, number_of_iterations_to_spin_up_cellular_automata, threshold_for_perturbed_vertical_velocity, flag_for_stochastic_surface_physics_perturbations, flag_for_mountain_blocking, flag_for_stochastic_shum_option, flag_for_stochastic_skeb_option, flag_for_stochastic_surface_perturbations, number_of_surface_perturbations, magnitude_of_perturbation_of_momentum_roughness_length, magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio, magnitude_of_perturbation_of_soil_type_b_parameter, magnitude_of_perturbation_of_leaf_area_index, magnitude_of_surface_albedo_perturbation, magnitude_of_perturbation_of_vegetation_fraction, number_of_tracers, number_of_tracers_plus_one, index_for_water_vapor, index_for_ozone, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_graupel, index_for_cloud_amount, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, index_for_rain_number_concentration, index_for_snow_number_concentration, index_for_graupel_number_concentration, index_for_turbulent_kinetic_energy, index_for_mass_weighted_rime_factor, index_for_water_friendly_aerosols, index_for_ice_friendly_aerosols, number_of_chemical_tracers, index_for_first_chemical_tracer, diagnostics_control_for_chemical_tracers, coefficients_for_aerosol_scavenging, number_of_fields_in_phyf2d, number_of_fields_in_phyf3d, index_for_cloud_fraction_in_3d_arrays_for_microphysics, array_dimension_of_2d_arrays_for_microphysics, array_dimension_of_3d_arrays_for_microphysics, index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d, index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d, index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d, number_of_convective_3d_cloud_fields, number_of_3d_arrays_associated_with_pdf_based_clouds, number_of_cloud_types_CS, index_for_convective_cloud_water_mixing_ratio_in_phy_f3d, index_for_convective_cloud_cover_in_phy_f3d, index_for_cloud_liquid_water_effective_radius, index_for_ice_effective_radius, index_for_rain_effective_radius, index_for_snow_effective_radius, index_for_graupel_effective_radius, flag_debug, index_for_diagnostic_printout, flag_print, flag_to_calc_sw, flag_to_calc_lw, forecast_hour_of_the_day, solar_constant, equation_of_time, sine_of_solar_declination_angle, cosine_of_solar_declination_angle, convective_cloud_switch, forecast_time_at_previous_timestep, forecast_time, time_since_diagnostics_zeroed, index_of_time_step, flag_for_first_time_step, flag_for_restart, flag_for_hydrostatic_solver, forecast_date_and_time, forecast_month, number_of_days_in_year, julian_day, flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics, seconds_elapsed_since_model_initialization, vertical_sigma_coordinate_for_radiation_initialization, inverse_scaling_factor_for_critical_relative_humidity, maximum_scaling_factor_for_critical_relative_humidity, minimum_scaling_factor_for_critical_relative_humidity, maximum_critical_relative_humidity, gwd_opt, do_mynnedmf, do_mynnsfclay, do_myjsfc, do_myjpbl, grav_settling, tke_budget, tke_advect, cloudpdf, mixing_length_flag, edmf_flag, edmf_momentum_transport_flag, edmf_tke_transport_flag, edmf_partition_flag, cloud_specie_mix_flag, mix_total_water_flag, couple_sgs_clouds_to_radiation_flag, do_ugwp, turb_oro_form_drag_flag, flag_for_gravity_wave_drag, flag_for_convective_gravity_wave_drag, diag_ugwp_flag +DEBUG: Variables in derived type GFS_interstitial_type: humidity_mixing_ratio, cloud_liquid_water_mixing_ratio, cloud_rain_water_mixing_ratio, cloud_ice_mixing_ratio, cloud_snow_mixing_ratio, mass_weighted_rime_factor_mixing_ratio, fraction_of_ice_water_cloud, fraction_of_rain_water_cloud, rime_factor, total_cloud_condensate_mixing_ratio_updated_by_physics, surface_upwelling_longwave_flux_over_ocean_interstitial, surface_upwelling_longwave_flux_over_land_interstitial, surface_upwelling_longwave_flux_over_ice_interstitial, surface_downwelling_direct_near_infrared_shortwave_flux, surface_upwelling_direct_near_infrared_shortwave_flux, surface_downwelling_diffuse_near_infrared_shortwave_flux, surface_upwelling_diffuse_near_infrared_shortwave_flux, surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux, surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, surface_albedo_perturbation, perturbation_of_soil_type_b_parameter, surface_drag_coefficient_for_momentum_in_air, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice, convective_cloud_fraction_for_microphysics, convective_cloud_volume_fraction, cloud_area_fraction, cloud_area_fraction_for_radiation, cloud_optical_depth_layers_at_10mu_band, cloud_optical_depth_layers_at_0p55mu_band, cloud_work_function, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_rain_water_path, mean_effective_radius_for_rain_drop, cloud_snow_water_path, mean_effective_radius_for_snow_flake, convective_transportable_tracers, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, turbulent_kinetic_energy_convective_transport_tracer, fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height, surface_drag_wind_speed_for_momentum_in_air_over_ocean, surface_drag_wind_speed_for_momentum_in_air_over_land, surface_drag_wind_speed_for_momentum_in_air_over_ice, tendency_of_cloud_water_due_to_convective_microphysics, ice_fraction_in_convective_tower, detrained_mass_flux, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment, convective_cloud_cover, convective_cloud_water_mixing_ratio, cloud_top_entrainment_instability_value, grid_sensitive_critical_cloud_top_entrainment_instability_criteria, maximum_column_heating_rate, instantaneous_atmosphere_downdraft_convective_mass_flux, cloud_decorrelation_length, air_pressure_difference_between_midlayers, geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature, layer_pressure_thickness_for_radiation, atmosphere_heat_diffusivity, characteristic_grid_length_scale, tendency_of_tracers_due_to_model_physics, tendency_of_water_vapor_specific_humidity_due_to_model_physics, tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics, tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics, tendency_of_ozone_mixing_ratio_due_to_model_physics, tendency_of_cloud_droplet_number_concentration_due_to_model_physics, tendency_of_ice_number_concentration_due_to_model_physics, tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics, tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics, tendency_of_rain_water_mixing_ratio_due_to_model_physics, tendency_of_snow_water_mixing_ratio_due_to_model_physics, tendency_of_graupel_mixing_ratio_due_to_model_physics, tendency_of_turbulent_kinetic_energy_due_to_model_physics, instantaneous_surface_upward_latent_heat_flux, subsurface_runoff_flux, tendency_of_air_temperature_due_to_model_physics, tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky, instantaneous_surface_upward_sensible_heat_flux, mean_change_over_depth_in_sea_water_temperature, instantaneous_atmosphere_detrainment_convective_mass_flux, tendency_of_x_wind_due_to_model_physics, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_surface_x_momentum_flux, tendency_of_vertically_diffused_tracer_concentration, tendency_of_y_wind_due_to_model_physics, instantaneous_y_stress_due_to_gravity_wave_drag, instantaneous_surface_y_momentum_flux, layer_thickness_for_radiation, maximum_subgrid_orography, surface_longwave_emissivity_over_ocean_interstitial, surface_longwave_emissivity_over_land_interstitial, surface_longwave_emissivity_over_ice_interstitial, surface_upward_potential_latent_heat_flux, surface_upward_potential_latent_heat_flux_over_ocean, surface_upward_potential_latent_heat_flux_over_land, surface_upward_potential_latent_heat_flux_over_ice, kinematic_surface_upward_latent_heat_flux, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_over_ocean, kinematic_surface_upward_latent_heat_flux_over_land, kinematic_surface_upward_latent_heat_flux_over_ice, soil_upward_latent_heat_flux, canopy_upward_latent_heat_flux, aerosol_optical_properties_for_longwave_bands_01_16, aerosol_optical_depth_for_longwave_bands_01_16, aerosol_single_scattering_albedo_for_longwave_bands_01_16, aerosol_asymmetry_parameter_for_longwave_bands_01_16, aerosol_optical_properties_for_shortwave_bands_01_16, aerosol_optical_depth_for_shortwave_bands_01_16, aerosol_single_scattering_albedo_for_shortwave_bands_01_16, aerosol_asymmetry_parameter_for_shortwave_bands_01_16, Monin_Obukhov_similarity_function_for_heat_over_ocean, Monin_Obukhov_similarity_function_for_heat_over_land, Monin_Obukhov_similarity_function_for_heat_over_ice, Monin_Obukhov_similarity_function_for_heat_at_2m, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean, Monin_Obukhov_similarity_function_for_heat_at_2m_over_land, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice, flag_for_cice, flag_for_guess_run, flag_for_iteration, Monin_Obukhov_similarity_function_for_momentum_over_ocean, Monin_Obukhov_similarity_function_for_momentum_over_land, Monin_Obukhov_similarity_function_for_momentum_over_ice, Monin_Obukhov_similarity_function_for_momentum_at_10m, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice, dynamics_to_physics_timestep_ratio, land_area_fraction_for_microphysics, fraction_of_tracer_scavenged, fraction_of_cloud_top_water_scavenged, surface_downwelling_longwave_flux_absorbed_by_ground, surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean, surface_downwelling_longwave_flux_absorbed_by_ground_over_land, surface_downwelling_longwave_flux_absorbed_by_ground_over_ice, anisotropy_of_subgrid_orography, countergradient_mixing_term_for_water_vapor, countergradient_mixing_term_for_temperature, volume_mixing_ratio_co2, volume_mixing_ratio_n2o, volume_mixing_ratio_ch4, volume_mixing_ratio_o2, volume_mixing_ratio_co, volume_mixing_ratio_cfc11, volume_mixing_ratio_cfc12, volume_mixing_ratio_cfc22, volume_mixing_ratio_ccl4, volume_mixing_ratio_cfc113, upward_heat_flux_in_soil, upward_heat_flux_in_soil_over_ocean, upward_heat_flux_in_soil_over_land, upward_heat_flux_in_soil_over_ice, lwe_thickness_of_graupel_amount, tendency_of_x_wind_due_to_convective_gravity_wave_drag, tendency_of_y_wind_due_to_convective_gravity_wave_drag, number_of_coefficients_in_h2o_forcing_data, natural_log_of_h2o_forcing_data_pressure_levels, surface_upward_latent_heat_flux_reduction_factor, surface_upward_sensible_heat_flux_reduction_factor, kinematic_surface_upward_sensible_heat_flux, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_sensible_heat_flux_over_ocean, kinematic_surface_upward_sensible_heat_flux_over_land, kinematic_surface_upward_sensible_heat_flux_over_ice, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, lwe_thickness_of_ice_amount, flag_nonzero_land_surface_fraction, daytime_points, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_lake_surface_fraction, flag_nonzero_ocean_surface_fraction, horizontal_index_of_printed_column, sea_land_ice_mask, sea_land_ice_mask_cice, number_of_aerosol_tracers_for_convection, flag_nonzero_wet_surface_fraction, vertical_index_difference_between_layer_and_lower_bound, vertical_index_at_cloud_base, flag_deep_convection, vertical_index_difference_between_inout_and_local, index_of_highest_temperature_inversion, vertical_index_at_top_of_atmosphere_boundary_layer, vertical_index_difference_between_layer_and_upper_bound, vertical_index_at_cloud_top, latitude_index_in_debug_printouts, vertical_interface_dimension, vertical_dimension_of_h2o_forcing_data, vertical_dimension_of_ozone_forcing_data, adjusted_vertical_layer_dimension_for_radiation, adjusted_vertical_level_dimension_for_radiation, model_layer_number_at_cloud_base, flag_mg3_as_mg2, model_layer_number_at_cloud_top, number_of_aerosol_bands_for_longwave_radiation, number_of_aerosol_bands_for_shortwave_radiation, local_graupel_number_concentration, local_ice_number_concentration, local_condesed_water_number_concentration, local_rain_number_concentration, local_snow_number_concentration, number_of_tracers_for_CS, daytime_points_dimension, number_of_aerosol_output_fields_for_longwave_radiation, number_of_aerosol_output_fields_for_shortwave_radiation, number_of_tracers_for_convective_transport, number_of_tracers_for_cloud_condensate, number_of_tracers_for_samf, number_of_tracers_scavenged, number_of_species_for_aerosol_optical_depth, index_for_ice_cloud_condensate_vertical_diffusion_tracer, index_for_turbulent_kinetic_energy_convective_transport_tracer, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, number_of_vertical_diffusion_tracers, asymmetry_of_subgrid_orography, convexity_of_subgrid_orography, ozone_concentration_at_layer_for_radiation, flag_convective_tracer_transport, number_of_coefficients_in_ozone_forcing_data, number_of_coefficients_in_ozone_forcing_data_plus_five, natural_log_of_ozone_forcing_data_pressure_levels, flag_for_hydrostatic_heating_from_physics, air_pressure_at_interface_for_radiation_in_hPa, air_pressure_at_layer_for_radiation_in_hPa, prandtl_number, specific_humidity_at_2m_from_noahmp, local_graupel_mixing_ratio, mass_fraction_of_convective_cloud_ice, mass_fraction_of_convective_cloud_liquid_water, water_vapor_specific_humidity_at_layer_for_radiation, local_rain_water_mixing_ratio, local_snow_water_mixing_ratio, lwe_thickness_of_explicit_precipitation_amount, surface_specific_humidity, surface_specific_humidity_over_ocean, surface_specific_humidity_over_land, surface_specific_humidity_over_ice, flag_for_resetting_radar_reflectivity_calculation, time_step_for_radiation, lwe_thickness_of_deep_convective_precipitation_amount, lwe_thickness_of_shallow_convective_precipitation_amount, lwe_thickness_of_moist_convective_adj_precipitation_amount, lwe_thickness_of_explicit_rain_amount, tendency_of_rain_water_mixing_ratio_due_to_microphysics, bulk_richardson_number_at_lowest_model_level, bulk_richardson_number_at_lowest_model_level_over_ocean, bulk_richardson_number_at_lowest_model_level_over_land, bulk_richardson_number_at_lowest_model_level_over_ice, flag_reset_maximum_hourly_fields, critical_relative_humidity, surface_runoff_flux, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save, water_vapor_specific_humidity_save, tracer_concentration_save, air_temperature_save, x_wind_save, y_wind_save, snow_deposition_sublimation_upward_latent_heat_flux, components_of_surface_downward_shortwave_fluxes, surface_albedo_due_to_near_IR_direct, surface_albedo_due_to_near_IR_diffused, surface_albedo_due_to_UV_and_VIS_direct, surface_albedo_due_to_UV_and_VIS_diffused, slope_of_subgrid_orography, bounded_vegetation_area_fraction, convective_updraft_area_fraction, convective_updraft_area_fraction_at_model_interfaces, flag_skip_macro, surface_slope_classification, surface_snow_area_fraction, surface_snow_thickness_water_equivalent_over_ocean, surface_snow_thickness_water_equivalent_over_land, surface_snow_thickness_water_equivalent_over_ice, snow_freezing_rain_upward_latent_heat_flux, lwe_thickness_of_snow_amount, surface_snow_melt, soil_type_classification, surface_wind_stress, surface_wind_stress_over_ocean, surface_wind_stress_over_land, surface_wind_stress_over_ice, temperature_at_2m_from_noahmp, angle_from_east_of_maximum_subgrid_orographic_variations, sea_ice_temperature_interstitial, air_temperature_at_interface_for_radiation, air_temperature_at_layer_for_radiation, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice, start_index_of_other_tracers, number_of_total_tracers, flag_for_aerosol_convective_transport_and_PBL_diffusion, transpiration_flux, surface_skin_temperature_for_nsst, surface_air_temperature_for_radiation, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ice_interstitial, surface_ground_temperature_for_radiation, surface_skin_temperature_after_iteration, surface_skin_temperature_after_iteration_over_ocean, surface_skin_temperature_after_iteration_over_land, surface_skin_temperature_after_iteration_over_ice, number_of_water_tracers, instantaneous_atmosphere_updraft_convective_mass_flux, surface_friction_velocity_over_ocean, surface_friction_velocity_over_land, surface_friction_velocity_over_ice, vertically_diffused_tracer_concentration, perturbation_of_vegetation_fraction, vegetation_type_classification, vertical_velocity_for_updraft, maximum_updraft_velocity_at_cloud_base, water_equivalent_accumulated_snow_depth_over_ocean, water_equivalent_accumulated_snow_depth_over_land, water_equivalent_accumulated_snow_depth_over_ice, wind_speed_at_lowest_model_layer, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, instantaneous_cosine_of_zenith_angle, perturbation_of_leaf_area_index, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, perturbation_of_momentum_roughness_length, surface_roughness_length_over_ocean_interstitial, surface_roughness_length_over_land_interstitial, surface_roughness_length_over_ice_interstitial, perturbation_of_heat_to_momentum_roughness_length_ratio, tendency_of_x_wind_due_to_ugwp, tendency_of_y_wind_due_to_ugwp, tendency_of_air_temperature_due_to_ugwp, eddy_mixing_due_to_ugwp, height_of_mountain_blocking, height_of_low_level_wave_breaking, height_of_launch_level_of_orographic_gravity_wave, instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag, instantaneous_momentum_flux_due_to_mountain_blocking_drag, instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag, instantaneous_momentum_flux_due_to_nonstationary_gravity_wave, instantaneous_change_in_x_wind_due_to_mountain_blocking_drag, instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag, instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, air_temperature_at_interface_for_RRTMGP, virtual_temperature, relative_humidity, chemical_tracers, RRTMGP_sw_heating_rate_clear_sky, RRTMGP_sw_heating_rate_all_sky, RRTMGP_sw_heating_rate_spectral, RRTMGP_lw_heating_rate_clear_sky, RRTMGP_lw_heating_rate_all_sky, RRTMGP_lw_heating_rate_spectral, initial_permutation_seed_sw, initial_permutation_seed_lw, RRTMGP_total_cloud_fraction, RRTMGP_cloud_liquid_water_path, RRTMGP_mean_effective_radius_for_liquid_cloud, RRTMGP_cloud_ice_water_path, RRTMGP_mean_effective_radius_for_ice_cloud, RRTMGP_cloud_rain_water_path, RRTMGP_mean_effective_radius_for_rain_drop, RRTMGP_cloud_snow_water_path, RRTMGP_mean_effective_radius_for_snow_flake, RRTMGP_cloud_optical_depth_layers_at_0_55mu_band, RRTMGP_cloud_optical_depth_layers_at_10mu_band, RRTMGP_lw_flux_profile_upward_allsky, RRTMGP_lw_flux_profile_downward_allsky, RRTMGP_lw_flux_profile_upward_clrsky, RRTMGP_lw_flux_profile_downward_clrsky, RRTMGP_sw_flux_profile_upward_allsky, RRTMGP_sw_flux_profile_downward_allsky, RRTMGP_sw_flux_profile_upward_clrsky, RRTMGP_sw_flux_profile_downward_clrsky, RRTMGP_lw_fluxes, RRTMGP_sw_fluxes, RRTMGP_aerosol_optical_properties_for_longwave_bands_01_16, RRTMGP_aerosol_optical_depth_for_longwave_bands_01_16, RRTMGP_aerosol_single_scattering_albedo_for_longwave_bands_01_16, RRTMGP_aerosol_asymmetry_parameter_for_longwave_bands_01_16, RRTMGP_aerosol_optical_properties_for_shortwave_bands_01_16, RRTMGP_aerosol_optical_depth_for_shortwave_bands_01_16, RRTMGP_aerosol_single_scattering_albedo_for_shortwave_bands_01_16, RRTMGP_aerosol_asymmetry_parameter_for_shortwave_bands_01_16, seed_random_numbers_lw_for_RRTMGP, seed_random_numbers_sw_for_RRTMGP, coefficients_for_sw_gas_optics, coefficients_for_sw_cloud_optics, shortwave_optical_properties_for_clear_sky, shortwave_optical_properties_for_cloudy_atmosphere_by_band, shortwave_optical_properties_for_cloudy_atmosphere, shortwave_optical_properties_for_aerosols, Gas_concentrations_for_RRTMGP_suite, longwave_source_function, coefficients_for_lw_gas_optics, coefficients_for_lw_cloud_optics, longwave_optical_properties_for_clear_sky, longwave_optical_properties_for_cloudy_atmosphere, longwave_optical_properties_for_cloudy_atmosphere_by_band, longwave_optical_properties_for_aerosols, surface_emissivity_in_each_RRTMGP_LW_band, secant_of_diffusivity_angle_each_RRTMGP_LW_band, surface_albedo_nearIR_direct, surface_albedo_nearIR_diffuse, surface_albedo_uvvis_dir, surface_albedo_uvvis_dif, toa_incident_lw_flux_by_spectral_point, toa_incident_sw_flux_by_spectral_point, list_of_active_gases_used_by_RRTMGP +DEBUG: Variables in derived type GFS_tbd_type: seed_random_numbers_sw, seed_random_numbers_lw, ozone_forcing, h2o_forcing, in_number_concentration, ccn_number_concentration, aerosol_number_concentration_from_gocart_aerosol_climatology, map_of_block_column_number_to_global_i_index, map_of_block_column_number_to_global_j_index, random_number_array, accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90, smallest_cloud_base_vertical_index_encountered_thus_far, largest_cloud_top_vertical_index_encountered_thus_far, tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step, tendency_of_lwe_thickness_of_precipitation_amount_for_coupling, tendency_of_lwe_thickness_of_snow_amount_for_coupling, cloud_base_mass_flux, surface_air_pressure_two_time_steps_back, surface_air_pressure_at_previous_time_step, surface_wind_enhancement_due_to_convection, air_temperature_two_time_steps_back, water_vapor_specific_humidity_two_time_steps_back, air_temperature_at_previous_time_step, water_vapor_specific_humidity_at_previous_time_step, convective_cloud_water_mixing_ratio_in_phy_f3d, convective_cloud_cover_in_phy_f3d, kinematic_buoyancy_flux_from_shoc, atmosphere_heat_diffusivity_from_shoc, subgrid_scale_cloud_fraction_from_shoc, cloud_fraction_for_MG, effective_radius_of_stratiform_cloud_liquid_water_particle_in_um, effective_radius_of_stratiform_cloud_ice_particle_in_um, effective_radius_of_stratiform_cloud_rain_particle_in_um, effective_radius_of_stratiform_cloud_snow_particle_in_um, effective_radius_of_stratiform_cloud_graupel_particle_in_um, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, temperature_from_previous_timestep, moisture_from_previous_timestep, conv_activity_counter, subgrid_cloud_fraction_pbl, subgrid_cloud_mixing_ratio_pbl, mixing_length, stability_function_for_heat, tke_at_mass_points, t_prime_squared, q_prime_squared, t_prime_q_prime, surface_specific_humidity_for_MYJ_schemes, potential_temperature_at_viscous_sublayer_top, specific_humidity_at_viscous_sublayer_top, u_wind_component_at_viscous_sublayer_top, v_wind_component_at_viscous_sublayer_top, baseline_surface_roughness_length, heat_exchange_coefficient_for_MYJ_schemes, momentum_exchange_coefficient_for_MYJ_schemes, surface_layer_evaporation_switch, kinematic_surface_latent_heat_flux, weight_for_momentum_at_viscous_sublayer_top, weight_for_potental_temperature_at_viscous_sublayer_top, weight_for_specific_humidity_at_viscous_sublayer_top +DEBUG: Variables in derived type GFS_sfcprop_type: sea_land_ice_mask_real, sea_area_fraction, land_area_fraction, lake_area_fraction, surface_skin_temperature, sea_surface_temperature, surface_skin_temperature_over_land, sea_ice_temperature, internal_ice_temperature, surface_snow_thickness_water_equivalent, surface_roughness_length, surface_roughness_length_over_ocean, surface_roughness_length_over_land, sea_ice_concentration, statistical_measures_of_subgrid_orography, standard_deviation_of_subgrid_orography, surface_snow_area_fraction_over_land, upper_bound_on_max_albedo_over_deep_snow, mean_vis_albedo_with_weak_cosz_dependency, mean_nir_albedo_with_weak_cosz_dependency, surface_slope_classification_real, minimum_vegetation_area_fraction, maximum_vegetation_area_fraction, deep_soil_temperature, vegetation_area_fraction, vegetation_type_classification_real, soil_type_classification_real, surface_friction_velocity, orography, orography_unfiltered, gf_memory_counter, sea_ice_thickness, water_equivalent_accumulated_snow_depth, canopy_water_amount, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, ratio_of_wind_at_lowest_model_layer_and_wind_at_10m, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep, flag_for_precipitation_type, volume_fraction_of_unfrozen_soil_moisture, volume_fraction_of_soil_moisture, soil_temperature, temperature_at_2m, potential_temperature_at_2m, specific_humidity_at_2m, sea_surface_reference_temperature, sub_layer_cooling_thickness, coefficient_c_0, coefficient_c_d, coefficient_w_0, coefficient_w_d, diurnal_thermocline_layer_heat_content, sea_water_salinity, diurnal_thermocline_layer_x_current, diurnal_thermocline_layer_y_current, diurnal_thermocline_layer_thickness, ocean_mixed_layer_thickness, sensitivity_of_dtl_heat_content_to_surface_temperature, sensitivity_of_dtl_thickness_to_surface_temperature, free_convection_layer_thickness, index_of_dtlm_start, sub_layer_cooling_amount, sensible_heat_flux_due_to_rainfall, number_of_snow_layers, vegetation_temperature, ground_temperature_for_noahmp, canopy_intercepted_ice_mass, canopy_intercepted_liquid_water, canopy_air_vapor_pressure, canopy_air_temperature, surface_drag_coefficient_for_momentum_for_noahmp, surface_drag_coefficient_for_heat_and_moisture_for_noahmp, area_fraction_of_wet_canopy, snow_mass_at_previous_time_step, snow_albedo_at_previous_time_step, snow_precipitation_rate_at_surface, lake_water_storage, water_table_depth, water_storage_in_aquifer, water_storage_in_aquifer_and_saturated_soil, snow_temperature, layer_bottom_depth_from_snow_surface, snow_layer_ice, snow_layer_liquid_water, leaf_mass, fine_root_mass, stem_mass, wood_mass, slow_soil_pool_mass_content_of_carbon, fast_soil_pool_mass_content_of_carbon, leaf_area_index, stem_area_index, nondimensional_snow_age, equilibrium_soil_water_content, soil_water_content_between_soil_bottom_and_water_table, water_table_recharge_when_deep, water_table_recharge_when_shallow, normalized_soil_wetness_for_land_surface_model, volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model, volume_fraction_of_frozen_soil_moisture_for_land_surface_model, volume_fraction_of_soil_moisture_for_land_surface_model, soil_temperature_for_land_surface_model, depth_of_soil_levels_for_land_surface_model, cloud_condensed_water_mixing_ratio_at_surface, water_vapor_mixing_ratio_at_surface, surface_condensation_mass, flag_for_frozen_soil_physics, density_of_frozen_precipitation, snow_temperature_bottom_first_layer, total_accumulated_snowfall, accumulated_water_equivalent_of_frozen_precip, surface_friction_velocity_drag, surface_stability_parameter, theta_star, reciprocal_of_obukhov_length, surface_exchange_coefficient_for_heat, surface_exchange_coefficient_for_moisture, surface_exchange_coefficient_for_heat_at_2m, surface_exchange_coefficient_for_moisture_at_2m, surface_latent_heat, lwe_thickness_of_convective_precipitation_amount_from_previous_timestep, lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep, lwe_thickness_of_ice_amount_from_previous_timestep, lwe_thickness_of_snow_amount_from_previous_timestep, lwe_thickness_of_graupel_amount_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, explicit_rainfall_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, mean_vis_albedo_with_strong_cosz_dependency, mean_nir_albedo_with_strong_cosz_dependency, fractional_coverage_with_strong_cosz_dependency, fractional_coverage_with_weak_cosz_dependency +DEBUG: Variables in derived type GFS_coupling_type: surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step, surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step, surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step, surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step, surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_downwelling_shortwave_flux_on_radiation_time_step, surface_net_downwelling_shortwave_flux_on_radiation_time_step, surface_downwelling_longwave_flux_on_radiation_time_step, lwe_thickness_of_precipitation_amount_for_coupling, lwe_thickness_of_convective_precipitation_amount_for_coupling, lwe_thickness_of_snow_amount_for_coupling, cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep, cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep, cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep, cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, instantaneous_surface_x_momentum_flux_for_coupling, instantaneous_surface_y_momentum_flux_for_coupling, instantaneous_surface_upward_sensible_heat_flux_for_coupling, instantaneous_surface_upward_latent_heat_flux_for_coupling, instantaneous_surface_downwelling_longwave_flux_for_coupling, instantaneous_surface_downwelling_shortwave_flux_for_coupling, instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_net_downward_longwave_flux_for_coupling, instantaneous_surface_net_downward_shortwave_flux_for_coupling, instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_temperature_at_2m_for_coupling, instantaneous_specific_humidity_at_2m_for_coupling, instantaneous_x_wind_at_10m_for_coupling, instantaneous_y_wind_at_10m_for_coupling, instantaneous_surface_skin_temperature_for_coupling, instantaneous_surface_air_pressure_for_coupling, surface_upwelling_longwave_flux_for_coupling, surface_x_momentum_flux_for_coupling, surface_y_momentum_flux_for_coupling, surface_upward_sensible_heat_flux_for_coupling, surface_upward_latent_heat_flux_for_coupling, sea_land_ice_mask_in, fraction_of_cellular_automata_for_deep_convection, vertical_weight_for_ca, cellular_automata_global_pattern, physics_field_for_coupling, weights_for_stochastic_shum_perturbation, weights_for_stochastic_sppt_perturbation, weights_for_stochastic_skeb_perturbation_of_x_wind, weights_for_stochastic_skeb_perturbation_of_y_wind, weights_for_stochastic_surface_physics_perturbation, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection, tendency_of_water_friendly_aerosols_at_surface, tendency_of_ice_friendly_aerosols_at_surface, instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling, instantaneous_atmosphere_heat_diffusivity +DEBUG: Variables in derived type GFS_statein_type: geopotential_at_interface, air_pressure_at_interface, dimensionless_exner_function_at_model_interfaces, dimensionless_exner_function_at_lowest_model_interface, geopotential, air_pressure, air_pressure_at_lowest_model_layer, dimensionless_exner_function_at_model_layers, dimensionless_exner_function_at_lowest_model_layer, surface_air_pressure, x_wind, x_wind_at_lowest_model_layer, y_wind, y_wind_at_lowest_model_layer, omega, air_temperature, air_temperature_at_lowest_model_layer, tracer_concentration, water_vapor_specific_humidity, water_vapor_specific_humidity_at_lowest_model_layer, cloud_condensed_water_mixing_ratio, cloud_condensed_water_mixing_ratio_at_lowest_model_layer, ice_water_mixing_ratio, rain_water_mixing_ratio, snow_water_mixing_ratio, graupel_mixing_ratio, ozone_mixing_ratio, water_friendly_aerosol_number_concentration, ice_friendly_aerosol_number_concentration, cloud_droplet_number_concentration, ice_number_concentration, rain_number_concentration, snow_number_concentration, graupel_number_concentration, turbulent_kinetic_energy, dissipation_estimate_of_air_temperature_at_model_layers +DEBUG: Variables in derived type GFS_cldprop_type: fraction_of_convective_cloud, pressure_at_top_of_convective_cloud, pressure_at_bottom_of_convective_cloud +DEBUG: Variables in derived type GFS_data_type: GFS_statein_type_instance, GFS_stateout_type_instance, GFS_sfcprop_type_instance, GFS_coupling_type_instance, GFS_grid_type_instance, GFS_tbd_type_instance, GFS_cldprop_type_instance, GFS_radtend_type_instance, GFS_diag_type_instance +DEBUG: Variables in derived type GFS_radtend_type: sw_fluxes_sfc, lw_fluxes_sfc, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, surface_diffused_shortwave_albedo, cosine_of_zenith_angle, daytime_mean_cosz_over_rad_call_period, surface_midlayer_air_temperature_in_longwave_radiation, surface_longwave_emissivity, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_for_idea +DEBUG: Variables in derived type GFS_grid_type: cell_area, cell_size, latitude, longitude, cosine_of_latitude, sine_of_latitude, latitude_degree +DEBUG: Variables in derived type GFS_stateout_type: x_wind_updated_by_physics, x_wind_at_lowest_model_layer_updated_by_physics, y_wind_updated_by_physics, y_wind_at_lowest_model_layer_updated_by_physics, air_temperature_updated_by_physics, air_temperature_at_lowest_model_layer_updated_by_physics, tracer_concentration_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics, ozone_concentration_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, mass_weighted_rime_factor_updated_by_physics, water_friendly_aerosol_number_concentration_updated_by_physics, ice_friendly_aerosol_number_concentration_updated_by_physics, cloud_droplet_number_concentration_updated_by_physics, ice_number_concentration_updated_by_physics, rain_number_concentration_updated_by_physics, snow_number_concentration_updated_by_physics, graupel_number_concentration_updated_by_physics, cloud_fraction_updated_by_physics +DEBUG: Variables in derived type GFS_init_type: +INFO: Parsed variable definition tables in module GFS_typedefs +DEBUG: Parsing file CCPP_data.F90 with registry OrderedDict([('CCPP_data', {})]) +DEBUG: Module name: CCPP_data +DEBUG: Module variables: ccpp_t_instance, CCPP_interstitial_type_instance, GFS_control_type_instance, GFS_data_type_instance, GFS_interstitial_type_instance, GFS_data_type_instance_all_blocks, GFS_interstitial_type_instance_all_threads +INFO: Parsed variable definition tables in module CCPP_data +DEBUG: Parsing file mo_gas_optics_rrtmgp.F90 with registry OrderedDict([('mo_gas_optics_rrtmgp', {'ty_gas_optics_rrtmgp': [42, 164]})]) +DEBUG: Module name: mo_gas_optics_rrtmgp +DEBUG: Module variables: ty_gas_optics_rrtmgp +DEBUG: Variables in derived type ty_gas_optics_rrtmgp: +INFO: Parsed variable definition tables in module mo_gas_optics_rrtmgp +DEBUG: Parsing file mo_gas_concentrations.F90 with registry OrderedDict([('mo_gas_concentrations', {'ty_gas_concs': [42, 71], 'conc_field': [36, 38]})]) +DEBUG: Module name: mo_gas_concentrations +DEBUG: Module variables: ty_gas_concs +DEBUG: Variables in derived type ty_gas_concs: +DEBUG: Variables in derived type conc_field: +INFO: Parsed variable definition tables in module mo_gas_concentrations +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_arry +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_1scl +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_2str +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_nstr +DEBUG: Parsing file mo_optical_props.F90 with registry OrderedDict([('mo_optical_props', {'ty_optical_props_nstr': [175, 187], 'ty_optical_props_arry': [88, 104], 'ty_optical_props_1scl': [151, 160], 'ty_optical_props_2str': [162, 173], 'ty_optical_props': [53, 79]})]) +DEBUG: Module name: mo_optical_props +DEBUG: Module variables: ty_optical_props_1scl, ty_optical_props_2str, ty_optical_props_nstr +DEBUG: Variables in derived type ty_optical_props_nstr: +DEBUG: Variables in derived type ty_optical_props_arry: +DEBUG: Variables in derived type ty_optical_props_1scl: +DEBUG: Variables in derived type ty_optical_props_2str: +DEBUG: Variables in derived type ty_optical_props: +INFO: Parsed variable definition tables in module mo_optical_props +DEBUG: Parsing file mo_cloud_optics.F90 with registry OrderedDict([('mo_cloud_optics', {'ty_cloud_optics': [34, 79]})]) +DEBUG: Module name: mo_cloud_optics +DEBUG: Module variables: ty_cloud_optics +DEBUG: Variables in derived type ty_cloud_optics: +INFO: Parsed variable definition tables in module mo_cloud_optics +DEBUG: Parsing file mo_source_functions.F90 with registry OrderedDict([('mo_source_functions', {'ty_source_func_sw': [52, 63], 'ty_source_func_lw': [28, 47]})]) +DEBUG: Module name: mo_source_functions +DEBUG: Module variables: ty_source_func_lw +DEBUG: Variables in derived type ty_source_func_sw: +DEBUG: Variables in derived type ty_source_func_lw: +INFO: Parsed variable definition tables in module mo_source_functions +DEBUG: Parsing file ccpp_types.F90 with registry OrderedDict([('ccpp_types', {'ccpp_t': [41, 50]})]) +DEBUG: Module name: ccpp_types +DEBUG: Module variables: ccpp_t +DEBUG: Variables in derived type ccpp_t: ccpp_error_flag, ccpp_error_message, ccpp_loop_counter, ccpp_block_number, ccpp_thread_number +INFO: Parsed variable definition tables in module ccpp_types +INFO: Convert local names from new metadata format into old metadata format ... +INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from rainmcadj to GFS_Interstitial(cdata%thrd_no)%rainmcadj +INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata +DEBUG: Updating local name of variable local_ice_number_concentration from ncpi to GFS_Interstitial(cdata%thrd_no)%ncpi +INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata +DEBUG: Updating local name of variable flag_nonzero_ocean_surface_fraction from ocean to GFS_Interstitial(cdata%thrd_no)%ocean +INFO: Converting local name facsf of variable fractional_coverage_with_strong_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable fractional_coverage_with_strong_cosz_dependency from facsf to GFS_Data(cdata%blk_no)%Sfcprop%facsf +INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata +DEBUG: Updating local name of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from tprcp_ice to GFS_Interstitial(cdata%thrd_no)%tprcp_ice +INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from du3dt(:,:,2) to GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,2) +INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata +DEBUG: Updating local name of variable mg_bergeron_efficiency_factor from mg_berg_eff_factor to GFS_Control%mg_berg_eff_factor +INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata +DEBUG: Updating local name of variable mean_effective_radius_for_liquid_cloud from clouds(:,:,3) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) +INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata +DEBUG: Updating local name of variable cloud_optical_depth_layers_at_10mu_band from cldtaulw to GFS_Interstitial(cdata%thrd_no)%cldtaulw +INFO: Converting local name gas_concentrations of variable Gas_concentrations_for_RRTMGP_suite from new to old metadata +DEBUG: Updating local name of variable Gas_concentrations_for_RRTMGP_suite from gas_concentrations to GFS_Interstitial(cdata%thrd_no)%gas_concentrations +INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata +DEBUG: Updating local name of variable surface_runoff_flux from runoff to GFS_Interstitial(cdata%thrd_no)%runoff +INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata +DEBUG: Updating local name of variable cloud_area_fraction_for_radiation from cldsa to GFS_Interstitial(cdata%thrd_no)%cldsa +INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from totsnwb to GFS_Data(cdata%blk_no)%Intdiag%totsnwb +INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_snow_amount from totsnw to GFS_Data(cdata%blk_no)%Intdiag%totsnw +INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata +DEBUG: Updating local name of variable fraction_of_cloud_top_water_scavenged from fswtr to GFS_Interstitial(cdata%thrd_no)%fswtr +INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from dqsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dqsfc_cpl +INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_model_physics from dtdt to GFS_Interstitial(cdata%thrd_no)%dtdt +INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable y_wind_updated_by_physics from gv0 to GFS_Data(cdata%blk_no)%Stateout%gv0 +INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable cumulative_atmosphere_detrainment_convective_mass_flux from det_mf to GFS_Data(cdata%blk_no)%Intdiag%det_mf +INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata +DEBUG: Updating local name of variable flag_for_surface_roughness_option_over_ocean from sfc_z0_type to GFS_Control%sfc_z0_type +INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata +DEBUG: Updating local name of variable vertical_index_at_cloud_base from kbot to GFS_Interstitial(cdata%thrd_no)%kbot +INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_for_thickness_at_Lagrangian_surface from npzdelz to CCPP_interstitial%npzdelz +INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata +DEBUG: Updating local name of variable leaf_area_index from xlaixy to GFS_Data(cdata%blk_no)%Sfcprop%xlaixy +INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata +DEBUG: Updating local name of variable smallest_cloud_base_vertical_index_encountered_thus_far from acvb to GFS_Data(cdata%blk_no)%Tbd%acvb +INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata +DEBUG: Updating local name of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from tprcp_ocean to GFS_Interstitial(cdata%thrd_no)%tprcp_ocean +INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable log_pressure_at_Lagrangian_surface from peln to CCPP_interstitial%peln +INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata +DEBUG: Updating local name of variable height_of_launch_level_of_orographic_gravity_wave from zogw to GFS_Interstitial(cdata%thrd_no)%zogw +INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata +INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata +DEBUG: Updating local name of variable flag_for_stochastic_shum_option from do_shum to GFS_Control%do_shum +INFO: Converting local name toa_src_sw of variable toa_incident_sw_flux_by_spectral_point from new to old metadata +DEBUG: Updating local name of variable toa_incident_sw_flux_by_spectral_point from toa_src_sw to GFS_Interstitial(cdata%thrd_no)%toa_src_sw +INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata +DEBUG: Updating local name of variable layer_pressure_thickness_for_radiation from delr to GFS_Interstitial(cdata%thrd_no)%delr +INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata +DEBUG: Updating local name of variable local_graupel_number_concentration from ncgl to GFS_Interstitial(cdata%thrd_no)%ncgl +INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_minus_one from levsm1 to GFS_Control%levsm1 +INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_fraction_at_Lagrangian_surface from qc to CCPP_interstitial%qc +INFO: Converting local name oro of variable orography from new to old metadata +DEBUG: Updating local name of variable orography from oro to GFS_Data(cdata%blk_no)%Sfcprop%oro +INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata +DEBUG: Updating local name of variable sw_fluxes_top_atmosphere from topfsw to GFS_Data(cdata%blk_no)%Intdiag%topfsw +INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_heat_and_moisture_in_air from cdq to GFS_Interstitial(cdata%thrd_no)%cdq +INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_latent_heat_flux_over_ocean from evap_ocean to GFS_Interstitial(cdata%thrd_no)%evap_ocean +INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio_at_surface from clw_surf to GFS_Data(cdata%blk_no)%Sfcprop%clw_surf +INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata +DEBUG: Updating local name of variable model_layer_number_at_cloud_base from mbota to GFS_Interstitial(cdata%thrd_no)%mbota +INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +DEBUG: Updating local name of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from ncnvw to GFS_Control%ncnvw +INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata +DEBUG: Updating local name of variable detrainment_conversion_parameter_shallow_convection from c1_shal to GFS_Control%c1_shal +INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from v10max to GFS_Data(cdata%blk_no)%Intdiag%v10max +INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_y_stress_due_to_gravity_wave_drag from dvsfcg to GFS_Interstitial(cdata%thrd_no)%dvsfcg +INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_longwave_emissivity_over_ocean_interstitial from semis_ocean to GFS_Interstitial(cdata%thrd_no)%semis_ocean +INFO: Converting local name condition of variable physics_field_for_coupling from new to old metadata +DEBUG: Updating local name of variable physics_field_for_coupling from condition to GFS_Data(cdata%blk_no)%Coupling%condition +INFO: Converting local name ntasks of variable mpi_size from new to old metadata +DEBUG: Updating local name of variable mpi_size from ntasks to GFS_Control%ntasks +INFO: Converting local name hlwb of variable RRTMGP_lw_heating_rate_spectral from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_heating_rate_spectral from hlwb to GFS_Interstitial(cdata%thrd_no)%hlwb +INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from nnirbm_cpl to GFS_Data(cdata%blk_no)%Coupling%nnirbm_cpl +INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from tau_mtb to GFS_Interstitial(cdata%thrd_no)%tau_mtb +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata +DEBUG: Updating local name of variable index_for_liquid_cloud_condensate from ntcw to GFS_Control%ntcw +DEBUG: Updating local name of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_liquid_cloud_condensate) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntcw) +INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable number_of_statistical_measures_of_subgrid_orography from nmtvr to GFS_Control%nmtvr +INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata +DEBUG: Updating local name of variable snow_precipitation_rate_at_surface from qsnowxy to GFS_Data(cdata%blk_no)%Sfcprop%qsnowxy +INFO: Converting local name cld_swp of variable RRTMGP_cloud_snow_water_path from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_snow_water_path from cld_swp to GFS_Interstitial(cdata%thrd_no)%cld_swp +INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata +DEBUG: Updating local name of variable fast_soil_pool_mass_content_of_carbon from fastcpxy to GFS_Data(cdata%blk_no)%Sfcprop%fastcpxy +INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata +DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from qgrs(:,1,index_for_liquid_cloud_condensate) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntcw) +INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata +DEBUG: Updating local name of variable sea_surface_temperature from tsfco to GFS_Data(cdata%blk_no)%Sfcprop%tsfco +INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata +DEBUG: Updating local name of variable mean_effective_radius_for_rain_drop from clouds(:,:,7) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) +INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from dlwsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dlwsfc_cpl +INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux_on_radiation_time_step from sfcdlw to GFS_Data(cdata%blk_no)%Coupling%sfcdlw +INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata +DEBUG: Updating local name of variable index_for_ice_cloud_condensate from ntiw to GFS_Control%ntiw +INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata +DEBUG: Updating local name of variable mixing_length_flag from bl_mynn_mixlength to GFS_Control%bl_mynn_mixlength +INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_optical_depth_for_longwave_bands_01_16 from faerlw(:,:,:,1) to GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,1) +INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata +DEBUG: Updating local name of variable surface_exchange_coefficient_for_moisture from flqc to GFS_Data(cdata%blk_no)%Sfcprop%flqc +INFO: Converting local name slag of variable equation_of_time from new to old metadata +DEBUG: Updating local name of variable equation_of_time from slag to GFS_Control%slag +INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length from zorl to GFS_Data(cdata%blk_no)%Sfcprop%zorl +INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_longwave_flux_for_coupling from ulwsfcin_cpl to GFS_Data(cdata%blk_no)%Coupling%ulwsfcin_cpl +INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata +DEBUG: Updating local name of variable do_ugwp from do_ugwp to GFS_Control%do_ugwp +INFO: Converting local name rrtmgp_nGptsLW of variable number_of_lw_spectral_points_rrtmgp from new to old metadata +DEBUG: Updating local name of variable number_of_lw_spectral_points_rrtmgp from rrtmgp_nGptsLW to GFS_Control%rrtmgp_nGptsLW +INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata +DEBUG: Updating local name of variable vertical_index_difference_between_layer_and_lower_bound from kb to GFS_Interstitial(cdata%thrd_no)%kb +INFO: Converting local name aerosolslw of variable RRTMGP_aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_optical_properties_for_longwave_bands_01_16 from aerosolslw to GFS_Interstitial(cdata%thrd_no)%aerosolslw +INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata +DEBUG: Updating local name of variable integrated_x_momentum_flux_from_form_drag from dusfc_fd to GFS_Data(cdata%blk_no)%Intdiag%dusfc_fd +INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_coupling_type_instance from Coupling to GFS_Data(cdata%blk_no)%Coupling +INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_sas_deep_convection_scheme from imfdeepcnv_sas to GFS_Control%imfdeepcnv_sas +INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from tau_tofd to GFS_Data(cdata%blk_no)%Intdiag%tau_tofd +INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_lowest_model_layer_updated_by_physics from gt0(:,1) to GFS_Data(cdata%blk_no)%Stateout%gt0(:,1) +INFO: Converting local name qsq of variable q_prime_squared from new to old metadata +DEBUG: Updating local name of variable q_prime_squared from qsq to GFS_Data(cdata%blk_no)%Tbd%qsq +INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata +DEBUG: Updating local name of variable cloud_ice_water_path from clouds(:,:,4) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) +INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from refdmax to GFS_Data(cdata%blk_no)%Intdiag%refdmax +INFO: Converting local name flxprf_sw of variable RRTMGP_sw_fluxes from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_fluxes from flxprf_sw to GFS_Interstitial(cdata%thrd_no)%flxprf_sw +INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata +DEBUG: Updating local name of variable integrated_y_momentum_flux_from_large_scale_gwd from dvsfc_ls to GFS_Data(cdata%blk_no)%Intdiag%dvsfc_ls +INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata +INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata +DEBUG: Updating local name of variable ccpp_thread_number from thrd_no to cdata%thrd_no +DEBUG: Updating local name of variable GFS_interstitial_type_instance from GFS_Interstitial(ccpp_thread_number) to GFS_Interstitial(cdata%thrd_no) +INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata +INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata +DEBUG: Updating local name of variable index_for_cloud_liquid_water_effective_radius from nleffr to GFS_Control%nleffr +DEBUG: Updating local name of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nleffr) +INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_x_wind_at_10m_for_coupling from u10mi_cpl to GFS_Data(cdata%blk_no)%Coupling%u10mi_cpl +INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from lwhc to GFS_Data(cdata%blk_no)%Radtend%lwhc +INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata +DEBUG: Updating local name of variable angle_from_east_of_maximum_subgrid_orographic_variations from theta to GFS_Interstitial(cdata%thrd_no)%theta +INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata +DEBUG: Updating local name of variable magnitude_of_perturbation_of_vegetation_fraction from pertvegf to GFS_Control%pertvegf +INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata +DEBUG: Updating local name of variable surface_snow_thickness_water_equivalent_over_land from snowd_land to GFS_Interstitial(cdata%thrd_no)%snowd_land +INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable atmosphere_energy_content_at_Lagrangian_surface from te0 to CCPP_interstitial%te0 +INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata +DEBUG: Updating local name of variable ratio_of_snowfall_to_rainfall from sr to GFS_Data(cdata%blk_no)%Intdiag%sr +INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable multiplication_factors_for_convective_gravity_wave_drag from cgwf to GFS_Control%cgwf +INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata +DEBUG: Updating local name of variable flag_for_precipitation_partition_option from iopt_snf to GFS_Control%iopt_snf +INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_cfc11 from gasvmr(:,:,6) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,6) +INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata +DEBUG: Updating local name of variable layer_thickness_for_radiation from dzlyr to GFS_Interstitial(cdata%thrd_no)%dzlyr +INFO: Converting local name ty_cloud_optics of variable ty_cloud_optics from new to old metadata +DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted +INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from nnirdfi_cpl to GFS_Data(cdata%blk_no)%Coupling%nnirdfi_cpl +INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Variable index_for_ice_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_water_mixing_ratio_updated_by_physics from gq0(:,:,index_for_ice_cloud_condensate) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntiw) +INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from gwdcv to GFS_Interstitial(cdata%thrd_no)%gwdcv +INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata +DEBUG: Updating local name of variable upward_heat_flux_in_soil_over_ice from gflx_ice to GFS_Interstitial(cdata%thrd_no)%gflx_ice +INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from gwdcu to GFS_Interstitial(cdata%thrd_no)%gwdcu +INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata +DEBUG: Updating local name of variable time_step_for_physics from dtp to GFS_Control%dtp +INFO: Converting local name ty_optical_props_2str of variable ty_optical_props_2str from new to old metadata +INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata +DEBUG: Updating local name of variable seed_random_numbers_lw from icsdlw to GFS_Data(cdata%blk_no)%Tbd%icsdlw +INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata +DEBUG: Updating local name of variable number_of_water_tracers from tracers_water to GFS_Interstitial(cdata%thrd_no)%tracers_water +INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from adjvisdfu to GFS_Interstitial(cdata%thrd_no)%adjvisdfu +INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata +DEBUG: Updating local name of variable index_of_highest_temperature_inversion from kinver to GFS_Interstitial(cdata%thrd_no)%kinver +INFO: Converting local name logunit of variable iounit_log from new to old metadata +DEBUG: Updating local name of variable iounit_log from logunit to GFS_Control%logunit +INFO: Converting local name lw_optical_props_cloudsByBand of variable longwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +DEBUG: Updating local name of variable longwave_optical_properties_for_cloudy_atmosphere_by_band from lw_optical_props_cloudsByBand to GFS_Interstitial(cdata%thrd_no)%lw_optical_props_cloudsByBand +INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata +DEBUG: Updating local name of variable flag_for_fractional_grid from frac_grid to GFS_Control%frac_grid +INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata +DEBUG: Updating local name of variable ocean_mixed_layer_thickness from zm to GFS_Data(cdata%blk_no)%Sfcprop%zm +INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata +DEBUG: Updating local name of variable reciprocal_of_obukhov_length from rmol to GFS_Data(cdata%blk_no)%Sfcprop%rmol +INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_sensible_heat_flux_over_land from hflx_land to GFS_Interstitial(cdata%thrd_no)%hflx_land +INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata +DEBUG: Updating local name of variable convective_transportable_tracers from clw to GFS_Interstitial(cdata%thrd_no)%clw +INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata +DEBUG: Updating local name of variable flag_for_stochastic_surface_physics_perturbations from do_sppt to GFS_Control%do_sppt +INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_over_land_interstitial from tsfc_land to GFS_Interstitial(cdata%thrd_no)%tsfc_land +INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata +DEBUG: Updating local name of variable rain_conversion_parameter_deep_convection from c0s_deep to GFS_Control%c0s_deep +INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from sh2o to GFS_Data(cdata%blk_no)%Sfcprop%sh2o +INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata +DEBUG: Updating local name of variable gwd_opt from gwd_opt to GFS_Control%gwd_opt +INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata +DEBUG: Updating local name of variable flag_for_wave_coupling from cplwav to GFS_Control%cplwav +INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable cloud_snow_mixing_ratio from qs_r to GFS_Interstitial(cdata%thrd_no)%qs_r +INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata +DEBUG: Updating local name of variable flag_for_precipitation_type_algorithm from cal_pre to GFS_Control%cal_pre +INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_net_downwelling_shortwave_flux from nswsfci to GFS_Data(cdata%blk_no)%Intdiag%nswsfci +INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_sfcprop_type_instance from Sfcprop to GFS_Data(cdata%blk_no)%Sfcprop +INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata +DEBUG: Updating local name of variable lake_water_storage from wslakexy to GFS_Data(cdata%blk_no)%Sfcprop%wslakexy +INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from lsnow_lsm_lbound to GFS_Control%lsnow_lsm_lbound +INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata +DEBUG: Updating local name of variable sea_land_ice_mask_real from slmsk to GFS_Data(cdata%blk_no)%Sfcprop%slmsk +INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata +DEBUG: Updating local name of variable number_concentration_of_ice_crystals_for_detrainment from cnv_nice to GFS_Interstitial(cdata%thrd_no)%cnv_nice +INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata +DEBUG: Updating local name of variable geopotential_at_interface from phii to GFS_Data(cdata%blk_no)%Statein%phii +INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata +DEBUG: Updating local name of variable dimensionless_exner_function_at_lowest_model_interface from prsik(:,1) to GFS_Data(cdata%blk_no)%Statein%prsik(:,1) +INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_y_momentum_flux_for_coupling from dvsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dvsfci_cpl +INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata +DEBUG: Updating local name of variable flag_for_output_of_longwave_heating_rate from lwhtr to GFS_Control%lwhtr +INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata +DEBUG: Updating local name of variable convective_updraft_area_fraction_at_model_interfaces from sigmatot to GFS_Interstitial(cdata%thrd_no)%sigmatot +INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable soil_temperature_for_land_surface_model from tslb to GFS_Data(cdata%blk_no)%Sfcprop%tslb +INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_shortwave_flux_on_radiation_time_step from sfcdsw to GFS_Data(cdata%blk_no)%Coupling%sfcdsw +INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata +DEBUG: Updating local name of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from chh to GFS_Data(cdata%blk_no)%Intdiag%chh +INFO: Converting local name ty_optical_props_nstr of variable ty_optical_props_nstr from new to old metadata +INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata +DEBUG: Updating local name of variable water_table_recharge_when_deep from deeprechxy to GFS_Data(cdata%blk_no)%Sfcprop%deeprechxy +INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_sas_shallow_convection_scheme from imfshalcnv_sas to GFS_Control%imfshalcnv_sas +INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_previous_time_step from phy_f3d(:,:,3) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,3) +INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_after_iteration from tsurf to GFS_Interstitial(cdata%thrd_no)%tsurf +INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_over_land from ffmm_land to GFS_Interstitial(cdata%thrd_no)%ffmm_land +INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata +DEBUG: Updating local name of variable flag_for_cloud_effective_radii from effr_in to GFS_Control%effr_in +INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata +DEBUG: Updating local name of variable fraction_of_ice_water_cloud from f_ice to GFS_Interstitial(cdata%thrd_no)%f_ice +INFO: Converting local name icseed_lw of variable seed_random_numbers_lw_for_RRTMGP from new to old metadata +DEBUG: Updating local name of variable seed_random_numbers_lw_for_RRTMGP from icseed_lw to GFS_Interstitial(cdata%thrd_no)%icseed_lw +INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_snow_thickness_water_equivalent_over_ocean from snowd_ocean to GFS_Interstitial(cdata%thrd_no)%snowd_ocean +INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from tprcp to GFS_Data(cdata%blk_no)%Sfcprop%tprcp +INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from fm10_ocean to GFS_Interstitial(cdata%thrd_no)%fm10_ocean +INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata +DEBUG: Updating local name of variable updraft_velocity_tunable_parameter_1_CS from cs_parm(1) to GFS_Control%cs_parm(1) +INFO: Converting local name fluxlwUP_clrsky of variable RRTMGP_lw_flux_profile_upward_clrsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_flux_profile_upward_clrsky from fluxlwUP_clrsky to GFS_Interstitial(cdata%thrd_no)%fluxlwUP_clrsky +INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable x_wind_at_lowest_model_layer_updated_by_physics from gu0(:,1) to GFS_Data(cdata%blk_no)%Stateout%gu0(:,1) +INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata +DEBUG: Updating local name of variable flag_for_inline_cloud_fraction_calculation from do_qa to CCPP_interstitial%do_qa +INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata +DEBUG: Updating local name of variable air_pressure_difference_between_midlayers from del to GFS_Interstitial(cdata%thrd_no)%del +INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_skin_temperature_for_coupling from tsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%tsfci_cpl +INFO: Converting local name fluxlwDOWN_allsky of variable RRTMGP_lw_flux_profile_downward_allsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_flux_profile_downward_allsky from fluxlwDOWN_allsky to GFS_Interstitial(cdata%thrd_no)%fluxlwDOWN_allsky +INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_theta_l from edmf_thl to GFS_Data(cdata%blk_no)%Intdiag%edmf_thl +INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata +DEBUG: Updating local name of variable subgrid_cloud_fraction_pbl from CLDFRA_BL to GFS_Data(cdata%blk_no)%Tbd%CLDFRA_BL +INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata +DEBUG: Updating local name of variable ice_water_mixing_ratio_convective_transport_tracer from clw(:,:,1) to GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) +INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata +INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata +DEBUG: Updating local name of variable index_for_water_vapor from ntqv to GFS_Control%ntqv +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_lowest_model_layer from qgrs(:,1,index_for_water_vapor) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) +INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata +DEBUG: Updating local name of variable maximum_specific_humidity_at_2m from spfhmax to GFS_Data(cdata%blk_no)%Intdiag%spfhmax +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_skeb_perturbation_of_x_wind from skebu_wts to GFS_Data(cdata%blk_no)%Coupling%skebu_wts +INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata +DEBUG: Updating local name of variable flag_for_sgs_cellular_automata from ca_sgs to GFS_Control%ca_sgs +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata +DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio from qgrs(:,:,index_for_liquid_cloud_condensate) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) +INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata +DEBUG: Updating local name of variable y_momentum_tendency_from_large_scale_gwd from dtauy2d_ls to GFS_Data(cdata%blk_no)%Intdiag%dtauy2d_ls +INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_total_water from edmf_qt to GFS_Data(cdata%blk_no)%Intdiag%edmf_qt +INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable mean_nir_albedo_with_weak_cosz_dependency from alnwf to GFS_Data(cdata%blk_no)%Sfcprop%alnwf +INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from fh2_ice to GFS_Interstitial(cdata%thrd_no)%fh2_ice +INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata +DEBUG: Updating local name of variable flag_to_calc_lw from lslwr to GFS_Control%lslwr +INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata +DEBUG: Updating local name of variable soil_moisture_content from soilm to GFS_Data(cdata%blk_no)%Intdiag%soilm +INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata +DEBUG: Updating local name of variable atmosphere_momentum_diffusivity_for_mynnpbl from exch_m to GFS_Data(cdata%blk_no)%Intdiag%exch_m +INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable statistical_measures_of_subgrid_orography from hprime to GFS_Data(cdata%blk_no)%Sfcprop%hprime +INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_aerosol_physics from ltaerosol to GFS_Control%ltaerosol +INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata +DEBUG: Updating local name of variable eddy_mixing_due_to_ugwp from gw_kdis to GFS_Interstitial(cdata%thrd_no)%gw_kdis +INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_ice_specific_humidity_at_Lagrangian_surface from qi to CCPP_interstitial%qi +INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_ntiedtke_shallow_convection_scheme from imfshalcnv_gf to GFS_Control%imfshalcnv_gf +INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata +DEBUG: Updating local name of variable tke_at_mass_points from qke to GFS_Data(cdata%blk_no)%Tbd%qke +INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata +DEBUG: Updating local name of variable flag_diagnostics_3D from ldiag3d to GFS_Control%ldiag3d +INFO: Converting local name f_rimef of variable rime_factor from new to old metadata +DEBUG: Updating local name of variable rime_factor from f_rimef to GFS_Interstitial(cdata%thrd_no)%f_rimef +INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata +INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata +DEBUG: Updating local name of variable sea_ice_concentration from fice to GFS_Data(cdata%blk_no)%Sfcprop%fice +INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_longwave_flux_over_land_interstitial from adjsfculw_land to GFS_Interstitial(cdata%thrd_no)%adjsfculw_land +INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat from ffhh to GFS_Data(cdata%blk_no)%Sfcprop%ffhh +INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata +INFO: Converting local name cld_reliq of variable RRTMGP_mean_effective_radius_for_liquid_cloud from new to old metadata +DEBUG: Updating local name of variable RRTMGP_mean_effective_radius_for_liquid_cloud from cld_reliq to GFS_Interstitial(cdata%thrd_no)%cld_reliq +INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata +DEBUG: Updating local name of variable index_for_graupel from ntgl to GFS_Control%ntgl +INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable maximum_y_wind_at_10m from v10mmax to GFS_Data(cdata%blk_no)%Intdiag%v10mmax +INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata +INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata +DEBUG: Updating local name of variable index_for_rain_water from ntrw to GFS_Control%ntrw +INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable surface_y_momentum_flux_for_coupling from dvsfcin_cpl to GFS_Data(cdata%blk_no)%Coupling%dvsfcin_cpl +INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata +DEBUG: Updating local name of variable momentum_exchange_coefficient_for_MYJ_schemes from phy_myj_akms to GFS_Data(cdata%blk_no)%Tbd%phy_myj_akms +INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_bands_for_longwave_radiation from nbdlw to GFS_Interstitial(cdata%thrd_no)%nbdlw +INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata +DEBUG: Updating local name of variable surface_layer_evaporation_switch from phy_myj_chkqlm to GFS_Data(cdata%blk_no)%Tbd%phy_myj_chkqlm +INFO: Converting local name aerosolssw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from aerosolssw(:,:,:,2) to GFS_Interstitial(cdata%thrd_no)%aerosolssw(:,:,:,2) +INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata +DEBUG: Updating local name of variable index_for_diagnostic_printout from ipt to GFS_Control%ipt +INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata +DEBUG: Updating local name of variable entrainment_rate_coefficient_shallow_convection from clam_shal to GFS_Control%clam_shal +INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata +DEBUG: Updating local name of variable number_of_coefficients_in_ozone_forcing_data from oz_coeff to GFS_Interstitial(cdata%thrd_no)%oz_coeff +INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_wsm6_microphysics_scheme from imp_physics_wsm6 to GFS_Control%imp_physics_wsm6 +INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from nnirdf_cpl to GFS_Data(cdata%blk_no)%Coupling%nnirdf_cpl +INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_after_iteration_over_ice from tsurf_ice to GFS_Interstitial(cdata%thrd_no)%tsurf_ice +INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from rainc_cpl to GFS_Data(cdata%blk_no)%Coupling%rainc_cpl +INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata +DEBUG: Updating local name of variable snow_temperature_bottom_first_layer from tsnow to GFS_Data(cdata%blk_no)%Sfcprop%tsnow +INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata +DEBUG: Updating local name of variable convective_cloud_fraction_for_microphysics from cf_upi to GFS_Interstitial(cdata%thrd_no)%cf_upi +INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cappa_moist_gas_constant_at_Lagrangian_surface from cappa to CCPP_interstitial%cappa +INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata +INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata +DEBUG: Updating local name of variable index_for_cloud_amount from ntclamt to GFS_Control%ntclamt +INFO: Converting local name icseed_sw of variable seed_random_numbers_sw_for_RRTMGP from new to old metadata +DEBUG: Updating local name of variable seed_random_numbers_sw_for_RRTMGP from icseed_sw to GFS_Interstitial(cdata%thrd_no)%icseed_sw +INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata +DEBUG: Updating local name of variable flag_for_flux_coupling from cplflx to GFS_Control%cplflx +INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata +DEBUG: Updating local name of variable temperature_tendency_due_to_dynamics from forcet to GFS_Data(cdata%blk_no)%Tbd%forcet +INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata +DEBUG: Updating local name of variable sea_land_ice_mask_in from slimskin_cpl to GFS_Data(cdata%blk_no)%Coupling%slimskin_cpl +INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata +DEBUG: Updating local name of variable water_vapor_mixing_ratio_at_surface from qwv_surf to GFS_Data(cdata%blk_no)%Sfcprop%qwv_surf +INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata +DEBUG: Updating local name of variable tendency_of_y_wind_due_to_ugwp from gw_dvdt to GFS_Interstitial(cdata%thrd_no)%gw_dvdt +INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from spd10max to GFS_Data(cdata%blk_no)%Intdiag%spd10max +INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata +DEBUG: Updating local name of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from tprcp_land to GFS_Interstitial(cdata%thrd_no)%tprcp_land +INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata +DEBUG: Updating local name of variable upward_heat_flux_in_soil from gflx to GFS_Interstitial(cdata%thrd_no)%gflx +INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata +DEBUG: Updating local name of variable number_of_vertical_diffusion_tracers from nvdiff to GFS_Interstitial(cdata%thrd_no)%nvdiff +INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata +DEBUG: Updating local name of variable flag_TKE_dissipation_heating from dspheat to GFS_Control%dspheat +INFO: Converting local name aerosolssw of variable RRTMGP_aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_optical_properties_for_shortwave_bands_01_16 from aerosolssw to GFS_Interstitial(cdata%thrd_no)%aerosolssw +INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata +DEBUG: Updating local name of variable number_of_chemical_tracers from ntchm to GFS_Control%ntchm +INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable top_layer_index_for_fast_physics from kmp to CCPP_interstitial%kmp +INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata +DEBUG: Updating local name of variable magnitude_of_perturbation_of_leaf_area_index from pertlai to GFS_Control%pertlai +INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_drop_concentration_constant from mg_ncnst to GFS_Control%mg_ncnst +INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_graupel was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_graupel) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntgl) +INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata +DEBUG: Updating local name of variable largest_cloud_top_vertical_index_encountered_thus_far from acvt to GFS_Data(cdata%blk_no)%Tbd%acvt +INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from dq3dt(:,:,9) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,9) +INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata +INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata +DEBUG: Updating local name of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from nscfshoc to GFS_Control%nscfshoc +DEBUG: Updating local name of variable subgrid_scale_cloud_fraction_from_shoc from phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nscfshoc) +INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from gabsbdlw_ocean to GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ocean +INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata +DEBUG: Updating local name of variable flag_shallow_convective_cloud from shcnvcw to GFS_Control%shcnvcw +INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from htrsw to GFS_Data(cdata%blk_no)%Radtend%htrsw +INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from tau_mtb to GFS_Data(cdata%blk_no)%Intdiag%tau_mtb +INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata +INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata +DEBUG: Updating local name of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from nkbfshoc to GFS_Control%nkbfshoc +DEBUG: Updating local name of variable kinematic_buoyancy_flux_from_shoc from phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nkbfshoc) +INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from dtsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dtsfci_cpl +INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata +DEBUG: Updating local name of variable convective_cloud_switch from clstp to GFS_Control%clstp +INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata +DEBUG: Updating local name of variable flag_nonzero_sea_ice_surface_fraction from icy to GFS_Interstitial(cdata%thrd_no)%icy +INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_optical_properties_for_shortwave_bands_01_16 from faersw to GFS_Interstitial(cdata%thrd_no)%faersw +INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_upward_potential_latent_heat_flux_over_ice from ep1d_ice to GFS_Interstitial(cdata%thrd_no)%ep1d_ice +INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata +DEBUG: Updating local name of variable couple_sgs_clouds_to_radiation_flag from icloud_bl to GFS_Control%icloud_bl +INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata +INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata +DEBUG: Updating local name of variable index_for_snow_effective_radius from nseffr to GFS_Control%nseffr +DEBUG: Updating local name of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from phy_f3d(:,:,index_for_snow_effective_radius) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nseffr) +INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata +DEBUG: Updating local name of variable flag_for_lower_boundary_soil_temperature_option from iopt_tbot to GFS_Control%iopt_tbot +INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata +DEBUG: Updating local name of variable surface_albedo_due_to_UV_and_VIS_direct from sfcalb(:,3) to GFS_Interstitial(cdata%thrd_no)%sfcalb(:,3) +INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata +DEBUG: Updating local name of variable flag_for_Arakawa_Wu_adjustment from do_aw to GFS_Control%do_aw +INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata +DEBUG: Updating local name of variable turb_oro_form_drag_flag from do_tofd to GFS_Control%do_tofd +INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable cloud_ice_mixing_ratio from qi_r to GFS_Interstitial(cdata%thrd_no)%qi_r +INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_atmosphere_downdraft_convective_mass_flux from dd_mf to GFS_Interstitial(cdata%thrd_no)%dd_mf +INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from ushfsfci to GFS_Data(cdata%blk_no)%Coupling%ushfsfci +INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_gfdl_microphysics_scheme from imp_physics_gfdl to GFS_Control%imp_physics_gfdl +INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata +DEBUG: Updating local name of variable flag_for_chemistry_coupling from cplchm to GFS_Control%cplchm +DEBUG: Variable index_for_cloud_liquid_water_effective_radius was in old metadata format and has already been converted +INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length_over_ice_interstitial from zorl_ice to GFS_Interstitial(cdata%thrd_no)%zorl_ice +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_ice_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_ice_cloud_condensate) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntiw) +INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from snow to GFS_Data(cdata%blk_no)%Intdiag%snow +INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata +DEBUG: Updating local name of variable cellular_automata_finer_grid from ncells to GFS_Control%ncells +INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata +DEBUG: Updating local name of variable index_for_ice_effective_radius from nieffr to GFS_Control%nieffr +INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata +DEBUG: Updating local name of variable orography_unfiltered from oro_uf to GFS_Data(cdata%blk_no)%Sfcprop%oro_uf +INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata +DEBUG: Updating local name of variable surface_stability_parameter from zol to GFS_Data(cdata%blk_no)%Sfcprop%zol +INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata +INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata +DEBUG: Updating local name of variable starting_x_direction_index_domain from isd to CCPP_interstitial%isd +INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from mg_qcmin to GFS_Control%mg_qcmin +INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata +DEBUG: Updating local name of variable k_level_of_highest_reaching_plume from ktop_shallow to GFS_Data(cdata%blk_no)%Intdiag%ktop_shallow +INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from htlw0 to GFS_Interstitial(cdata%thrd_no)%htlw0 +INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata +DEBUG: Updating local name of variable ozone_concentration_at_layer_for_radiation from olyr to GFS_Interstitial(cdata%thrd_no)%olyr +INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_radtend_type_instance from Radtend to GFS_Data(cdata%blk_no)%Radtend +INFO: Converting local name ipsdlw0 of variable initial_permutation_seed_lw from new to old metadata +DEBUG: Updating local name of variable initial_permutation_seed_lw from ipsdlw0 to GFS_Interstitial(cdata%thrd_no)%ipsdlw0 +INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata +DEBUG: Updating local name of variable flag_for_stochastic_surface_perturbations from do_sfcperts to GFS_Control%do_sfcperts +INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata +DEBUG: Updating local name of variable index_of_dtlm_start from ifd to GFS_Data(cdata%blk_no)%Sfcprop%ifd +INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +DEBUG: Updating local name of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from isatmedmf to GFS_Control%isatmedmf +INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata +DEBUG: Updating local name of variable do_myjpbl from do_myjpbl to GFS_Control%do_myjpbl +INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_longwave_flux_over_ocean_interstitial from adjsfculw_ocean to GFS_Interstitial(cdata%thrd_no)%adjsfculw_ocean +INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata +DEBUG: Updating local name of variable dominant_snow_type from tdoms to GFS_Data(cdata%blk_no)%Intdiag%tdoms +INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable specific_humidity_at_viscous_sublayer_top from phy_myj_qz0 to GFS_Data(cdata%blk_no)%Tbd%phy_myj_qz0 +INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from tau_tofd to GFS_Interstitial(cdata%thrd_no)%tau_tofd +INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable snow_deposition_sublimation_upward_latent_heat_flux from sbsno to GFS_Interstitial(cdata%thrd_no)%sbsno +INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata +INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata +DEBUG: Updating local name of variable flag_for_reading_leaf_area_index_from_input from rdlai to GFS_Control%rdlai +INFO: Converting local name area of variable cell_area from new to old metadata +DEBUG: Updating local name of variable cell_area from area to GFS_Data(cdata%blk_no)%Grid%area +INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata +INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata +DEBUG: Updating local name of variable mass_fraction_of_convective_cloud_liquid_water from qlcn to GFS_Interstitial(cdata%thrd_no)%qlcn +INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from fh2_land to GFS_Interstitial(cdata%thrd_no)%fh2_land +INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata +DEBUG: Updating local name of variable y_wind_at_lowest_model_layer_for_diag from v1 to GFS_Data(cdata%blk_no)%Intdiag%v1 +INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata +DEBUG: Updating local name of variable slow_soil_pool_mass_content_of_carbon from stblcpxy to GFS_Data(cdata%blk_no)%Sfcprop%stblcpxy +INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata +DEBUG: Updating local name of variable canopy_water_amount from canopy to GFS_Data(cdata%blk_no)%Sfcprop%canopy +INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata +DEBUG: Updating local name of variable flag_for_surface_emissivity_control from iems to GFS_Control%iems +INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata +DEBUG: Updating local name of variable dominant_freezing_rain_type from tdomzr to GFS_Data(cdata%blk_no)%Intdiag%tdomzr +INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata +DEBUG: Updating local name of variable iounit_namelist from nlunit to GFS_Control%nlunit +INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata +DEBUG: Updating local name of variable integrated_x_momentum_flux_from_small_scale_gwd from dusfc_ss to GFS_Data(cdata%blk_no)%Intdiag%dusfc_ss +INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata +DEBUG: Updating local name of variable sea_area_fraction from oceanfrac to GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac +INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_Lagrangian_surface from qv to CCPP_interstitial%qv +INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from adjnirdfd to GFS_Interstitial(cdata%thrd_no)%adjnirdfd +INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata +DEBUG: Updating local name of variable land_area_fraction from landfrac to GFS_Data(cdata%blk_no)%Sfcprop%landfrac +INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_ozone_physics from oz_phys to GFS_Control%oz_phys +INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata +DEBUG: Updating local name of variable array_dimension_of_2d_arrays_for_microphysics from num_p2d to GFS_Control%num_p2d +INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_y_wind_at_10m_for_coupling from v10mi_cpl to GFS_Data(cdata%blk_no)%Coupling%v10mi_cpl +INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from rh02min to GFS_Data(cdata%blk_no)%Intdiag%rh02min +INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_after_iteration_over_land from tsurf_land to GFS_Interstitial(cdata%thrd_no)%tsurf_land +INFO: Converting local name LTP of variable extra_top_layer from new to old metadata +INFO: Converting local name solcon of variable solar_constant from new to old metadata +DEBUG: Updating local name of variable solar_constant from solcon to GFS_Control%solcon +INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata +DEBUG: Updating local name of variable bulk_richardson_number_at_lowest_model_level_over_ice from rb_ice to GFS_Interstitial(cdata%thrd_no)%rb_ice +INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata +DEBUG: Updating local name of variable tendency_of_y_wind_due_to_model_physics from dvdt to GFS_Interstitial(cdata%thrd_no)%dvdt +INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata +DEBUG: Updating local name of variable tke_advect from bl_mynn_tkeadvect to GFS_Control%bl_mynn_tkeadvect +INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from du3dt(:,:,4) to GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,4) +INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata +DEBUG: Updating local name of variable surface_specific_humidity_for_MYJ_schemes from phy_myj_qsfc to GFS_Data(cdata%blk_no)%Tbd%phy_myj_qsfc +INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_for_CS from ncstrac to GFS_Interstitial(cdata%thrd_no)%ncstrac +INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata +DEBUG: Updating local name of variable index_for_ice_cloud_number_concentration from ntinc to GFS_Control%ntinc +INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata +DEBUG: Updating local name of variable maximum_vegetation_area_fraction from shdmax to GFS_Data(cdata%blk_no)%Sfcprop%shdmax +INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata +DEBUG: Updating local name of variable atmosphere_heat_diffusivity from dkt to GFS_Interstitial(cdata%thrd_no)%dkt +INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata +DEBUG: Updating local name of variable momentum_transport_reduction_factor_pgf_deep_convection from pgcon_deep to GFS_Control%pgcon_deep +INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata +DEBUG: Updating local name of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from indcld to GFS_Control%indcld +INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from nlwsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%nlwsfc_cpl +INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata +DEBUG: Updating local name of variable instantaneous_dry_deposition from drydep to GFS_Data(cdata%blk_no)%Intdiag%drydep +INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from adjvisdfd to GFS_Interstitial(cdata%thrd_no)%adjvisdfd +INFO: Converting local name aerosolslw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_optical_depth_for_longwave_bands_01_16 from aerosolslw(:,:,:,1) to GFS_Interstitial(cdata%thrd_no)%aerosolslw(:,:,:,1) +INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata +DEBUG: Updating local name of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from rainp to GFS_Interstitial(cdata%thrd_no)%rainp +INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from dnirbm_cpl to GFS_Data(cdata%blk_no)%Coupling%dnirbm_cpl +INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata +DEBUG: Updating local name of variable flag_idealized_physics from lsidea to GFS_Control%lsidea +INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata +DEBUG: Updating local name of variable flag_for_using_prescribed_global_mean_co2_value from ico2 to GFS_Control%ico2 +INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_heterogeneous_freezing from hetfrz_classnuc to GFS_Control%hetfrz_classnuc +INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata +INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata +DEBUG: Updating local name of variable index_for_snow_number_concentration from ntsnc to GFS_Control%ntsnc +DEBUG: Updating local name of variable snow_number_concentration from qgrs(:,:,index_for_snow_number_concentration) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntsnc) +INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata +INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata +DEBUG: Updating local name of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from ntiwx to GFS_Interstitial(cdata%thrd_no)%ntiwx +INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_o2 from gasvmr(:,:,4) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,4) +INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata +DEBUG: Updating local name of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from dqdti to GFS_Data(cdata%blk_no)%Coupling%dqdti +INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_direct_near_infrared_shortwave_flux from adjnirbmu to GFS_Interstitial(cdata%thrd_no)%adjnirbmu +INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from cdq_ice to GFS_Interstitial(cdata%thrd_no)%cdq_ice +INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata +INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata +DEBUG: Updating local name of variable flag_for_ysu from do_ysu to GFS_Control%do_ysu +INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from q_con to CCPP_interstitial%q_con +INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata +DEBUG: Updating local name of variable threshold_volume_fraction_of_condensed_water_in_soil from smcref2 to GFS_Data(cdata%blk_no)%Intdiag%smcref2 +INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from fm10_land to GFS_Interstitial(cdata%thrd_no)%fm10_land +INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata +DEBUG: Updating local name of variable number_of_fields_in_phyf3d from ntot3d to GFS_Control%ntot3d +INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata +DEBUG: Updating local name of variable time_step_for_dynamics from dtf to GFS_Control%dtf +INFO: Converting local name vvl of variable omega from new to old metadata +DEBUG: Updating local name of variable omega from vvl to GFS_Data(cdata%blk_no)%Statein%vvl +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_ice_number_concentration_due_to_model_physics from dqdt(:,:,index_for_ice_cloud_number_concentration) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntinc) +INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata +DEBUG: Updating local name of variable rain_evaporation_coefficient_deep_convection from evfact_deep to GFS_Control%evfact_deep +INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata +DEBUG: Updating local name of variable vegetation_temperature from tvxy to GFS_Data(cdata%blk_no)%Sfcprop%tvxy +INFO: Converting local name restart of variable flag_for_restart from new to old metadata +DEBUG: Updating local name of variable flag_for_restart from restart to GFS_Control%restart +INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable u_wind_component_at_viscous_sublayer_top from phy_myj_uz0 to GFS_Data(cdata%blk_no)%Tbd%phy_myj_uz0 +INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from dvisbm_cpl to GFS_Data(cdata%blk_no)%Coupling%dvisbm_cpl +INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from nirbmui to GFS_Data(cdata%blk_no)%Coupling%nirbmui +INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_friction_velocity_over_ice from uustar_ice to GFS_Interstitial(cdata%thrd_no)%uustar_ice +INFO: Converting local name ty_gas_concs of variable ty_gas_concs from new to old metadata +INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from visdfdi to GFS_Data(cdata%blk_no)%Coupling%visdfdi +INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata +DEBUG: Updating local name of variable snow_layer_ice from snicexy to GFS_Data(cdata%blk_no)%Sfcprop%snicexy +INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata +DEBUG: Updating local name of variable flag_for_canopy_heat_storage from lheatstrg to GFS_Control%lheatstrg +INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_unfrozen_soil_moisture from slc to GFS_Data(cdata%blk_no)%Sfcprop%slc +INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata +DEBUG: Updating local name of variable atmosphere_momentum_diffusivity_background from xkzm_m to GFS_Control%xkzm_m +INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata +DEBUG: Updating local name of variable number_of_vertical_layers_for_radiation_calculations from levr to GFS_Control%levr +INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata +DEBUG: Updating local name of variable sensitivity_of_dtl_thickness_to_surface_temperature from xzts to GFS_Data(cdata%blk_no)%Sfcprop%xzts +INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata +DEBUG: Updating local name of variable flag_nonzero_lake_surface_fraction from lake to GFS_Interstitial(cdata%thrd_no)%lake +INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata +DEBUG: Updating local name of variable x_momentum_tendency_from_form_drag from dtaux2d_fd to GFS_Data(cdata%blk_no)%Intdiag%dtaux2d_fd +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata +INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata +DEBUG: Updating local name of variable index_for_liquid_cloud_number_concentration from ntlnc to GFS_Control%ntlnc +DEBUG: Updating local name of variable cloud_droplet_number_concentration from qgrs(:,:,index_for_liquid_cloud_number_concentration) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntlnc) +INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_y_wind_due_to_PBL from dv3dt(:,:,1) to GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,1) +INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from dudt_tms to GFS_Interstitial(cdata%thrd_no)%dudt_tms +INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata +DEBUG: Updating local name of variable surface_albedo_due_to_near_IR_direct from sfcalb(:,1) to GFS_Interstitial(cdata%thrd_no)%sfcalb(:,1) +INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable rain_water_mixing_ratio_updated_by_physics from gq0(:,:,index_for_rain_water) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrw) +INFO: Converting local name sfc_alb_nir_dif of variable surface_albedo_nearIR_diffuse from new to old metadata +DEBUG: Updating local name of variable surface_albedo_nearIR_diffuse from sfc_alb_nir_dif to GFS_Interstitial(cdata%thrd_no)%sfc_alb_nir_dif +INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata +INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata +DEBUG: Updating local name of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from nahdshoc to GFS_Control%nahdshoc +DEBUG: Updating local name of variable atmosphere_heat_diffusivity_from_shoc from phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nahdshoc) +INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata +DEBUG: Updating local name of variable ozone_forcing from ozpl to GFS_Data(cdata%blk_no)%Tbd%ozpl +INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata +INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata +DEBUG: Updating local name of variable canopy_intercepted_liquid_water from canliqxy to GFS_Data(cdata%blk_no)%Sfcprop%canliqxy +INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata +INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata +DEBUG: Updating local name of variable index_for_rain_effective_radius from nreffr to GFS_Control%nreffr +DEBUG: Updating local name of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from phy_f3d(:,:,index_for_rain_effective_radius) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nreffr) +INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_ntiedtke_deep_convection_scheme from imfdeepcnv_ntiedtke to GFS_Control%imfdeepcnv_ntiedtke +INFO: Converting local name hlwc of variable RRTMGP_lw_heating_rate_all_sky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_heating_rate_all_sky from hlwc to GFS_Interstitial(cdata%thrd_no)%hlwc +INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_gmao_ice_formulation from mg_do_ice_gmao to GFS_Control%mg_do_ice_gmao +INFO: Converting local name cld_rerain of variable RRTMGP_mean_effective_radius_for_rain_drop from new to old metadata +DEBUG: Updating local name of variable RRTMGP_mean_effective_radius_for_rain_drop from cld_rerain to GFS_Interstitial(cdata%thrd_no)%cld_rerain +INFO: Converting local name idxday of variable daytime_points from new to old metadata +DEBUG: Updating local name of variable daytime_points from idxday to GFS_Interstitial(cdata%thrd_no)%idxday +INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable cloud_rain_water_mixing_ratio from qr_r to GFS_Interstitial(cdata%thrd_no)%qr_r +INFO: Converting local name stc of variable soil_temperature from new to old metadata +DEBUG: Updating local name of variable soil_temperature from stc to GFS_Data(cdata%blk_no)%Sfcprop%stc +INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata +DEBUG: Updating local name of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from du3dt_ngw to GFS_Data(cdata%blk_no)%Intdiag%du3dt_ngw +INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata +DEBUG: Updating local name of variable cloudpdf from bl_mynn_cloudpdf to GFS_Control%bl_mynn_cloudpdf +INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata +DEBUG: Updating local name of variable flag_diagnostics from lssav to GFS_Control%lssav +INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable y_wind_at_lowest_model_layer from vgrs(:,1) to GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) +INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from adjnirdfu to GFS_Interstitial(cdata%thrd_no)%adjnirdfu +INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature from tsfc to GFS_Data(cdata%blk_no)%Sfcprop%tsfc +INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata +DEBUG: Updating local name of variable lake_ice_minimum from min_lakeice to GFS_Control%min_lakeice +INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from visbmdi to GFS_Data(cdata%blk_no)%Coupling%visbmdi +INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata +DEBUG: Updating local name of variable index_for_snow_water from ntsw to GFS_Control%ntsw +INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_PBL from dt3dt(:,:,3) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,3) +INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from ffmm_ice to GFS_Interstitial(cdata%thrd_no)%ffmm_ice +INFO: Converting local name kdt of variable index_of_time_step from new to old metadata +DEBUG: Updating local name of variable index_of_time_step from kdt to GFS_Control%kdt +INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata +DEBUG: Updating local name of variable time_step_for_radiation from raddt to GFS_Interstitial(cdata%thrd_no)%raddt +INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata +DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable rain_water_mixing_ratio from qgrs(:,:,index_for_rain_water) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntrw) +INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata +DEBUG: Variable index_for_snow_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable snow_water_mixing_ratio from qgrs(:,:,index_for_snow_water) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntsw) +INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata +DEBUG: Updating local name of variable cloud_optical_depth_layers_at_0p55mu_band from cldtausw to GFS_Interstitial(cdata%thrd_no)%cldtausw +INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata +DEBUG: Updating local name of variable nondimensional_snow_age from taussxy to GFS_Data(cdata%blk_no)%Sfcprop%taussxy +INFO: Converting local name nblks of variable number_of_blocks from new to old metadata +DEBUG: Updating local name of variable number_of_blocks from nblks to GFS_Control%nblks +INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from dvsfc to GFS_Data(cdata%blk_no)%Intdiag%dvsfc +INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata +INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata +DEBUG: Updating local name of variable cellular_automata_seed_frequency from nseed to GFS_Control%nseed +INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata +DEBUG: Updating local name of variable perturbation_of_vegetation_fraction from vegf1d to GFS_Interstitial(cdata%thrd_no)%vegf1d +INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata +INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata +DEBUG: Updating local name of variable surface_snow_area_fraction from snowc to GFS_Interstitial(cdata%thrd_no)%snowc +INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable standard_deviation_of_subgrid_orography from hprime(:,1) to GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) +INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata +DEBUG: Updating local name of variable number_of_coefficients_in_h2o_forcing_data from h2o_coeff to GFS_Interstitial(cdata%thrd_no)%h2o_coeff +INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata +DEBUG: Updating local name of variable forecast_time_at_previous_timestep from phour to GFS_Control%phour +INFO: Converting local name rrtmgp_nGptsSW of variable number_of_sw_spectral_points_rrtmgp from new to old metadata +DEBUG: Updating local name of variable number_of_sw_spectral_points_rrtmgp from rrtmgp_nGptsSW to GFS_Control%rrtmgp_nGptsSW +INFO: Converting local name sw_gas_props of variable coefficients_for_sw_gas_optics from new to old metadata +DEBUG: Updating local name of variable coefficients_for_sw_gas_optics from sw_gas_props to GFS_Interstitial(cdata%thrd_no)%sw_gas_props +INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable mass_weighted_rime_factor_mixing_ratio from qg_r to GFS_Interstitial(cdata%thrd_no)%qg_r +INFO: Converting local name xlon of variable longitude from new to old metadata +DEBUG: Updating local name of variable longitude from xlon to GFS_Data(cdata%blk_no)%Grid%xlon +INFO: Converting local name kind_grid of variable kind_grid from new to old metadata +INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata +INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata +DEBUG: Updating local name of variable condensate_fraction_detrained_in_updraft_layers from dlqf to GFS_Control%dlqf +INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from out_dt to CCPP_interstitial%out_dt +INFO: Converting local name rrtmgp_nBandsLW of variable number_of_lw_bands_rrtmgp from new to old metadata +DEBUG: Updating local name of variable number_of_lw_bands_rrtmgp from rrtmgp_nBandsLW to GFS_Control%rrtmgp_nBandsLW +INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata +DEBUG: Updating local name of variable number_of_fields_in_phyf2d from ntot2d to GFS_Control%ntot2d +INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata +DEBUG: Updating local name of variable flag_for_runoff_and_groundwater_option from iopt_run to GFS_Control%iopt_run +INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata +DEBUG: Updating local name of variable snow_mass_at_previous_time_step from sneqvoxy to GFS_Data(cdata%blk_no)%Sfcprop%sneqvoxy +INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from rain to GFS_Data(cdata%blk_no)%Intdiag%rain +INFO: Converting local name lprnt of variable flag_print from new to old metadata +DEBUG: Updating local name of variable flag_print from lprnt to GFS_Control%lprnt +INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata +DEBUG: Updating local name of variable critical_cloud_top_entrainment_instability_criteria from ctei_rm to GFS_Control%ctei_rm +INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +DEBUG: Updating local name of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from tau_ngw to GFS_Data(cdata%blk_no)%Intdiag%tau_ngw +INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_sensible_heat_flux_over_ice from hflx_ice to GFS_Interstitial(cdata%thrd_no)%hflx_ice +INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata +DEBUG: Updating local name of variable number_of_convective_3d_cloud_fields from ncnvcld3d to GFS_Control%ncnvcld3d +DEBUG: Variable index_for_rain_effective_radius was in old metadata format and has already been converted +INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata +DEBUG: Updating local name of variable cloud_snow_water_path from clouds(:,:,8) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) +INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata +DEBUG: Updating local name of variable vertical_velocity_for_updraft from w_upi to GFS_Interstitial(cdata%thrd_no)%w_upi +INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from fm10_ice to GFS_Interstitial(cdata%thrd_no)%fm10_ice +INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata +DEBUG: Updating local name of variable time_interval_for_maximum_hourly_fields from avg_max_length to GFS_Control%avg_max_length +INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata +DEBUG: Updating local name of variable rain_evaporation_coefficient_over_land_deep_convection from evfactl_deep to GFS_Control%evfactl_deep +INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata +DEBUG: Updating local name of variable index_for_ice_friendly_aerosols from ntia to GFS_Control%ntia +INFO: Converting local name active_gases of variable active_gases_used_by_RRTMGP from new to old metadata +DEBUG: Updating local name of variable active_gases_used_by_RRTMGP from active_gases to GFS_Control%active_gases +INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata +DEBUG: Updating local name of variable minimum_specific_humidity_at_2m from spfhmin to GFS_Data(cdata%blk_no)%Intdiag%spfhmin +INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata +DEBUG: Updating local name of variable surface_exchange_coefficient_for_heat from flhc to GFS_Data(cdata%blk_no)%Sfcprop%flhc +INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_vertical_velocity from edmf_w to GFS_Data(cdata%blk_no)%Intdiag%edmf_w +INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from gabsbdlw_land to GFS_Interstitial(cdata%thrd_no)%gabsbdlw_land +INFO: Converting local name kice of variable ice_vertical_dimension from new to old metadata +DEBUG: Updating local name of variable ice_vertical_dimension from kice to GFS_Control%kice +INFO: Converting local name ca_trigger of variable flag_for_global_cellular_automata_trigger from new to old metadata +DEBUG: Updating local name of variable flag_for_global_cellular_automata_trigger from ca_trigger to GFS_Control%ca_trigger +INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable weight_for_specific_humidity_at_viscous_sublayer_top from phy_myj_a1q to GFS_Data(cdata%blk_no)%Tbd%phy_myj_a1q +INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_rain_specific_humidity_at_Lagrangian_surface from qr to CCPP_interstitial%qr +INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata +DEBUG: Updating local name of variable maximum_critical_relative_humidity from rhcmax to GFS_Control%rhcmax +INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata +DEBUG: Updating local name of variable natural_log_of_ozone_forcing_data_pressure_levels from oz_pres to GFS_Interstitial(cdata%thrd_no)%oz_pres +INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata +DEBUG: Updating local name of variable vegetation_type_dataset_choice from ivegsrc to GFS_Control%ivegsrc +INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata +DEBUG: Updating local name of variable b_parameter_of_the_hybrid_coordinate from bk to GFS_Control%bk +INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata +DEBUG: Updating local name of variable tendency_of_cloud_water_due_to_convective_microphysics from cnv_dqldt to GFS_Interstitial(cdata%thrd_no)%cnv_dqldt +INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from tau_ogw to GFS_Interstitial(cdata%thrd_no)%tau_ogw +INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from dq3dt(:,:,6) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,6) +INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_interface from prsi to GFS_Data(cdata%blk_no)%Statein%prsi +INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata +DEBUG: Updating local name of variable number_of_hydrometeors from ncld to GFS_Control%ncld +INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata +DEBUG: Updating local name of variable flag_to_calc_sw from lsswr to GFS_Control%lsswr +INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata +DEBUG: Updating local name of variable ending_y_direction_index_domain from jed to CCPP_interstitial%jed +INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_grid_type_instance from Grid to GFS_Data(cdata%blk_no)%Grid +INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from cdq_ocean to GFS_Interstitial(cdata%thrd_no)%cdq_ocean +INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata +DEBUG: Updating local name of variable y_momentum_tendency_from_form_drag from dtauy2d_fd to GFS_Data(cdata%blk_no)%Intdiag%dtauy2d_fd +INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata +DEBUG: Updating local name of variable flag_for_solar_constant from isol to GFS_Control%isol +INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata +DEBUG: Updating local name of variable potential_temperature_at_2m from th2m to GFS_Data(cdata%blk_no)%Sfcprop%th2m +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +DEBUG: Variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d was in old metadata format and has already been converted +DEBUG: Updating local name of variable convective_cloud_water_mixing_ratio_in_phy_f3d from phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvw) +INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_tracers_for_convection from itc to GFS_Interstitial(cdata%thrd_no)%itc +INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_cldprop_type_instance from Cldprop to GFS_Data(cdata%blk_no)%Cldprop +INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_number_concentration_updated_by_physics from gq0(:,:,index_for_ice_cloud_number_concentration) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntinc) +INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from iovr_sw to GFS_Control%iovr_sw +INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from icliq_sw to GFS_Control%icliq_sw +INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata +DEBUG: Updating local name of variable a_parameter_of_the_hybrid_coordinate from ak to GFS_Control%ak +INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from gabsbdlw_ice to GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ice +INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata +DEBUG: Updating local name of variable pressure_at_top_of_convective_cloud from cvt to GFS_Data(cdata%blk_no)%Cldprop%cvt +INFO: Converting local name fluxlwDOWN_clrsky of variable RRTMGP_lw_flux_profile_downward_clrsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_flux_profile_downward_clrsky from fluxlwDOWN_clrsky to GFS_Interstitial(cdata%thrd_no)%fluxlwDOWN_clrsky +INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from du3dt_ogw to GFS_Data(cdata%blk_no)%Intdiag%du3dt_ogw +INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata +DEBUG: Updating local name of variable atmosphere_energy_content_in_column from te0_2d to CCPP_interstitial%te0_2d +INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata +DEBUG: Updating local name of variable upper_bound_on_max_albedo_over_deep_snow from snoalb to GFS_Data(cdata%blk_no)%Sfcprop%snoalb +INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +DEBUG: Updating local name of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from pertzt to GFS_Control%pertzt +INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata +DEBUG: Updating local name of variable total_cloud_fraction from clouds(:,:,1) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) +INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata +DEBUG: Updating local name of variable index_for_ozone from ntoz to GFS_Control%ntoz +INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata +DEBUG: Updating local name of variable normalized_soil_wetness from wet1 to GFS_Data(cdata%blk_no)%Intdiag%wet1 +INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata +DEBUG: Updating local name of variable adjusted_vertical_layer_dimension_for_radiation from lmk to GFS_Interstitial(cdata%thrd_no)%lmk +INFO: Converting local name kind_phys of variable kind_phys from new to old metadata +INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_snow_thickness_water_equivalent_over_ice from snowd_ice to GFS_Interstitial(cdata%thrd_no)%snowd_ice +INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata +DEBUG: Updating local name of variable vertical_interface_dimension from levi to GFS_Interstitial(cdata%thrd_no)%levi +INFO: Converting local name t_lay of variable air_temperature_at_layer_for_RRTMGP from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_layer_for_RRTMGP from t_lay to GFS_Interstitial(cdata%thrd_no)%t_lay +INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata +DEBUG: Updating local name of variable fa_threshold_relative_humidity_for_onset_of_condensation from rhgrd to GFS_Control%rhgrd +INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata +DEBUG: Updating local name of variable detrainment_conversion_parameter_deep_convection from c1_deep to GFS_Control%c1_deep +INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata +DEBUG: Updating local name of variable dimensionless_exner_function_at_model_interfaces from prsik to GFS_Data(cdata%blk_no)%Statein%prsik +INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata +DEBUG: Updating local name of variable temperature_at_2m_from_noahmp from t2mmp to GFS_Interstitial(cdata%thrd_no)%t2mmp +INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from tau_ogw to GFS_Data(cdata%blk_no)%Intdiag%tau_ogw +INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux from dlwsfci to GFS_Data(cdata%blk_no)%Intdiag%dlwsfci +INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata +DEBUG: Updating local name of variable radar_reflectivity_10cm from refl_10cm to GFS_Data(cdata%blk_no)%Intdiag%refl_10cm +INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata +DEBUG: Updating local name of variable bulk_richardson_number_at_lowest_model_level_over_ocean from rb_ocean to GFS_Interstitial(cdata%thrd_no)%rb_ocean +INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_x_stress_due_to_gravity_wave_drag from dusfcg to GFS_Interstitial(cdata%thrd_no)%dusfcg +INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata +DEBUG: Updating local name of variable horizontal_block_size from blksz to GFS_Control%blksz +INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from chxy to GFS_Data(cdata%blk_no)%Sfcprop%chxy +INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata +DEBUG: Updating local name of variable upward_heat_flux_in_soil_over_ocean from gflx_ocean to GFS_Interstitial(cdata%thrd_no)%gflx_ocean +INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata +DEBUG: Updating local name of variable flag_convective_tracer_transport from otspt to GFS_Interstitial(cdata%thrd_no)%otspt +INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata +DEBUG: Updating local name of variable dissipation_estimate_of_air_temperature_at_model_layers from diss_est to GFS_Data(cdata%blk_no)%Statein%diss_est +INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_mass_flux_shallow_convection_scheme from imfshalcnv to GFS_Control%imfshalcnv +INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata +DEBUG: Updating local name of variable baseline_surface_roughness_length from phy_myj_z0base to GFS_Data(cdata%blk_no)%Tbd%phy_myj_z0base +INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable convective_precipitation_rate_from_previous_timestep from draincprv to GFS_Data(cdata%blk_no)%Sfcprop%draincprv +INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata +DEBUG: Updating local name of variable height_of_low_level_wave_breaking from zlwb to GFS_Interstitial(cdata%thrd_no)%zlwb +INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_momentum_in_air_over_land from cd_land to GFS_Interstitial(cdata%thrd_no)%cd_land +INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata +DEBUG: Updating local name of variable shoc_flag_for_optional_surface_TKE_dissipation from shoc_parm(5) to GFS_Control%shoc_parm(5) +INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_specific_humidity_over_ice from qss_ice to GFS_Interstitial(cdata%thrd_no)%qss_ice +INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from swhc to GFS_Data(cdata%blk_no)%Radtend%swhc +INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata +DEBUG: Updating local name of variable surface_slope_classification from slopetype to GFS_Interstitial(cdata%thrd_no)%slopetype +INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from dvisdfi_cpl to GFS_Data(cdata%blk_no)%Coupling%dvisdfi_cpl +INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata +DEBUG: Updating local name of variable surface_drag_wind_speed_for_momentum_in_air_over_land from cmm_land to GFS_Interstitial(cdata%thrd_no)%cmm_land +INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_at_2m from fh2 to GFS_Interstitial(cdata%thrd_no)%fh2 +INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_x_wind_due_to_PBL from du3dt(:,:,1) to GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,1) +INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_y_wind_due_to_deep_convection from dv3dt(:,:,3) to GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,3) +INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_noah_land_surface_scheme from lsm_noah to GFS_Control%lsm_noah +INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata +DEBUG: Updating local name of variable surface_air_pressure from pgr to GFS_Data(cdata%blk_no)%Statein%pgr +INFO: Converting local name hlw0 of variable RRTMGP_lw_heating_rate_clear_sky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_heating_rate_clear_sky from hlw0 to GFS_Interstitial(cdata%thrd_no)%hlw0 +INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata +DEBUG: Updating local name of variable diurnal_thermocline_layer_y_current from xv to GFS_Data(cdata%blk_no)%Sfcprop%xv +INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata +INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata +DEBUG: Updating local name of variable number_of_ghost_zones from ng to CCPP_interstitial%ng +INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata +DEBUG: Updating local name of variable surface_albedo_due_to_near_IR_diffused from sfcalb(:,2) to GFS_Interstitial(cdata%thrd_no)%sfcalb(:,2) +INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_explicit_rain_amount from rainmp to GFS_Interstitial(cdata%thrd_no)%rainmp +INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata +INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata +DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy from ntke to GFS_Control%ntke +DEBUG: Updating local name of variable turbulent_kinetic_energy from qgrs(:,:,index_for_turbulent_kinetic_energy) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntke) +INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_lowest_model_layer from tgrs(:,1) to GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) +INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable mg_minimum_cloud_condensed_water_mixing_ratio from mg_qcmin(1) to GFS_Control%mg_qcmin(1) +INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable graupel_precipitation_rate_from_previous_timestep from dgraupelprv to GFS_Data(cdata%blk_no)%Sfcprop%dgraupelprv +INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_output_fields_for_longwave_radiation from nf_aelw to GFS_Interstitial(cdata%thrd_no)%nf_aelw +INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata +DEBUG: Updating local name of variable equilibrium_soil_water_content from smoiseq to GFS_Data(cdata%blk_no)%Sfcprop%smoiseq +INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata +DEBUG: Updating local name of variable array_dimension_of_random_number from nrcm to GFS_Control%nrcm +INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata +DEBUG: Updating local name of variable sensitivity_of_dtl_heat_content_to_surface_temperature from xtts to GFS_Data(cdata%blk_no)%Sfcprop%xtts +INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata +DEBUG: Updating local name of variable starting_y_direction_index_domain from jsd to CCPP_interstitial%jsd +INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_longwave_emissivity_over_land_interstitial from semis_land to GFS_Interstitial(cdata%thrd_no)%semis_land +INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata +DEBUG: Updating local name of variable gf_memory_counter from conv_act to GFS_Data(cdata%blk_no)%Sfcprop%conv_act +INFO: Converting local name alnsf of variable mean_nir_albedo_with_strong_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable mean_nir_albedo_with_strong_cosz_dependency from alnsf to GFS_Data(cdata%blk_no)%Sfcprop%alnsf +INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata +DEBUG: Updating local name of variable dominant_sleet_type from tdomip to GFS_Data(cdata%blk_no)%Intdiag%tdomip +INFO: Converting local name tv_lay of variable virtual_temperature from new to old metadata +DEBUG: Updating local name of variable virtual_temperature from tv_lay to GFS_Interstitial(cdata%thrd_no)%tv_lay +INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata +DEBUG: Updating local name of variable vertically_diffused_tracer_concentration from vdftra to GFS_Interstitial(cdata%thrd_no)%vdftra +INFO: Converting local name nGases of variable number_of_active_gases_used_by_RRTMGP from new to old metadata +DEBUG: Updating local name of variable number_of_active_gases_used_by_RRTMGP from nGases to GFS_Control%nGases +INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from totgrpb to GFS_Data(cdata%blk_no)%Intdiag%totgrpb +INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from dq3dt(:,:,3) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,3) +INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata +DEBUG: Updating local name of variable index_for_water_friendly_aerosols from ntwa to GFS_Control%ntwa +DEBUG: Updating local name of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from dqdt(:,:,index_for_water_friendly_aerosols) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntwa) +INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata +DEBUG: Updating local name of variable number_of_lines_of_namelist_filename_for_internal_file_reads from input_nml_file_length to GFS_Control%input_nml_file_length +INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from ffhh_ocean to GFS_Interstitial(cdata%thrd_no)%ffhh_ocean +INFO: Converting local name save_t of variable air_temperature_save from new to old metadata +DEBUG: Updating local name of variable air_temperature_save from save_t to GFS_Interstitial(cdata%thrd_no)%save_t +INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from dvisdf_cpl to GFS_Data(cdata%blk_no)%Coupling%dvisdf_cpl +INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata +DEBUG: Variable index_for_ice_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_water_mixing_ratio_save from save_q(:,:,index_for_ice_cloud_condensate) to GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) +INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_flag_ice_concentration_constant from mg_nicons to GFS_Control%mg_nicons +INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata +DEBUG: Updating local name of variable number_of_gases_for_multi_gases_physics from ngas to CCPP_interstitial%ngas +INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata +DEBUG: Updating local name of variable cosine_of_latitude from coslat to GFS_Data(cdata%blk_no)%Grid%coslat +INFO: Converting local name ty_optical_props_1scl of variable ty_optical_props_1scl from new to old metadata +INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata +DEBUG: Updating local name of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from zogw to GFS_Data(cdata%blk_no)%Intdiag%zogw +INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata +DEBUG: Updating local name of variable surface_slope_classification_real from slope to GFS_Data(cdata%blk_no)%Sfcprop%slope +INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata +DEBUG: Updating local name of variable edmf_momentum_transport_flag from bl_mynn_edmf_mom to GFS_Control%bl_mynn_edmf_mom +INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from dusfc to GFS_Data(cdata%blk_no)%Intdiag%dusfc +INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata +DEBUG: Updating local name of variable fraction_of_cellular_automata_for_deep_convection from ca_deep to GFS_Data(cdata%blk_no)%Coupling%ca_deep +INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata +DEBUG: Updating local name of variable index_for_graupel_number_concentration from ntgnc to GFS_Control%ntgnc +DEBUG: Updating local name of variable graupel_number_concentration_updated_by_physics from gq0(:,:,index_for_graupel_number_concentration) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgnc) +INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata +DEBUG: Updating local name of variable density_of_frozen_precipitation from rhofr to GFS_Data(cdata%blk_no)%Sfcprop%rhofr +INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata +DEBUG: Updating local name of variable number_of_species_for_aerosol_optical_depth from nspc1 to GFS_Interstitial(cdata%thrd_no)%nspc1 +INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata +DEBUG: Updating local name of variable detrained_mass_flux from cnv_mfd to GFS_Interstitial(cdata%thrd_no)%cnv_mfd +INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata +DEBUG: Updating local name of variable cosine_of_solar_declination_angle from cdec to GFS_Control%cdec +INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_cfc113 from gasvmr(:,:,10) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,10) +INFO: Converting local name hflxq of variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness from hflxq to GFS_Interstitial(cdata%thrd_no)%hflxq +INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable mg_minimum_ice_mixing_ratio from mg_qcmin(2) to GFS_Control%mg_qcmin(2) +INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from dudt_mtb to GFS_Interstitial(cdata%thrd_no)%dudt_mtb +INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from nvisdfi_cpl to GFS_Data(cdata%blk_no)%Coupling%nvisdfi_cpl +INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata +DEBUG: Updating local name of variable minimum_temperature_at_2m from tmpmin to GFS_Data(cdata%blk_no)%Intdiag%tmpmin +INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata +DEBUG: Updating local name of variable edmf_tke_transport_flag from bl_mynn_edmf_tke to GFS_Control%bl_mynn_edmf_tke +INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_sb2001_autoconversion from do_sb_physics to GFS_Control%do_sb_physics +INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata +DEBUG: Updating local name of variable cloud_phase_transition_denominator from tcrf to GFS_Control%tcrf +INFO: Converting local name sw_cloud_props of variable coefficients_for_sw_cloud_optics from new to old metadata +DEBUG: Updating local name of variable coefficients_for_sw_cloud_optics from sw_cloud_props to GFS_Interstitial(cdata%thrd_no)%sw_cloud_props +INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata +DEBUG: Updating local name of variable number_of_seasalt_bins_for_diagnostics from nseasalt to GFS_Data(cdata%blk_no)%Intdiag%nseasalt +INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata +DEBUG: Updating local name of variable surface_snow_area_fraction_over_land from sncovr to GFS_Data(cdata%blk_no)%Sfcprop%sncovr +INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable frequency_for_longwave_radiation from fhlwr to GFS_Control%fhlwr +INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata +DEBUG: Updating local name of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from trans_aero to GFS_Interstitial(cdata%thrd_no)%trans_aero +INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from ulwsfc to GFS_Data(cdata%blk_no)%Intdiag%ulwsfc +INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata +INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata +DEBUG: Updating local name of variable ccpp_block_number from blk_no to cdata%blk_no +DEBUG: Updating local name of variable horizontal_loop_extent from blksz(ccpp_block_number) to GFS_Control%blksz(cdata%blk_no) +INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata +DEBUG: Updating local name of variable number_of_vertical_layers_for_radiation_calculations_plus_one from levrp1 to GFS_Control%levrp1 +INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata +DEBUG: Updating local name of variable flag_for_mountain_blocking from use_zmtnblck to GFS_Control%use_zmtnblck +INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable ice_precipitation_rate_from_previous_timestep from diceprv to GFS_Data(cdata%blk_no)%Sfcprop%diceprv +INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from sbsnoa to GFS_Data(cdata%blk_no)%Intdiag%sbsnoa +INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_cfc12 from gasvmr(:,:,7) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,7) +INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata +DEBUG: Updating local name of variable heat_exchange_coefficient_for_MYJ_schemes from phy_myj_akhs to GFS_Data(cdata%blk_no)%Tbd%phy_myj_akhs +INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata +DEBUG: Updating local name of variable flag_for_lw_clouds_without_sub_grid_approximation from isubc_lw to GFS_Control%isubc_lw +INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_soil_moisture_for_land_surface_model from smois to GFS_Data(cdata%blk_no)%Sfcprop%smois +INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_co from gasvmr(:,:,5) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,5) +INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from qvi to CCPP_interstitial%qvi +INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata +DEBUG: Updating local name of variable latitude_degree from xlat_d to GFS_Data(cdata%blk_no)%Grid%xlat_d +INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata +DEBUG: Updating local name of variable index_for_rain_number_concentration from ntrnc to GFS_Control%ntrnc +INFO: Converting local name fluxswDOWN_allsky of variable RRTMGP_sw_flux_profile_downward_allsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_flux_profile_downward_allsky from fluxswDOWN_allsky to GFS_Interstitial(cdata%thrd_no)%fluxswDOWN_allsky +INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length_over_land from zorll to GFS_Data(cdata%blk_no)%Sfcprop%zorll +INFO: Converting local name ca_closure of variable flag_for_global_cellular_automata_closure from new to old metadata +DEBUG: Updating local name of variable flag_for_global_cellular_automata_closure from ca_closure to GFS_Control%ca_closure +INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata +DEBUG: Variable index_for_graupel was in old metadata format and has already been converted +DEBUG: Updating local name of variable graupel_mixing_ratio from qgrs(:,:,index_for_graupel) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntgl) +INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata +DEBUG: Variable array_dimension_of_2d_arrays_for_microphysics was in old metadata format and has already been converted +DEBUG: Updating local name of variable surface_wind_enhancement_due_to_convection from phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) to GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,GFS_Control%num_p2d) +INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_layer_for_radiation from tlyr to GFS_Interstitial(cdata%thrd_no)%tlyr +INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from nirbmdi to GFS_Data(cdata%blk_no)%Coupling%nirbmdi +INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata +DEBUG: Updating local name of variable sea_land_ice_mask from islmsk to GFS_Interstitial(cdata%thrd_no)%islmsk +INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata +DEBUG: Updating local name of variable vertical_temperature_average_range_upper_bound from nstf_name(5) to GFS_Control%nstf_name(5) +INFO: Converting local name rrtmgp_root of variable directory_for_rte_rrtmgp_source_code from new to old metadata +DEBUG: Updating local name of variable directory_for_rte_rrtmgp_source_code from rrtmgp_root to GFS_Control%rrtmgp_root +INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_n2o from gasvmr(:,:,2) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,2) +INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from nirdfdi to GFS_Data(cdata%blk_no)%Coupling%nirdfdi +INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable surface_upward_potential_latent_heat_flux from ep1d to GFS_Interstitial(cdata%thrd_no)%ep1d +INFO: Converting local name rrtmgp_nGauss_ang of variable number_of_angles_used_in_gaussian_quadrature from new to old metadata +DEBUG: Updating local name of variable number_of_angles_used_in_gaussian_quadrature from rrtmgp_nGauss_ang to GFS_Control%rrtmgp_nGauss_ang +INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from ffmm_ocean to GFS_Interstitial(cdata%thrd_no)%ffmm_ocean +INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata +DEBUG: Updating local name of variable sub_layer_cooling_amount from dt_cool to GFS_Data(cdata%blk_no)%Sfcprop%dt_cool +INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from lwhd to GFS_Data(cdata%blk_no)%Radtend%lwhd +INFO: Converting local name flipv of variable flag_flip from new to old metadata +DEBUG: Updating local name of variable flag_flip from flipv to GFS_Control%flipv +INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata +DEBUG: Updating local name of variable ccn_number_concentration from ccn_nm to GFS_Data(cdata%blk_no)%Tbd%ccn_nm +INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata +DEBUG: Updating local name of variable edmf_flag from bl_mynn_edmf to GFS_Control%bl_mynn_edmf +INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata +DEBUG: Updating local name of variable atmosphere_heat_diffusivity_background from xkzm_h to GFS_Control%xkzm_h +INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata +DEBUG: Updating local name of variable perturbation_of_momentum_roughness_length from z01d to GFS_Interstitial(cdata%thrd_no)%z01d +INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_zhao_carr_microphysics_scheme from imp_physics_zhao_carr to GFS_Control%imp_physics_zhao_carr +INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +DEBUG: Updating local name of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from bl_dnfr to GFS_Control%bl_dnfr +INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata +DEBUG: Updating local name of variable perturbation_of_soil_type_b_parameter from bexp1d to GFS_Interstitial(cdata%thrd_no)%bexp1d +INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata +DEBUG: Updating local name of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from xmu to GFS_Interstitial(cdata%thrd_no)%xmu +INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from nvisdf_cpl to GFS_Data(cdata%blk_no)%Coupling%nvisdf_cpl +INFO: Converting local name lw_optical_props_clrsky of variable longwave_optical_properties_for_clear_sky from new to old metadata +DEBUG: Updating local name of variable longwave_optical_properties_for_clear_sky from lw_optical_props_clrsky to GFS_Interstitial(cdata%thrd_no)%lw_optical_props_clrsky +INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_x_momentum_flux_for_coupling from dusfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dusfci_cpl +INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from nnirbmi_cpl to GFS_Data(cdata%blk_no)%Coupling%nnirbmi_cpl +INFO: Converting local name ca_entr of variable flag_for_global_cellular_automata_entr from new to old metadata +DEBUG: Updating local name of variable flag_for_global_cellular_automata_entr from ca_entr to GFS_Control%ca_entr +INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from dv3dt(:,:,4) to GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,4) +INFO: Converting local name hsw0 of variable RRTMGP_sw_heating_rate_clear_sky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_heating_rate_clear_sky from hsw0 to GFS_Interstitial(cdata%thrd_no)%hsw0 +INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from adjvisbmd to GFS_Interstitial(cdata%thrd_no)%adjvisbmd +INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_y_momentum_flux_for_diag from dvsfci to GFS_Data(cdata%blk_no)%Intdiag%dvsfci +INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_latent_heat_flux from phy_myj_elflx to GFS_Data(cdata%blk_no)%Tbd%phy_myj_elflx +INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from pdfflag to GFS_Control%pdfflag +INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_scavenged from nscav to GFS_Interstitial(cdata%thrd_no)%nscav +INFO: Converting local name cld_rwp of variable RRTMGP_cloud_rain_water_path from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_rain_water_path from cld_rwp to GFS_Interstitial(cdata%thrd_no)%cld_rwp +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata +DEBUG: Variable index_for_ice_cloud_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_number_concentration from qgrs(:,:,index_for_ice_cloud_number_concentration) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntinc) +INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata +DEBUG: Updating local name of variable mean_change_over_depth_in_sea_water_temperature from dtzm to GFS_Interstitial(cdata%thrd_no)%dtzm +INFO: Converting local name lw_optical_props_aerosol of variable longwave_optical_properties_for_aerosols from new to old metadata +DEBUG: Updating local name of variable longwave_optical_properties_for_aerosols from lw_optical_props_aerosol to GFS_Interstitial(cdata%thrd_no)%lw_optical_props_aerosol +INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata +DEBUG: Updating local name of variable shoc_tke_dissipation_tunable_parameter_near_surface from shoc_parm(3) to GFS_Control%shoc_parm(3) +INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from visbmui to GFS_Data(cdata%blk_no)%Coupling%visbmui +INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata +DEBUG: Updating local name of variable instantaneous_atmosphere_heat_diffusivity from dkt to GFS_Data(cdata%blk_no)%Coupling%dkt +INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata +DEBUG: Updating local name of variable number_of_snow_layers from snowxy to GFS_Data(cdata%blk_no)%Sfcprop%snowxy +INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from dv3dt(:,:,2) to GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,2) +INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata +DEBUG: Updating local name of variable soil_type_dataset_choice from isot to GFS_Control%isot +INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata +DEBUG: Updating local name of variable horizontal_index_of_printed_column from ipr to GFS_Interstitial(cdata%thrd_no)%ipr +INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_x_momentum_flux_for_diag from dusfci to GFS_Data(cdata%blk_no)%Intdiag%dusfci +INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Variable index_for_graupel was in old metadata format and has already been converted +DEBUG: Updating local name of variable graupel_mixing_ratio_updated_by_physics from gq0(:,:,index_for_graupel) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntgl) +INFO: Converting local name do_GPsw_Glw of variable scheme_flag from new to old metadata +DEBUG: Updating local name of variable scheme_flag from do_GPsw_Glw to GFS_Control%do_GPsw_Glw +INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from htsw0 to GFS_Interstitial(cdata%thrd_no)%htsw0 +INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata +DEBUG: Updating local name of variable seed_for_random_number_generation_in_cellular_automata_scheme from iseed_ca to GFS_Control%iseed_ca +INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata +DEBUG: Updating local name of variable canopy_air_temperature from tahxy to GFS_Data(cdata%blk_no)%Sfcprop%tahxy +INFO: Converting local name imn of variable forecast_month from new to old metadata +DEBUG: Updating local name of variable forecast_month from imn to GFS_Control%imn +INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable canopy_upward_latent_heat_flux from evcw to GFS_Interstitial(cdata%thrd_no)%evcw +INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from evbsa to GFS_Data(cdata%blk_no)%Intdiag%evbsa +INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata +DEBUG: Updating local name of variable cumulative_cloud_work_function from cldwrk to GFS_Data(cdata%blk_no)%Intdiag%cldwrk +INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from ql to CCPP_interstitial%ql +INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable maximum_subgrid_orography from elvmax to GFS_Interstitial(cdata%thrd_no)%elvmax +INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_lowest_model_layer from prsl(:,1) to GFS_Data(cdata%blk_no)%Statein%prsl(:,1) +INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata +DEBUG: Updating local name of variable countergradient_mixing_term_for_water_vapor from gamq to GFS_Interstitial(cdata%thrd_no)%gamq +INFO: Converting local name cld_iwp of variable RRTMGP_cloud_ice_water_path from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_ice_water_path from cld_iwp to GFS_Interstitial(cdata%thrd_no)%cld_iwp +INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata +INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable air_temperature_updated_by_physics from gt0 to GFS_Data(cdata%blk_no)%Stateout%gt0 +INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable v_wind_component_at_viscous_sublayer_top from phy_myj_vz0 to GFS_Data(cdata%blk_no)%Tbd%phy_myj_vz0 +INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata +DEBUG: Updating local name of variable ending_x_direction_index_domain from ied to CCPP_interstitial%ied +INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from faersw(:,:,:,2) to GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,2) +INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata +DEBUG: Variable index_for_rain_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable rain_number_concentration from qgrs(:,:,index_for_rain_number_concentration) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntrnc) +INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable cell_area_for_fast_physics from area to CCPP_interstitial%area +INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata +DEBUG: Updating local name of variable flag_for_convective_transport_of_tracers from trans_trac to GFS_Control%trans_trac +INFO: Converting local name runoff of variable total_runoff from new to old metadata +DEBUG: Updating local name of variable total_runoff from runoff to GFS_Data(cdata%blk_no)%Intdiag%runoff +INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from raincprv to GFS_Data(cdata%blk_no)%Sfcprop%raincprv +INFO: Converting local name ty_source_func_lw of variable ty_source_func_lw from new to old metadata +INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata +DEBUG: Updating local name of variable time_integral_of_height_of_mountain_blocking from zmtb to GFS_Data(cdata%blk_no)%Intdiag%zmtb +DEBUG: Variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d was in old metadata format and has already been converted +INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata +DEBUG: Updating local name of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from dv3dt_ngw to GFS_Data(cdata%blk_no)%Intdiag%dv3dt_ngw +INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_soil_moisture from smc to GFS_Data(cdata%blk_no)%Sfcprop%smc +INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata +DEBUG: Updating local name of variable limit_for_temperature_tendency_for_microphysics from ttendlim to GFS_Control%ttendlim +INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable snow_vertical_dimension_for_land_surface_model from lsnow_lsm to GFS_Control%lsnow_lsm +INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata +DEBUG: Updating local name of variable vertical_index_difference_between_inout_and_local from kd to GFS_Interstitial(cdata%thrd_no)%kd +INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_output_fields_for_shortwave_radiation from nf_aesw to GFS_Interstitial(cdata%thrd_no)%nf_aesw +INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_explicit_precipitation_amount from prcpmp to GFS_Interstitial(cdata%thrd_no)%prcpmp +INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from dswsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dswsfci_cpl +INFO: Converting local name hswc of variable RRTMGP_sw_heating_rate_all_sky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_heating_rate_all_sky from hswc to GFS_Interstitial(cdata%thrd_no)%hswc +INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from u10max to GFS_Data(cdata%blk_no)%Intdiag%u10max +INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable x_wind_at_lowest_model_layer from ugrs(:,1) to GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) +INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable local_rain_water_mixing_ratio from qrn to GFS_Interstitial(cdata%thrd_no)%qrn +INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from dlwsfc to GFS_Data(cdata%blk_no)%Intdiag%dlwsfc +INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata +INFO: Converting local name t_lev of variable air_temperature_at_interface_for_RRTMGP from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_interface_for_RRTMGP from t_lev to GFS_Interstitial(cdata%thrd_no)%t_lev +DEBUG: Variable index_for_snow_number_concentration was in old metadata format and has already been converted +INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_longwave_flux_absorbed_by_ground from gabsbdlw to GFS_Interstitial(cdata%thrd_no)%gabsbdlw +INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata +DEBUG: Variable ccpp_block_number was in old metadata format and has already been converted +DEBUG: Updating local name of variable horizontal_dimension from blksz2(ccpp_block_number) to GFS_Control%blksz2(cdata%blk_no) +INFO: Converting local name p_lay of variable air_pressure_at_layer_for_RRTMGP_in_hPa from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_layer_for_RRTMGP_in_hPa from p_lay to GFS_Interstitial(cdata%thrd_no)%p_lay +INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata +DEBUG: Updating local name of variable flag_reset_maximum_hourly_fields from reset to GFS_Interstitial(cdata%thrd_no)%reset +INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata +DEBUG: Updating local name of variable density_of_fresh_water from rho_h2o to GFS_Control%rho_h2o +INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata +DEBUG: Updating local name of variable layer_bottom_depth_from_snow_surface from zsnsoxy to GFS_Data(cdata%blk_no)%Sfcprop%zsnsoxy +INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_ccl4 from gasvmr(:,:,9) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,9) +INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_snow_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable snow_number_concentration_updated_by_physics from gq0(:,:,index_for_snow_number_concentration) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsnc) +INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_mass_flux_deep_convection_scheme from imfdeepcnv to GFS_Control%imfdeepcnv +INFO: Converting local name stmassxy of variable stem_mass from new to old metadata +DEBUG: Updating local name of variable stem_mass from stmassxy to GFS_Data(cdata%blk_no)%Sfcprop%stmassxy +INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata +DEBUG: Updating local name of variable atmosphere_heat_diffusivity_background_maximum from xkzminv to GFS_Control%xkzminv +INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata +DEBUG: Updating local name of variable number_of_spectral_wave_trancation_for_sas from jcap to GFS_Control%jcap +INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata +DEBUG: Updating local name of variable number_of_independent_cellular_automata from nca to GFS_Control%nca +INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata +DEBUG: Updating local name of variable leaf_mass from lfmassxy to GFS_Data(cdata%blk_no)%Sfcprop%lfmassxy +INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_sensible_heat_flux from hflx to GFS_Interstitial(cdata%thrd_no)%hflx +INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata +DEBUG: Updating local name of variable flag_mg3_as_mg2 from mg3_as_mg2 to GFS_Interstitial(cdata%thrd_no)%mg3_as_mg2 +INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata +DEBUG: Updating local name of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from iccn to GFS_Control%iccn +INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata +DEBUG: Updating local name of variable components_of_surface_downward_shortwave_fluxes from scmpsw to GFS_Interstitial(cdata%thrd_no)%scmpsw +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_shum_perturbation_flipped from shum_wts to GFS_Data(cdata%blk_no)%Intdiag%shum_wts +INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_hail from mg_do_hail to GFS_Control%mg_do_hail +INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata +DEBUG: Updating local name of variable index_for_convective_cloud_cover_in_phy_f3d from ncnvc to GFS_Control%ncnvc +INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable maximum_wind_at_10m from wind10mmax to GFS_Data(cdata%blk_no)%Intdiag%wind10mmax +INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_diag_type_instance from Intdiag to GFS_Data(cdata%blk_no)%Intdiag +INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_snow_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_snow_water) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntsw) +INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_shortwave_flux from uswsfci to GFS_Data(cdata%blk_no)%Intdiag%uswsfci +INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata +DEBUG: Updating local name of variable countergradient_mixing_term_for_temperature from gamt to GFS_Interstitial(cdata%thrd_no)%gamt +INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata +DEBUG: Updating local name of variable number_of_tracers from ntrac to GFS_Control%ntrac +INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata +DEBUG: Updating local name of variable sea_ice_minimum from min_seaice to GFS_Control%min_seaice +INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable flag_for_gravity_wave_drag from do_gwd to GFS_Control%do_gwd +INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable maximum_x_wind_at_10m from u10mmax to GFS_Data(cdata%blk_no)%Intdiag%u10mmax +INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels from htswc to GFS_Interstitial(cdata%thrd_no)%htswc +INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata +DEBUG: Updating local name of variable time_since_diagnostics_zeroed from zhour to GFS_Control%zhour +INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from dtdtc to GFS_Interstitial(cdata%thrd_no)%dtdtc +INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from ice to GFS_Data(cdata%blk_no)%Intdiag%ice +INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata +DEBUG: Updating local name of variable flag_for_precipitation_type from srflag to GFS_Data(cdata%blk_no)%Sfcprop%srflag +INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels from htlwc to GFS_Interstitial(cdata%thrd_no)%htlwc +INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata +DEBUG: Updating local name of variable cloud_decorrelation_length from de_lgth to GFS_Interstitial(cdata%thrd_no)%de_lgth +INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata +DEBUG: Updating local name of variable map_of_block_column_number_to_global_i_index from imap to GFS_Data(cdata%blk_no)%Tbd%imap +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from skebu_wts to GFS_Data(cdata%blk_no)%Intdiag%skebu_wts +INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata +DEBUG: Updating local name of variable local_condesed_water_number_concentration from ncpl to GFS_Interstitial(cdata%thrd_no)%ncpl +INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata +DEBUG: Updating local name of variable number_of_frozen_precipitation_species from fprcp to GFS_Control%fprcp +INFO: Converting local name sfc_alb_nir_dir of variable surface_albedo_nearIR_direct from new to old metadata +DEBUG: Updating local name of variable surface_albedo_nearIR_direct from sfc_alb_nir_dir to GFS_Interstitial(cdata%thrd_no)%sfc_alb_nir_dir +INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata +DEBUG: Updating local name of variable flag_for_hedmf from hybedmf to GFS_Control%hybedmf +INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable temperature_from_previous_timestep from prevst to GFS_Data(cdata%blk_no)%Tbd%prevst +INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata +DEBUG: Updating local name of variable number_of_total_tracers from tracers_total to GFS_Interstitial(cdata%thrd_no)%tracers_total +INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata +DEBUG: Updating local name of variable snow_temperature from tsnoxy to GFS_Data(cdata%blk_no)%Sfcprop%tsnoxy +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_shum_perturbation from shum_wts to GFS_Data(cdata%blk_no)%Coupling%shum_wts +INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable height_above_ground_at_lowest_model_layer from zlvl to GFS_Data(cdata%blk_no)%Intdiag%zlvl +INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata +DEBUG: Updating local name of variable number_of_timesteps_between_longwave_radiation_calls from nslwr to GFS_Control%nslwr +INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata +DEBUG: Updating local name of variable ccpp_loop_counter from loop_cnt to cdata%loop_cnt +INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_ice_amount from icemp to GFS_Interstitial(cdata%thrd_no)%icemp +INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata +DEBUG: Updating local name of variable sea_ice_thickness from hice to GFS_Data(cdata%blk_no)%Sfcprop%hice +INFO: Converting local name aerosolslw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_asymmetry_parameter_for_longwave_bands_01_16 from aerosolslw(:,:,:,3) to GFS_Interstitial(cdata%thrd_no)%aerosolslw(:,:,:,3) +INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata +DEBUG: Updating local name of variable vertical_index_at_top_of_atmosphere_boundary_layer from kpbl to GFS_Interstitial(cdata%thrd_no)%kpbl +INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata +DEBUG: Updating local name of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from cnv_ndrop to GFS_Interstitial(cdata%thrd_no)%cnv_ndrop +INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from dnirbmi_cpl to GFS_Data(cdata%blk_no)%Coupling%dnirbmi_cpl +INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata +DEBUG: Updating local name of variable flag_for_frozen_soil_permeability_option from iopt_inf to GFS_Control%iopt_inf +INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata +DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_friendly_aerosol_number_concentration from qgrs(:,:,index_for_ice_friendly_aerosols) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntia) +INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata +INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata +DEBUG: Updating local name of variable specific_humidity_at_2m_from_noahmp from q2mp to GFS_Interstitial(cdata%thrd_no)%q2mp +INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata +DEBUG: Updating local name of variable natural_log_of_h2o_forcing_data_pressure_levels from h2o_pres to GFS_Interstitial(cdata%thrd_no)%h2o_pres +INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata +DEBUG: Updating local name of variable diffusivity_background_sigma_level from xkzm_s to GFS_Control%xkzm_s +INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_specific_humidity_over_ocean from qss_ocean to GFS_Interstitial(cdata%thrd_no)%qss_ocean +INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from nvisbmi_cpl to GFS_Data(cdata%blk_no)%Coupling%nvisbmi_cpl +INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata +DEBUG: Updating local name of variable number_of_cloud_condensate_types from ncnd to GFS_Control%ncnd +INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable omp_threads_for_fast_physics from nthreads to CCPP_interstitial%nthreads +INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata +DEBUG: Updating local name of variable x_wind_at_lowest_model_layer_for_diag from u1 to GFS_Data(cdata%blk_no)%Intdiag%u1 +INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata +DEBUG: Updating local name of variable maximum_mass_flux from maxMF to GFS_Data(cdata%blk_no)%Intdiag%maxMF +INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata +DEBUG: Updating local name of variable coefficient_c_d from c_d to GFS_Data(cdata%blk_no)%Sfcprop%c_d +INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +DEBUG: Updating local name of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from drain_cpl to GFS_Data(cdata%blk_no)%Tbd%drain_cpl +INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata +DEBUG: Updating local name of variable index_for_first_chemical_tracer from ntchs to GFS_Control%ntchs +INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata +DEBUG: Updating local name of variable mg_tuning_factor_for_alphas from mg_alf to GFS_Control%mg_alf +INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable y_wind_at_lowest_model_layer_updated_by_physics from gv0(:,1) to GFS_Data(cdata%blk_no)%Stateout%gv0(:,1) +INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata +DEBUG: Updating local name of variable coefficient_c_0 from c_0 to GFS_Data(cdata%blk_no)%Sfcprop%c_0 +INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable mpi_rank_for_fast_physics from mpirank to CCPP_interstitial%mpirank +INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata +DEBUG: Updating local name of variable downdraft_fraction_reaching_surface_over_land_deep_convection from betal_deep to GFS_Control%betal_deep +INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata +DEBUG: Updating local name of variable canopy_intercepted_ice_mass from canicexy to GFS_Data(cdata%blk_no)%Sfcprop%canicexy +INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata +DEBUG: Updating local name of variable mg_type_of_precip_fraction_method from mg_precip_frac_method to GFS_Control%mg_precip_frac_method +INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata +DEBUG: Updating local name of variable mean_effective_radius_for_ice_cloud from clouds(:,:,5) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) +INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable weight_for_momentum_at_viscous_sublayer_top from phy_myj_a1u to GFS_Data(cdata%blk_no)%Tbd%phy_myj_a1u +INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata +DEBUG: Updating local name of variable ice_supersaturation_threshold from sup to GFS_Control%sup +INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from rh02max to GFS_Data(cdata%blk_no)%Intdiag%rh02max +INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata +DEBUG: Updating local name of variable accumulated_change_of_air_temperature_due_to_FA_scheme from train to GFS_Data(cdata%blk_no)%Intdiag%train +INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata +DEBUG: Updating local name of variable coefficients_for_aerosol_scavenging from fscav to GFS_Control%fscav +INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata +DEBUG: Updating local name of variable frozen_cloud_threshold_temperature from tf to GFS_Control%tf +INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata +DEBUG: Updating local name of variable surface_air_pressure_two_time_steps_back from phy_f2d(:,1) to GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,1) +INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_plus_one from levsp1 to GFS_Control%levsp1 +INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata +INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from faerlw(:,:,:,2) to GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,2) +INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata +DEBUG: Updating local name of variable coefficient_from_cloud_ice_to_snow_ras from psauras to GFS_Control%psauras +INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata +DEBUG: Updating local name of variable inverse_scaling_factor_for_critical_relative_humidity from dxinv to GFS_Control%dxinv +INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_wind_stress_over_ocean from stress_ocean to GFS_Interstitial(cdata%thrd_no)%stress_ocean +INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata +DEBUG: Updating local name of variable cellular_automata_lifetime from nlives to GFS_Control%nlives +INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_samf_shallow_convection_scheme from imfshalcnv_samf to GFS_Control%imfshalcnv_samf +INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata +DEBUG: Updating local name of variable diagnostics_control_for_chemical_tracers from ntdiag to GFS_Control%ntdiag +INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from smcwlt2 to GFS_Data(cdata%blk_no)%Intdiag%smcwlt2 +INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata +DEBUG: Updating local name of variable instantaneous_aerosol_column_mass_densities from aecm to GFS_Data(cdata%blk_no)%Intdiag%aecm +INFO: Converting local name lh of variable surface_latent_heat from new to old metadata +DEBUG: Updating local name of variable surface_latent_heat from lh to GFS_Data(cdata%blk_no)%Sfcprop%lh +INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata +DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from ntkev to GFS_Interstitial(cdata%thrd_no)%ntkev +INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from fm10 to GFS_Interstitial(cdata%thrd_no)%fm10 +INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_hydrostatic_heating_from_physics from phys_hydrostatic to GFS_Interstitial(cdata%thrd_no)%phys_hydrostatic +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_sppt_perturbation from sppt_wts to GFS_Data(cdata%blk_no)%Coupling%sppt_wts +INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable kappa_dry_for_fast_physics from akap to CCPP_interstitial%akap +INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_land_surface_scheme from lsm to GFS_Control%lsm +INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_momentum from ffmm to GFS_Data(cdata%blk_no)%Sfcprop%ffmm +INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata +INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata +DEBUG: Updating local name of variable height_of_mountain_blocking from zmtb to GFS_Interstitial(cdata%thrd_no)%zmtb +INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from chh_ice to GFS_Interstitial(cdata%thrd_no)%chh_ice +INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from chh_ocean to GFS_Interstitial(cdata%thrd_no)%chh_ocean +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_droplet_number_concentration_updated_by_physics from gq0(:,:,index_for_liquid_cloud_number_concentration) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntlnc) +INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata +DEBUG: Updating local name of variable model_layer_number_at_cloud_top from mtopa to GFS_Interstitial(cdata%thrd_no)%mtopa +INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata +DEBUG: Updating local name of variable tendency_of_water_friendly_aerosols_at_surface from nwfa2d to GFS_Data(cdata%blk_no)%Coupling%nwfa2d +INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata +DEBUG: Updating local name of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from pkz to CCPP_interstitial%pkz +INFO: Converting local name dx of variable cell_size from new to old metadata +DEBUG: Updating local name of variable cell_size from dx to GFS_Data(cdata%blk_no)%Grid%dx +INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from t02min to GFS_Data(cdata%blk_no)%Intdiag%t02min +INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata +DEBUG: Updating local name of variable bulk_richardson_number_at_lowest_model_level_over_land from rb_land to GFS_Interstitial(cdata%thrd_no)%rb_land +INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_thompson_microphysics_scheme from imp_physics_thompson to GFS_Control%imp_physics_thompson +INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_for_nsst from tseal to GFS_Interstitial(cdata%thrd_no)%tseal +INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata +DEBUG: Updating local name of variable ccpp_error_message from errmsg to cdata%errmsg +INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata +DEBUG: Updating local name of variable detrainment_and_precipitation_tunable_parameter_3_CS from cs_parm(3) to GFS_Control%cs_parm(3) +INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata +DEBUG: Updating local name of variable snow_layer_liquid_water from snliqxy to GFS_Data(cdata%blk_no)%Sfcprop%snliqxy +INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata +DEBUG: Updating local name of variable flag_for_moorthi_stratus from mstrat to GFS_Control%mstrat +INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata +DEBUG: Updating local name of variable water_equivalent_accumulated_snow_depth_over_ice from weasd_ice to GFS_Interstitial(cdata%thrd_no)%weasd_ice +INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_layer_for_radiation from qlyr to GFS_Interstitial(cdata%thrd_no)%qlyr +INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata +INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_precipitation_amount_for_coupling from rain_cpl to GFS_Data(cdata%blk_no)%Coupling%rain_cpl +INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata +DEBUG: Updating local name of variable cloud_specie_mix_flag from bl_mynn_cloudmix to GFS_Control%bl_mynn_cloudmix +INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata +DEBUG: Updating local name of variable ground_temperature_for_noahmp from tgxy to GFS_Data(cdata%blk_no)%Sfcprop%tgxy +INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from dvsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dvsfc_cpl +INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata +DEBUG: Updating local name of variable flag_for_shoc_after_convection from shocaftcnv to GFS_Control%shocaftcnv +INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata +DEBUG: Updating local name of variable flag_for_nsstm_run from nstf_name(1) to GFS_Control%nstf_name(1) +INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata +DEBUG: Updating local name of variable stem_area_index from xsaixy to GFS_Data(cdata%blk_no)%Sfcprop%xsaixy +INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata +DEBUG: Updating local name of variable mg_time_scale_for_autoconversion_of_ice from mg_ts_auto_ice to GFS_Control%mg_ts_auto_ice +INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length_over_ocean_interstitial from zorl_ocean to GFS_Interstitial(cdata%thrd_no)%zorl_ocean +INFO: Converting local name ca1 of variable cellular_automata_global_pattern from new to old metadata +DEBUG: Updating local name of variable cellular_automata_global_pattern from ca1 to GFS_Data(cdata%blk_no)%Coupling%ca1 +INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_optical_depth_for_shortwave_bands_01_16 from faersw(:,:,:,1) to GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,1) +INFO: Converting local name sw_optical_props_cloudsByBand of variable shortwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +DEBUG: Updating local name of variable shortwave_optical_properties_for_cloudy_atmosphere_by_band from sw_optical_props_cloudsByBand to GFS_Interstitial(cdata%thrd_no)%sw_optical_props_cloudsByBand +INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata +DEBUG: Updating local name of variable cloud_liquid_water_path from clouds(:,:,2) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) +INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata +DEBUG: Updating local name of variable vertical_index_at_cloud_top from ktop to GFS_Interstitial(cdata%thrd_no)%ktop +INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata +DEBUG: Updating local name of variable surface_diffused_shortwave_albedo from sfalb to GFS_Data(cdata%blk_no)%Radtend%sfalb +INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata +DEBUG: Updating local name of variable convective_cloud_cover from cnvc to GFS_Interstitial(cdata%thrd_no)%cnvc +INFO: Converting local name ugrs of variable x_wind from new to old metadata +DEBUG: Updating local name of variable x_wind from ugrs to GFS_Data(cdata%blk_no)%Statein%ugrs +INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata +DEBUG: Updating local name of variable minimum_vegetation_area_fraction from shdmin to GFS_Data(cdata%blk_no)%Sfcprop%shdmin +INFO: Converting local name fluxswUP_clrsky of variable RRTMGP_sw_flux_profile_upward_clrsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_flux_profile_upward_clrsky from fluxswUP_clrsky to GFS_Interstitial(cdata%thrd_no)%fluxswUP_clrsky +INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata +DEBUG: Updating local name of variable time_integral_of_height_of_low_level_wave_breaking from zlwb to GFS_Data(cdata%blk_no)%Intdiag%zlwb +INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +DEBUG: Updating local name of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from satmedmf to GFS_Control%satmedmf +INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from cdmbgwd to GFS_Control%cdmbgwd +INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata +DEBUG: Updating local name of variable coefficient_from_cloud_water_to_rain_ras from prauras to GFS_Control%prauras +INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata +DEBUG: Updating local name of variable flag_for_output_of_shortwave_heating_rate from swhtr to GFS_Control%swhtr +INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata +DEBUG: Updating local name of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from aerodp to GFS_Interstitial(cdata%thrd_no)%aerodp +INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata +DEBUG: Updating local name of variable tke_dissipative_heating_factor from dspfac to GFS_Control%dspfac +INFO: Converting local name facwf of variable fractional_coverage_with_weak_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable fractional_coverage_with_weak_cosz_dependency from facwf to GFS_Data(cdata%blk_no)%Sfcprop%facwf +INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_gf_shallow_convection_scheme from imfshalcnv_gf to GFS_Control%imfshalcnv_gf +INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_optical_properties_for_longwave_bands_01_16 from faerlw to GFS_Interstitial(cdata%thrd_no)%faerlw +INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata +DEBUG: Updating local name of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from zvir to CCPP_interstitial%zvir +INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata +DEBUG: Updating local name of variable array_dimension_of_3d_arrays_for_microphysics from num_p3d to GFS_Control%num_p3d +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_hydrostatic_solver_for_fast_physics from hydrostatic to CCPP_interstitial%hydrostatic +INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata +DEBUG: Updating local name of variable integrated_y_momentum_flux_from_blocking_drag from dvsfc_bl to GFS_Data(cdata%blk_no)%Intdiag%dvsfc_bl +INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata +DEBUG: Updating local name of variable aerosol_aware_parameter_deep_convection from asolfac_deep to GFS_Control%asolfac_deep +INFO: Converting local name alvsf of variable mean_vis_albedo_with_strong_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable mean_vis_albedo_with_strong_cosz_dependency from alvsf to GFS_Data(cdata%blk_no)%Sfcprop%alvsf +INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_layer_for_radiation_in_hPa from plyr to GFS_Interstitial(cdata%thrd_no)%plyr +INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata +DEBUG: Updating local name of variable coefficient_for_evaporation_of_rainfall from evpco to GFS_Control%evpco +INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata +DEBUG: Updating local name of variable y_momentum_tendency_from_blocking_drag from dtauy2d_bl to GFS_Data(cdata%blk_no)%Intdiag%dtauy2d_bl +INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable weight_for_potental_temperature_at_viscous_sublayer_top from phy_myj_a1t to GFS_Data(cdata%blk_no)%Tbd%phy_myj_a1t +INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata +DEBUG: Updating local name of variable x_momentum_tendency_from_large_scale_gwd from dtaux2d_ls to GFS_Data(cdata%blk_no)%Intdiag%dtaux2d_ls +INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_pressure_multiplied_by_timestep from psmean to GFS_Data(cdata%blk_no)%Intdiag%psmean +INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from cmm_ocean to GFS_Interstitial(cdata%thrd_no)%cmm_ocean +INFO: Converting local name sw_file_gas of variable rrtmgp_kdistribution_sw from new to old metadata +DEBUG: Updating local name of variable rrtmgp_kdistribution_sw from sw_file_gas to GFS_Control%sw_file_gas +INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from clw(:,:,2) to GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) +INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata +DEBUG: Updating local name of variable shoc_tke_dissipatation_pressure_threshold from shoc_parm(1) to GFS_Control%shoc_parm(1) +INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata +DEBUG: Updating local name of variable vertical_index_difference_between_layer_and_upper_bound from kt to GFS_Interstitial(cdata%thrd_no)%kt +INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from f10m to GFS_Data(cdata%blk_no)%Sfcprop%f10m +INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata +DEBUG: Updating local name of variable mg_autoconversion_size_threshold_ice_snow from mg_dcs to GFS_Control%mg_dcs +INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_snow_amount_for_coupling from snow_cpl to GFS_Data(cdata%blk_no)%Coupling%snow_cpl +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +INFO: Converting local name topflw_type of variable topflw_type from new to old metadata +INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from cdq_land to GFS_Interstitial(cdata%thrd_no)%cdq_land +INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata +DEBUG: Updating local name of variable flag_for_Chikira_Sugiyama_deep_convection from cscnv to GFS_Control%cscnv +INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from dq3dt(:,:,5) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,5) +INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from rainc to GFS_Data(cdata%blk_no)%Intdiag%rainc +INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable surface_upward_sensible_heat_flux_for_coupling from dtsfcin_cpl to GFS_Data(cdata%blk_no)%Coupling%dtsfcin_cpl +INFO: Converting local name rann of variable random_number_array from new to old metadata +DEBUG: Updating local name of variable random_number_array from rann to GFS_Data(cdata%blk_no)%Tbd%rann +DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted +INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata +DEBUG: Updating local name of variable flag_for_guess_run from flag_guess to GFS_Interstitial(cdata%thrd_no)%flag_guess +INFO: Converting local name tracer of variable chemical_tracers from new to old metadata +DEBUG: Updating local name of variable chemical_tracers from tracer to GFS_Interstitial(cdata%thrd_no)%tracer +INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata +DEBUG: Updating local name of variable flag_for_radiation_transfer_option from iopt_rad to GFS_Control%iopt_rad +INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata +DEBUG: Updating local name of variable stability_function_for_heat from Sh3D to GFS_Data(cdata%blk_no)%Tbd%Sh3D +INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata +INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata +DEBUG: Updating local name of variable sine_of_solar_declination_angle from sdec to GFS_Control%sdec +INFO: Converting local name sfc_emiss_byband of variable surface_emissivity_in_each_RRTMGP_LW_band from new to old metadata +DEBUG: Updating local name of variable surface_emissivity_in_each_RRTMGP_LW_band from sfc_emiss_byband to GFS_Interstitial(cdata%thrd_no)%sfc_emiss_byband +INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata +DEBUG: Updating local name of variable flag_for_vertical_index_direction_control from iflip to GFS_Control%iflip +INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable slope_of_subgrid_orography from sigma to GFS_Interstitial(cdata%thrd_no)%sigma +INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata +DEBUG: Updating local name of variable do_myjsfc from do_myjsfc to GFS_Control%do_myjsfc +INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from ep to GFS_Data(cdata%blk_no)%Intdiag%ep +INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from dnirdf_cpl to GFS_Data(cdata%blk_no)%Coupling%dnirdf_cpl +INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata +DEBUG: Updating local name of variable subgrid_cloud_mixing_ratio_pbl from QC_BL to GFS_Data(cdata%blk_no)%Tbd%QC_BL +INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_longwave_flux_over_ice_interstitial from adjsfculw_ice to GFS_Interstitial(cdata%thrd_no)%adjsfculw_ice +INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata +DEBUG: Updating local name of variable magnitude_of_perturbation_of_momentum_roughness_length from pertz0 to GFS_Control%pertz0 +INFO: Converting local name rrtmgp_nrghice of variable number_of_rrtmgp_ice_roughness from new to old metadata +DEBUG: Updating local name of variable number_of_rrtmgp_ice_roughness from rrtmgp_nrghice to GFS_Control%rrtmgp_nrghice +INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable tracer_concentration_updated_by_physics from gq0 to GFS_Data(cdata%blk_no)%Stateout%gq0 +INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata +DEBUG: Updating local name of variable flag_for_first_time_step from first_time_step to GFS_Control%first_time_step +INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata +DEBUG: Updating local name of variable x_momentum_tendency_from_small_scale_gwd from dtaux2d_ss to GFS_Data(cdata%blk_no)%Intdiag%dtaux2d_ss +INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata +DEBUG: Updating local name of variable instantaneous_large_scale_wet_deposition from wetdpl to GFS_Data(cdata%blk_no)%Intdiag%wetdpl +INFO: Converting local name tsq of variable t_prime_squared from new to old metadata +DEBUG: Updating local name of variable t_prime_squared from tsq to GFS_Data(cdata%blk_no)%Tbd%tsq +INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata +DEBUG: Updating local name of variable fraction_of_tracer_scavenged from fscav to GFS_Interstitial(cdata%thrd_no)%fscav +INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata +DEBUG: Updating local name of variable index_for_mass_weighted_rime_factor from nqrimef to GFS_Control%nqrimef +INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_shallow_convective_precipitation_amount from raincs to GFS_Interstitial(cdata%thrd_no)%raincs +INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata +DEBUG: Updating local name of variable sine_of_latitude from sinlat to GFS_Data(cdata%blk_no)%Grid%sinlat +INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_zhao_carr_pdf_microphysics_scheme from imp_physics_zhao_carr_pdf to GFS_Control%imp_physics_zhao_carr_pdf +INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from evcwa to GFS_Data(cdata%blk_no)%Intdiag%evcwa +INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +DEBUG: Updating local name of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from ntk to GFS_Interstitial(cdata%thrd_no)%ntk +INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_tracers_MG from ntrcaer to GFS_Control%ntrcaer +INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_over_ice_interstitial from tsfc_ice to GFS_Interstitial(cdata%thrd_no)%tsfc_ice +INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata +INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_of_ozone_forcing_data from levozp to GFS_Interstitial(cdata%thrd_no)%levozp +INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata +DEBUG: Updating local name of variable conv_activity_counter from cactiv to GFS_Data(cdata%blk_no)%Tbd%cactiv +INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +DEBUG: Variable index_for_turbulent_kinetic_energy_convective_transport_tracer was in old metadata format and has already been converted +DEBUG: Updating local name of variable turbulent_kinetic_energy_convective_transport_tracer from clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) to GFS_Interstitial(cdata%thrd_no)%clw(:,:,GFS_Interstitial(cdata%thrd_no)%ntk) +DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted +INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_snow_amount_from_previous_timestep from snowprv to GFS_Data(cdata%blk_no)%Sfcprop%snowprv +INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata +DEBUG: Updating local name of variable forecast_date_and_time from jdat to GFS_Control%jdat +INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata +DEBUG: Updating local name of variable daytime_points_dimension from nday to GFS_Interstitial(cdata%thrd_no)%nday +INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from dtsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dtsfc_cpl +INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable surface_x_momentum_flux_for_coupling from dusfcin_cpl to GFS_Data(cdata%blk_no)%Coupling%dusfcin_cpl +INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_ozone was in old metadata format and has already been converted +DEBUG: Updating local name of variable ozone_concentration_updated_by_physics from gq0(:,:,index_for_ozone) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntoz) +INFO: Converting local name debug of variable flag_debug from new to old metadata +DEBUG: Updating local name of variable flag_debug from debug to GFS_Control%debug +INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata +DEBUG: Updating local name of variable coefficient_from_cloud_ice_to_snow from psautco to GFS_Control%psautco +INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from cd_ocean to GFS_Interstitial(cdata%thrd_no)%cd_ocean +INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata +DEBUG: Updating local name of variable water_vapor_specific_humidity_two_time_steps_back from phy_f3d(:,:,2) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,2) +INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_microphysics from dt3dt(:,:,6) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,6) +INFO: Converting local name save_v of variable y_wind_save from new to old metadata +DEBUG: Updating local name of variable y_wind_save from save_v to GFS_Interstitial(cdata%thrd_no)%save_v +INFO: Converting local name el_pbl of variable mixing_length from new to old metadata +DEBUG: Updating local name of variable mixing_length from el_pbl to GFS_Data(cdata%blk_no)%Tbd%el_pbl +INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata +DEBUG: Updating local name of variable integrated_x_momentum_flux_from_blocking_drag from dusfc_bl to GFS_Data(cdata%blk_no)%Intdiag%dusfc_bl +INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata +DEBUG: Updating local name of variable flag_for_wave_coupling_to_atm from cplwav2atm to GFS_Control%cplwav2atm +INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata +DEBUG: Updating local name of variable local_rain_number_concentration from ncpr to GFS_Interstitial(cdata%thrd_no)%ncpr +INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata +DEBUG: Updating local name of variable flag_for_ras_deep_convection from ras to GFS_Control%ras +DEBUG: Variable topfsw_type is in old metadata format, no conversion necessary +INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata +DEBUG: Updating local name of variable surface_albedo_perturbation from alb1d to GFS_Interstitial(cdata%thrd_no)%alb1d +INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata +DEBUG: Updating local name of variable pressure_at_bottom_of_convective_cloud from cvb to GFS_Data(cdata%blk_no)%Cldprop%cvb +INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata +INFO: Converting local name cld_lwp of variable RRTMGP_cloud_liquid_water_path from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_liquid_water_path from cld_lwp to GFS_Interstitial(cdata%thrd_no)%cld_lwp +INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata +DEBUG: Updating local name of variable water_table_recharge_when_shallow from rechxy to GFS_Data(cdata%blk_no)%Sfcprop%rechxy +INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata +DEBUG: Updating local name of variable mg_allow_supersat_after_sed from sed_supersat to GFS_Control%sed_supersat +INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata +DEBUG: Updating local name of variable date_and_time_at_model_initialization_reordered from idate to GFS_Control%idate +INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_ugwp from gw_dtdt to GFS_Interstitial(cdata%thrd_no)%gw_dtdt +INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata +DEBUG: Updating local name of variable mg_minimum_rh_for_ice from mg_rhmini to GFS_Control%mg_rhmini +INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_latent_heat_flux from dqsfc1 to GFS_Interstitial(cdata%thrd_no)%dqsfc1 +INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata +DEBUG: Updating local name of variable temperature_at_2m from t2m to GFS_Data(cdata%blk_no)%Sfcprop%t2m +INFO: Converting local name trans of variable transpiration_flux from new to old metadata +DEBUG: Updating local name of variable transpiration_flux from trans to GFS_Interstitial(cdata%thrd_no)%trans +INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata +DEBUG: Variable index_for_cloud_fraction_in_3d_arrays_for_microphysics was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_fraction_for_MG from phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%indcld) +INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_shortwave_radiation from dt3dt(:,:,2) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,2) +INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata +DEBUG: Updating local name of variable flag_for_using_climatology_albedo from ialb to GFS_Control%ialb +INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_interface_for_radiation_in_hPa from plvl to GFS_Interstitial(cdata%thrd_no)%plvl +INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata +DEBUG: Updating local name of variable surface_friction_velocity_over_land from uustar_land to GFS_Interstitial(cdata%thrd_no)%uustar_land +INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata +DEBUG: Updating local name of variable flag_for_cloud_condensate_normalized_by_cloud_cover from ccnorm to GFS_Control%ccnorm +INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata +DEBUG: Updating local name of variable tendency_of_tracers_due_to_model_physics from dqdt to GFS_Interstitial(cdata%thrd_no)%dqdt +INFO: Converting local name tile_num of variable number_of_tile from new to old metadata +DEBUG: Updating local name of variable number_of_tile from tile_num to GFS_Control%tile_num +INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata +DEBUG: Updating local name of variable specific_heat_capacities_for_multi_gases_physics from cpilist to CCPP_interstitial%cpilist +INFO: Converting local name me of variable mpi_rank from new to old metadata +DEBUG: Updating local name of variable mpi_rank from me to GFS_Control%me +INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_ice_amount from totice to GFS_Data(cdata%blk_no)%Intdiag%totice +INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable surface_upward_latent_heat_flux_for_coupling from dqsfcin_cpl to GFS_Data(cdata%blk_no)%Coupling%dqsfcin_cpl +INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata +DEBUG: Updating local name of variable cloud_area_fraction from cldf to GFS_Interstitial(cdata%thrd_no)%cldf +INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata +INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata +DEBUG: Updating local name of variable flag_for_the_last_step_of_k_split_remapping from last_step to CCPP_interstitial%last_step +INFO: Converting local name nwat of variable number_of_water_species from new to old metadata +DEBUG: Updating local name of variable number_of_water_species from nwat to CCPP_interstitial%nwat +INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata +DEBUG: Updating local name of variable forecast_hour_of_the_day from solhr to GFS_Control%solhr +INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata +DEBUG: Updating local name of variable flag_for_scale_aware_Shinhong_PBL from shinhong to GFS_Control%shinhong +INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata +DEBUG: Updating local name of variable coefficient_from_cloud_water_to_rain from prautco to GFS_Control%prautco +INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_over_ice from ffhh_ice to GFS_Interstitial(cdata%thrd_no)%ffhh_ice +INFO: Converting local name toa_src_lw of variable toa_incident_lw_flux_by_spectral_point from new to old metadata +DEBUG: Updating local name of variable toa_incident_lw_flux_by_spectral_point from toa_src_lw to GFS_Interstitial(cdata%thrd_no)%toa_src_lw +INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata +INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata +DEBUG: Updating local name of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from clx to GFS_Interstitial(cdata%thrd_no)%clx +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from skebv_wts to GFS_Data(cdata%blk_no)%Intdiag%skebv_wts +INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata +DEBUG: Updating local name of variable instantaneous_sedimentation from sedim to GFS_Data(cdata%blk_no)%Intdiag%sedim +INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_graupel_amount from graupelmp to GFS_Interstitial(cdata%thrd_no)%graupelmp +INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata +DEBUG: Updating local name of variable number_of_days_in_year from yearlen to GFS_Control%yearlen +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio_updated_by_physics from gq0(:,:,index_for_liquid_cloud_condensate) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) +INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata +DEBUG: Updating local name of variable column_precipitable_water from pwat to GFS_Data(cdata%blk_no)%Intdiag%pwat +INFO: Converting local name relhum of variable relative_humidity from new to old metadata +DEBUG: Updating local name of variable relative_humidity from relhum to GFS_Interstitial(cdata%thrd_no)%relhum +INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata +DEBUG: Updating local name of variable flag_for_shallow_convection from shal_cnv to GFS_Control%shal_cnv +INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata +DEBUG: Updating local name of variable flag_for_cellular_automata from do_ca to GFS_Control%do_ca +INFO: Converting local name srunoff of variable surface_runoff from new to old metadata +DEBUG: Updating local name of variable surface_runoff from srunoff to GFS_Data(cdata%blk_no)%Intdiag%srunoff +INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable cumulative_lwe_thickness_of_convective_precipitation_amount from cnvprcp to GFS_Data(cdata%blk_no)%Intdiag%cnvprcp +INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable time_step_for_remapping_for_fast_physics from mdt to CCPP_interstitial%mdt +INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata +DEBUG: Updating local name of variable do_mynnedmf from do_mynnedmf to GFS_Control%do_mynnedmf +INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from nswsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%nswsfci_cpl +INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_ground_heat_flux from gfluxi to GFS_Data(cdata%blk_no)%Intdiag%gfluxi +INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable explicit_rainfall_rate_from_previous_timestep from drainncprv to GFS_Data(cdata%blk_no)%Sfcprop%drainncprv +INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from hflx_ocean to GFS_Interstitial(cdata%thrd_no)%hflx_ocean +INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata +DEBUG: Variable index_for_graupel_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable graupel_number_concentration from qgrs(:,:,index_for_graupel_number_concentration) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntgnc) +INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata +DEBUG: Updating local name of variable moisture_tendency_due_to_dynamics from forceq to GFS_Data(cdata%blk_no)%Tbd%forceq +INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata +DEBUG: Updating local name of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from ctei_rml to GFS_Interstitial(cdata%thrd_no)%ctei_rml +INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable convexity_of_subgrid_orography from oc to GFS_Interstitial(cdata%thrd_no)%oc +INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata +DEBUG: Updating local name of variable fine_root_mass from rtmassxy to GFS_Data(cdata%blk_no)%Sfcprop%rtmassxy +INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata +DEBUG: Updating local name of variable momentum_transport_reduction_factor_pgf_shallow_convection from pgcon_shal to GFS_Control%pgcon_shal +INFO: Converting local name con_pi of variable pi from new to old metadata +INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata +INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata +DEBUG: Updating local name of variable index_for_graupel_effective_radius from ngeffr to GFS_Control%ngeffr +INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_upward_potential_latent_heat_flux_over_ocean from ep1d_ocean to GFS_Interstitial(cdata%thrd_no)%ep1d_ocean +INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata +DEBUG: Updating local name of variable potential_temperature_at_viscous_sublayer_top from phy_myj_thz0 to GFS_Data(cdata%blk_no)%Tbd%phy_myj_thz0 +INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata +DEBUG: Updating local name of variable vertical_temperature_average_range_lower_bound from nstf_name(4) to GFS_Control%nstf_name(4) +INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata +DEBUG: Updating local name of variable cloud_phase_transition_threshold_temperature from tcr to GFS_Control%tcr +INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +DEBUG: Updating local name of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from isatmedmf_vdifq to GFS_Control%isatmedmf_vdifq +INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata +DEBUG: Updating local name of variable cosine_of_zenith_angle from coszen to GFS_Data(cdata%blk_no)%Radtend%coszen +INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_rain_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_rain_water) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntrw) +INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata +DEBUG: Updating local name of variable tendency_of_x_wind_due_to_model_physics from dudt to GFS_Interstitial(cdata%thrd_no)%dudt +INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_morrison_gettelman_microphysics_scheme from imp_physics_mg to GFS_Control%imp_physics_mg +INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata +INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_graupel_concentration_constant from mg_ngnst to GFS_Control%mg_ngnst +INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata +DEBUG: Updating local name of variable flag_for_iteration from flag_iter to GFS_Interstitial(cdata%thrd_no)%flag_iter +INFO: Converting local name julian of variable julian_day from new to old metadata +DEBUG: Updating local name of variable julian_day from julian to GFS_Control%julian +INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_momentum_in_air_over_ice from cd_ice to GFS_Interstitial(cdata%thrd_no)%cd_ice +INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata +DEBUG: Updating local name of variable adjusted_vertical_level_dimension_for_radiation from lmp to GFS_Interstitial(cdata%thrd_no)%lmp +DEBUG: Variable cmpfsw_type is in old metadata format, no conversion necessary +INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata +DEBUG: Updating local name of variable do_mynnsfclay from do_mynnsfclay to GFS_Control%do_mynnsfclay +INFO: Converting local name mol of variable theta_star from new to old metadata +DEBUG: Updating local name of variable theta_star from mol to GFS_Data(cdata%blk_no)%Sfcprop%mol +INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from acv to GFS_Data(cdata%blk_no)%Tbd%acv +INFO: Converting local name sw_optical_props_clouds of variable shortwave_optical_properties_for_cloudy_atmosphere from new to old metadata +DEBUG: Updating local name of variable shortwave_optical_properties_for_cloudy_atmosphere from sw_optical_props_clouds to GFS_Interstitial(cdata%thrd_no)%sw_optical_props_clouds +INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata +DEBUG: Updating local name of variable shoc_tke_dissipation_tunable_parameter from shoc_parm(2) to GFS_Control%shoc_parm(2) +INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata +DEBUG: Updating local name of variable entrainment_rate_coefficient_deep_convection from clam_deep to GFS_Control%clam_deep +INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata +DEBUG: Updating local name of variable detrainment_and_precipitation_tunable_parameter_4_CS from cs_parm(4) to GFS_Control%cs_parm(4) +INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata +INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata +DEBUG: Updating local name of variable mix_total_water_flag from bl_mynn_mixqt to GFS_Control%bl_mynn_mixqt +INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_flag_graupel_concentration_constant from mg_ngcons to GFS_Control%mg_ngcons +INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_plus_one from ntracp1 to GFS_Control%ntracp1 +INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata +DEBUG: Updating local name of variable flag_for_radar_reflectivity from lradar to GFS_Control%lradar +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata +DEBUG: Variable index_for_convective_cloud_cover_in_phy_f3d was in old metadata format and has already been converted +DEBUG: Updating local name of variable convective_cloud_cover_in_phy_f3d from phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvc) +INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata +DEBUG: Updating local name of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from work2 to GFS_Interstitial(cdata%thrd_no)%work2 +INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_of_h2o_forcing_data from levh2o to GFS_Interstitial(cdata%thrd_no)%levh2o +INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_fer_hires_microphysics_scheme from imp_physics_fer_hires to GFS_Control%imp_physics_fer_hires +INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from dusfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dusfc_cpl +INFO: Converting local name hffac of variable surface_upward_sensible_heat_flux_reduction_factor from new to old metadata +DEBUG: Updating local name of variable surface_upward_sensible_heat_flux_reduction_factor from hffac to GFS_Interstitial(cdata%thrd_no)%hffac +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata +DEBUG: Variable index_for_ice_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_water_mixing_ratio from qgrs(:,:,index_for_ice_cloud_condensate) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntiw) +INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata +DEBUG: Updating local name of variable cloud_base_mass_flux from phy_fctd to GFS_Data(cdata%blk_no)%Tbd%phy_fctd +INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_samf_deep_convection_scheme from imfdeepcnv_samf to GFS_Control%imfdeepcnv_samf +INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_entrainment_rate from edmf_ent to GFS_Data(cdata%blk_no)%Intdiag%edmf_ent +INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_for_fast_physics from npz to CCPP_interstitial%npz +INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_old_PBL_scheme from old_monin to GFS_Control%old_monin +INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from dvisbmi_cpl to GFS_Data(cdata%blk_no)%Coupling%dvisbmi_cpl +INFO: Converting local name sfc_alb_uvvis_dif of variable surface_albedo_uvvis_dif from new to old metadata +DEBUG: Updating local name of variable surface_albedo_uvvis_dif from sfc_alb_uvvis_dif to GFS_Interstitial(cdata%thrd_no)%sfc_alb_uvvis_dif +INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_vapor_specific_humidity from qgrs(:,:,index_for_water_vapor) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) +DEBUG: Variable index_for_turbulent_kinetic_energy was in old metadata format and has already been converted +INFO: Converting local name sfc_alb_uvvis_dir of variable surface_albedo_uvvis_dir from new to old metadata +DEBUG: Updating local name of variable surface_albedo_uvvis_dir from sfc_alb_uvvis_dir to GFS_Interstitial(cdata%thrd_no)%sfc_alb_uvvis_dir +INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata +DEBUG: Updating local name of variable water_equivalent_accumulated_snow_depth_over_land from weasd_land to GFS_Interstitial(cdata%thrd_no)%weasd_land +INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata +DEBUG: Updating local name of variable water_storage_in_aquifer from waxy to GFS_Data(cdata%blk_no)%Sfcprop%waxy +INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata +DEBUG: Updating local name of variable flag_for_CRICK_proof_cloud_water from crick_proof to GFS_Control%crick_proof +INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_seasalt_emission_flux from ssem to GFS_Data(cdata%blk_no)%Intdiag%ssem +INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata +DEBUG: Updating local name of variable perturbation_of_leaf_area_index from xlai1d to GFS_Interstitial(cdata%thrd_no)%xlai1d +INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata +DEBUG: Updating local name of variable cloud_rain_water_path from clouds(:,:,6) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) +INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata +DEBUG: Updating local name of variable flag_for_sw_clouds_without_sub_grid_approximation from isubc_sw to GFS_Control%isubc_sw +INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata +DEBUG: Updating local name of variable number_of_timesteps_between_shortwave_radiation_calls from nsswr to GFS_Control%nsswr +INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_ozone_concentration_due_to_temperature from dq3dt(:,:,8) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,8) +INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_wind_stress_over_ice from stress_ice to GFS_Interstitial(cdata%thrd_no)%stress_ice +INFO: Converting local name is of variable starting_x_direction_index from new to old metadata +DEBUG: Updating local name of variable starting_x_direction_index from is to CCPP_interstitial%is +INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_x_momentum_flux from dusfc1 to GFS_Interstitial(cdata%thrd_no)%dusfc1 +INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata +DEBUG: Updating local name of variable cellular_automata_seed_probability from nfracseed to GFS_Control%nfracseed +INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata +DEBUG: Updating local name of variable flag_deep_convection from kcnv to GFS_Interstitial(cdata%thrd_no)%kcnv +INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata +DEBUG: Updating local name of variable dynamics_to_physics_timestep_ratio from frain to GFS_Interstitial(cdata%thrd_no)%frain +INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata +DEBUG: Updating local name of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from dsnow_cpl to GFS_Data(cdata%blk_no)%Tbd%dsnow_cpl +INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata +DEBUG: Updating local name of variable number_of_surface_perturbations from nsfcpert to GFS_Control%nsfcpert +INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata +DEBUG: Updating local name of variable surface_condensation_mass from cndm_surf to GFS_Data(cdata%blk_no)%Sfcprop%cndm_surf +INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata +DEBUG: Updating local name of variable sub_layer_cooling_thickness from z_c to GFS_Data(cdata%blk_no)%Sfcprop%z_c +INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable flag_for_convective_gravity_wave_drag from do_cnvgwd to GFS_Control%do_cnvgwd +INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata +DEBUG: Variable index_for_ozone was in old metadata format and has already been converted +DEBUG: Updating local name of variable ozone_mixing_ratio from qgrs(:,:,index_for_ozone) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntoz) +INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from snohfa to GFS_Data(cdata%blk_no)%Intdiag%snohfa +INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from nvisbm_cpl to GFS_Data(cdata%blk_no)%Coupling%nvisbm_cpl +INFO: Converting local name aerosolssw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from aerosolssw(:,:,:,3) to GFS_Interstitial(cdata%thrd_no)%aerosolssw(:,:,:,3) +INFO: Converting local name levs of variable vertical_dimension from new to old metadata +DEBUG: Updating local name of variable vertical_dimension from levs to GFS_Control%levs +INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata +DEBUG: Updating local name of variable air_temperature_two_time_steps_back from phy_f3d(:,:,1) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,1) +INFO: Converting local name rrtmgp_cld_optics of variable rrtmgp_cloud_optics_flag from new to old metadata +DEBUG: Updating local name of variable rrtmgp_cloud_optics_flag from rrtmgp_cld_optics to GFS_Control%rrtmgp_cld_optics +INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +DEBUG: Updating local name of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from isatmedmf_vdif to GFS_Control%isatmedmf_vdif +INFO: Converting local name cldtaulw of variable RRTMGP_cloud_optical_depth_layers_at_10mu_band from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_optical_depth_layers_at_10mu_band from cldtaulw to GFS_Interstitial(cdata%thrd_no)%cldtaulw +INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted +DEBUG: Updating local name of variable ice_friendly_aerosol_number_concentration_updated_by_physics from gq0(:,:,index_for_ice_friendly_aerosols) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntia) +DEBUG: Variable index_for_graupel_number_concentration was in old metadata format and has already been converted +INFO: Converting local name prnum of variable prandtl_number from new to old metadata +DEBUG: Updating local name of variable prandtl_number from prnum to GFS_Interstitial(cdata%thrd_no)%prnum +INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_for_fast_physics_plus_one from npzp1 to CCPP_interstitial%npzp1 +INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata +DEBUG: Updating local name of variable surface_exchange_coefficient_for_heat_at_2m from chs2 to GFS_Data(cdata%blk_no)%Sfcprop%chs2 +INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_atmosphere_updraft_convective_mass_flux from ud_mf to GFS_Interstitial(cdata%thrd_no)%ud_mf +INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from htrlw to GFS_Data(cdata%blk_no)%Radtend%htrlw +INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata +DEBUG: Updating local name of variable flag_flux_form_CS from flx_form to GFS_Control%flx_form +INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata +DEBUG: Updating local name of variable surface_ground_temperature_for_radiation from tsfg to GFS_Interstitial(cdata%thrd_no)%tsfg +INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_flag_drop_concentration_constant from mg_nccons to GFS_Control%mg_nccons +INFO: Converting local name active_gases_array of variable list_of_active_gases_used_by_RRTMGP from new to old metadata +DEBUG: Updating local name of variable list_of_active_gases_used_by_RRTMGP from active_gases_array to GFS_Interstitial(cdata%thrd_no)%active_gases_array +INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata +INFO: Converting local name master of variable mpi_root from new to old metadata +DEBUG: Updating local name of variable mpi_root from master to GFS_Control%master +INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata +DEBUG: Updating local name of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from chh_land to GFS_Interstitial(cdata%thrd_no)%chh_land +INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata +DEBUG: Updating local name of variable latitude_index_in_debug_printouts from latidxprnt to GFS_Interstitial(cdata%thrd_no)%latidxprnt +INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata +DEBUG: Updating local name of variable flag_for_stochastic_skeb_option from do_skeb to GFS_Control%do_skeb +INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata +DEBUG: Updating local name of variable mean_vis_albedo_with_weak_cosz_dependency from alvwf to GFS_Data(cdata%blk_no)%Sfcprop%alvwf +INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata +DEBUG: Updating local name of variable tracer_concentration from qgrs to GFS_Data(cdata%blk_no)%Statein%qgrs +INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata +DEBUG: Updating local name of variable flag_arakawa_wu_downdraft from do_awdd to GFS_Control%do_awdd +INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata +DEBUG: Updating local name of variable mpi_root_for_fast_physics from mpiroot to CCPP_interstitial%mpiroot +INFO: Converting local name flxprf_lw of variable RRTMGP_lw_fluxes from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_fluxes from flxprf_lw to GFS_Interstitial(cdata%thrd_no)%flxprf_lw +INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_air_pressure_for_coupling from psurfi_cpl to GFS_Data(cdata%blk_no)%Coupling%psurfi_cpl +INFO: Converting local name communicator of variable mpi_comm from new to old metadata +DEBUG: Updating local name of variable mpi_comm from communicator to GFS_Control%communicator +INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_liu_liquid_treatment from mg_do_liq_liu to GFS_Control%mg_do_liq_liu +INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata +DEBUG: Updating local name of variable soil_water_content_between_soil_bottom_and_water_table from smcwtdxy to GFS_Data(cdata%blk_no)%Sfcprop%smcwtdxy +INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable surface_midlayer_air_temperature_in_longwave_radiation from tsflw to GFS_Data(cdata%blk_no)%Radtend%tsflw +INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from dtsfci to GFS_Data(cdata%blk_no)%Intdiag%dtsfci +INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata +DEBUG: Updating local name of variable minimum_scaling_factor_for_critical_relative_humidity from dxmin to GFS_Control%dxmin +INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_for_cloud_condensate from nncl to GFS_Interstitial(cdata%thrd_no)%nncl +INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable anisotropy_of_subgrid_orography from gamma to GFS_Interstitial(cdata%thrd_no)%gamma +INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata +DEBUG: Updating local name of variable free_convection_layer_thickness from d_conv to GFS_Data(cdata%blk_no)%Sfcprop%d_conv +INFO: Converting local name cld_frac of variable RRTMGP_total_cloud_fraction from new to old metadata +DEBUG: Updating local name of variable RRTMGP_total_cloud_fraction from cld_frac to GFS_Interstitial(cdata%thrd_no)%cld_frac +INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata +DEBUG: Updating local name of variable ending_x_direction_index from ie to CCPP_interstitial%ie +INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata +DEBUG: Updating local name of variable land_area_fraction_for_microphysics from frland to GFS_Interstitial(cdata%thrd_no)%frland +INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable soil_vertical_dimension_for_land_surface_model from lsoil_lsm to GFS_Control%lsoil_lsm +INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from dqsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dqsfci_cpl +INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata +DEBUG: Updating local name of variable flag_for_surface_layer_drag_coefficient_option from iopt_sfc to GFS_Control%iopt_sfc +INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_longwave_radiation from dt3dt(:,:,1) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,1) +INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata +DEBUG: Updating local name of variable atmosphere_heat_diffusivity_for_mynnpbl from exch_h to GFS_Data(cdata%blk_no)%Intdiag%exch_h +INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata +DEBUG: Updating local name of variable local_snow_number_concentration from ncps to GFS_Interstitial(cdata%thrd_no)%ncps +INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata +DEBUG: Updating local name of variable sensible_heat_flux_due_to_rainfall from qrain to GFS_Data(cdata%blk_no)%Sfcprop%qrain +INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from sfcnsw to GFS_Data(cdata%blk_no)%Coupling%sfcnsw +INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata +DEBUG: Updating local name of variable lw_fluxes_sfc from sfcflw to GFS_Data(cdata%blk_no)%Radtend%sfcflw +INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata +DEBUG: Updating local name of variable water_table_depth from zwtxy to GFS_Data(cdata%blk_no)%Sfcprop%zwtxy +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata +DEBUG: Updating local name of variable flag_for_hydrostatic_solver from hydrostatic to GFS_Control%hydrostatic +INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable convective_cloud_water_mixing_ratio from cnvw to GFS_Interstitial(cdata%thrd_no)%cnvw +INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata +DEBUG: Updating local name of variable flag_for_supercooled_liquid_water_option from iopt_frz to GFS_Control%iopt_frz +INFO: Converting local name fluxswUP_allsky of variable RRTMGP_sw_flux_profile_upward_allsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_flux_profile_upward_allsky from fluxswUP_allsky to GFS_Interstitial(cdata%thrd_no)%fluxswUP_allsky +INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata +DEBUG: Updating local name of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from cmm_ice to GFS_Interstitial(cdata%thrd_no)%cmm_ice +INFO: Converting local name cld_resnow of variable RRTMGP_mean_effective_radius_for_snow_flake from new to old metadata +DEBUG: Updating local name of variable RRTMGP_mean_effective_radius_for_snow_flake from cld_resnow to GFS_Interstitial(cdata%thrd_no)%cld_resnow +INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_longwave_flux from ulwsfci to GFS_Data(cdata%blk_no)%Intdiag%ulwsfci +INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata +DEBUG: Updating local name of variable sea_ice_temperature_interstitial from tice to GFS_Interstitial(cdata%thrd_no)%tice +INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata +DEBUG: Updating local name of variable aerosol_number_concentration_from_gocart_aerosol_climatology from aer_nm to GFS_Data(cdata%blk_no)%Tbd%aer_nm +INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata +DEBUG: Variable index_for_liquid_cloud_condensate was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_condensed_water_mixing_ratio_save from save_q(:,:,index_for_liquid_cloud_condensate) to GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) +INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from dtdtr to GFS_Data(cdata%blk_no)%Tbd%dtdtr +INFO: Converting local name evapq of variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness from evapq to GFS_Interstitial(cdata%thrd_no)%evapq +INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_surface_physics_perturbation from sfc_wts to GFS_Data(cdata%blk_no)%Coupling%sfc_wts +INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from rainncprv to GFS_Data(cdata%blk_no)%Sfcprop%rainncprv +INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_tbd_type_instance from Tbd to GFS_Data(cdata%blk_no)%Tbd +INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata +DEBUG: Updating local name of variable tendency_of_x_wind_due_to_ugwp from gw_dudt to GFS_Interstitial(cdata%thrd_no)%gw_dudt +INFO: Converting local name tgrs of variable air_temperature from new to old metadata +DEBUG: Updating local name of variable air_temperature from tgrs to GFS_Data(cdata%blk_no)%Statein%tgrs +INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata +DEBUG: Updating local name of variable lw_fluxes_top_atmosphere from topflw to GFS_Data(cdata%blk_no)%Intdiag%topflw +INFO: Converting local name sw_optical_props_aerosol of variable shortwave_optical_properties_for_aerosols from new to old metadata +DEBUG: Updating local name of variable shortwave_optical_properties_for_aerosols from sw_optical_props_aerosol to GFS_Interstitial(cdata%thrd_no)%sw_optical_props_aerosol +INFO: Converting local name e0fac of variable latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux from new to old metadata +DEBUG: Updating local name of variable latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux from e0fac to GFS_Control%e0fac +INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_interface_for_radiation from tlvl to GFS_Interstitial(cdata%thrd_no)%tlvl +INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from snowca to GFS_Data(cdata%blk_no)%Intdiag%snowca +INFO: Converting local name do_RRTMGP of variable flag_for_rrtmgp_radiation_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_rrtmgp_radiation_scheme from do_RRTMGP to GFS_Control%do_RRTMGP +INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from nirdfui to GFS_Data(cdata%blk_no)%Coupling%nirdfui +INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata +DEBUG: Updating local name of variable number_of_plumes from nupdraft to GFS_Data(cdata%blk_no)%Intdiag%nupdraft +INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_potential_evaporation from epi to GFS_Data(cdata%blk_no)%Intdiag%epi +INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata +DEBUG: Updating local name of variable upward_heat_flux_in_soil_over_land from gflx_land to GFS_Interstitial(cdata%thrd_no)%gflx_land +INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata +INFO: Converting local name lw_file_clouds of variable rrtmgp_coeff_lw_cloud_optics from new to old metadata +DEBUG: Updating local name of variable rrtmgp_coeff_lw_cloud_optics from lw_file_clouds to GFS_Control%lw_file_clouds +INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata +DEBUG: Updating local name of variable in_number_concentration from in_nm to GFS_Data(cdata%blk_no)%Tbd%in_nm +DEBUG: Variable ccpp_thread_number was in old metadata format and has already been converted +INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata +DEBUG: Updating local name of variable number_of_equatorial_longitude_points from lonr to GFS_Control%lonr +INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from dt3dt(:,:,7) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,7) +INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata +DEBUG: Updating local name of variable surface_wind_stress_over_land from stress_land to GFS_Interstitial(cdata%thrd_no)%stress_land +INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata +DEBUG: Updating local name of variable mg_cloud_water_variance from mg_qcvar to GFS_Control%mg_qcvar +INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable dimensionless_exner_function_at_lowest_model_layer from prslk(:,1) to GFS_Data(cdata%blk_no)%Statein%prslk(:,1) +INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata +DEBUG: Updating local name of variable edmf_partition_flag from bl_mynn_edmf_part to GFS_Control%bl_mynn_edmf_part +INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from dq3dt(:,:,7) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,7) +INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_graupel_amount from totgrp to GFS_Data(cdata%blk_no)%Intdiag%totgrp +INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_latent_heat_flux from evap to GFS_Interstitial(cdata%thrd_no)%evap +INFO: Converting local name lw_file_gas of variable rrtmgp_kdistribution_lw from new to old metadata +DEBUG: Updating local name of variable rrtmgp_kdistribution_lw from lw_file_gas to GFS_Control%lw_file_gas +INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata +INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from qg to CCPP_interstitial%qg +INFO: Converting local name je of variable ending_y_direction_index from new to old metadata +DEBUG: Updating local name of variable ending_y_direction_index from je to CCPP_interstitial%je +INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata +DEBUG: Updating local name of variable mg_ice_concentration_constant from mg_ninst to GFS_Control%mg_ninst +INFO: Converting local name hefac of variable surface_upward_latent_heat_flux_reduction_factor from new to old metadata +DEBUG: Updating local name of variable surface_upward_latent_heat_flux_reduction_factor from hefac to GFS_Interstitial(cdata%thrd_no)%hefac +INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata +DEBUG: Variable index_for_graupel_effective_radius was in old metadata format and has already been converted +DEBUG: Updating local name of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from phy_f3d(:,:,index_for_graupel_effective_radius) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ngeffr) +INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata +INFO: Converting local name p_lev of variable air_pressure_at_interface_for_RRTMGP_in_hPa from new to old metadata +DEBUG: Updating local name of variable air_pressure_at_interface_for_RRTMGP_in_hPa from p_lev to GFS_Interstitial(cdata%thrd_no)%p_lev +INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata +DEBUG: Updating local name of variable minimum_large_ice_fraction from flgmin to GFS_Control%flgmin +INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from t02max to GFS_Data(cdata%blk_no)%Intdiag%t02max +INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata +DEBUG: Updating local name of variable magnitude_of_surface_albedo_perturbation from pertalb to GFS_Control%pertalb +INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata +DEBUG: Updating local name of variable cloud_condensed_water_conversion_threshold from wminco to GFS_Control%wminco +INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata +DEBUG: Updating local name of variable critical_relative_humidity from rhc to GFS_Interstitial(cdata%thrd_no)%rhc +INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +DEBUG: Updating local name of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from tau_ngw to GFS_Interstitial(cdata%thrd_no)%tau_ngw +INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata +DEBUG: Updating local name of variable number_of_iterations_to_spin_up_cellular_automata from nspinup to GFS_Control%nspinup +INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable x_wind_at_10m from u10m to GFS_Data(cdata%blk_no)%Intdiag%u10m +INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable tendency_of_air_temperature_at_Lagrangian_surface from dtdt to CCPP_interstitial%dtdt +INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata +DEBUG: Updating local name of variable air_temperature_at_lowest_model_layer_for_diag from t1 to GFS_Data(cdata%blk_no)%Intdiag%t1 +INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata +DEBUG: Updating local name of variable characteristic_grid_length_scale from dlength to GFS_Interstitial(cdata%thrd_no)%dlength +INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata +DEBUG: Updating local name of variable snow_albedo_at_previous_time_step from alboldxy to GFS_Data(cdata%blk_no)%Sfcprop%alboldxy +INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata +DEBUG: Updating local name of variable flag_for_shoc from do_shoc to GFS_Control%do_shoc +INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from du3dt_tms to GFS_Data(cdata%blk_no)%Intdiag%du3dt_tms +INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_for_convective_transport from nn to GFS_Interstitial(cdata%thrd_no)%nn +INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata +DEBUG: Updating local name of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from do_sat_adj to CCPP_interstitial%do_sat_adj +INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata +DEBUG: Updating local name of variable magnitude_of_perturbation_of_soil_type_b_parameter from pertshc to GFS_Control%pertshc +INFO: Converting local name sec_diff_byband of variable secant_of_diffusivity_angle_each_RRTMGP_LW_band from new to old metadata +DEBUG: Updating local name of variable secant_of_diffusivity_angle_each_RRTMGP_LW_band from sec_diff_byband to GFS_Interstitial(cdata%thrd_no)%sec_diff_byband +INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata +DEBUG: Updating local name of variable flag_for_canopy_stomatal_resistance_option from iopt_crs to GFS_Control%iopt_crs +INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length_over_ocean from zorlo to GFS_Data(cdata%blk_no)%Sfcprop%zorlo +INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata +DEBUG: Updating local name of variable flag_nonzero_wet_surface_fraction from wet to GFS_Interstitial(cdata%thrd_no)%wet +INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata +DEBUG: Updating local name of variable y_wind_at_10m from v10m to GFS_Data(cdata%blk_no)%Intdiag%v10m +INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata +DEBUG: Updating local name of variable updraft_velocity_tunable_parameter_2_CS from cs_parm(2) to GFS_Control%cs_parm(2) +INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from adjvisbmu to GFS_Interstitial(cdata%thrd_no)%adjvisbmu +INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_y_stress_due_to_gravity_wave_drag from dvgwd to GFS_Data(cdata%blk_no)%Intdiag%dvgwd +INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata +DEBUG: Updating local name of variable flag_for_cice from flag_cice to GFS_Interstitial(cdata%thrd_no)%flag_cice +INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable snow_precipitation_rate_from_previous_timestep from dsnowprv to GFS_Data(cdata%blk_no)%Sfcprop%dsnowprv +INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata +DEBUG: Updating local name of variable number_of_3d_arrays_associated_with_pdf_based_clouds from npdf3d to GFS_Control%npdf3d +INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from dq3dt(:,:,2) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,2) +INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable local_graupel_mixing_ratio from qgl to GFS_Interstitial(cdata%thrd_no)%qgl +INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata +DEBUG: Updating local name of variable asymmetry_of_subgrid_orography from oa4 to GFS_Interstitial(cdata%thrd_no)%oa4 +INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata +DEBUG: Variable ccpp_block_number was in old metadata format and has already been converted +DEBUG: Updating local name of variable GFS_data_type_instance from GFS_Data(ccpp_block_number) to GFS_Data(cdata%blk_no) +INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata +DEBUG: Updating local name of variable water_equivalent_accumulated_snow_depth from weasd to GFS_Data(cdata%blk_no)%Sfcprop%weasd +INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata +DEBUG: Updating local name of variable surface_air_temperature_for_radiation from tsfa to GFS_Interstitial(cdata%thrd_no)%tsfa +INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_temperature_at_2m_for_coupling from t2mi_cpl to GFS_Data(cdata%blk_no)%Coupling%t2mi_cpl +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_skeb_perturbation_of_y_wind from skebv_wts to GFS_Data(cdata%blk_no)%Coupling%skebv_wts +INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata +DEBUG: Updating local name of variable vertical_sigma_coordinate_for_radiation_initialization from si to GFS_Control%si +INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata +DEBUG: Updating local name of variable soil_vertical_dimension from lsoil to GFS_Control%lsoil +INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata +DEBUG: Updating local name of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from work1 to GFS_Interstitial(cdata%thrd_no)%work1 +INFO: Converting local name z0fac of variable surface_roughness_fraction_factor from new to old metadata +DEBUG: Updating local name of variable surface_roughness_fraction_factor from z0fac to GFS_Control%z0fac +INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata +DEBUG: Updating local name of variable diurnal_thermocline_layer_heat_content from xt to GFS_Data(cdata%blk_no)%Sfcprop%xt +INFO: Converting local name prsl of variable air_pressure from new to old metadata +DEBUG: Updating local name of variable air_pressure from prsl to GFS_Data(cdata%blk_no)%Statein%prsl +INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata +DEBUG: Updating local name of variable fraction_of_convective_cloud from cv to GFS_Data(cdata%blk_no)%Cldprop%cv +INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata +DEBUG: Updating local name of variable map_of_block_column_number_to_global_j_index from jmap to GFS_Data(cdata%blk_no)%Tbd%jmap +INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_precipitation_amount from totprcp to GFS_Data(cdata%blk_no)%Intdiag%totprcp +INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata +DEBUG: Updating local name of variable rain_conversion_parameter_shallow_convection from c0s_shal to GFS_Control%c0s_shal +INFO: Converting local name xs of variable sea_water_salinity from new to old metadata +DEBUG: Updating local name of variable sea_water_salinity from xs to GFS_Data(cdata%blk_no)%Sfcprop%xs +INFO: Converting local name xlat of variable latitude from new to old metadata +DEBUG: Updating local name of variable latitude from xlat to GFS_Data(cdata%blk_no)%Grid%xlat +INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_ice_friendly_aerosols was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from dqdt(:,:,index_for_ice_friendly_aerosols) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntia) +INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_roughness_length_over_land_interstitial from zorl_land to GFS_Interstitial(cdata%thrd_no)%zorl_land +INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable surface_geopotential_at_Lagrangian_surface from phis to CCPP_interstitial%phis +INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_specific_humidity_at_2m_for_coupling from q2mi_cpl to GFS_Data(cdata%blk_no)%Coupling%q2mi_cpl +INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from dswsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%dswsfc_cpl +INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata +DEBUG: Updating local name of variable sea_ice_temperature from tisfc to GFS_Data(cdata%blk_no)%Sfcprop%tisfc +INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata +DEBUG: Updating local name of variable flag_for_fast_microphysics_energy_conservation from fast_mp_consv to CCPP_interstitial%fast_mp_consv +INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata +INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from du3dt_mtb to GFS_Data(cdata%blk_no)%Intdiag%du3dt_mtb +INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata +DEBUG: Updating local name of variable multiplication_factor_for_critical_cloud_workfunction from ccwf to GFS_Control%ccwf +INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata +DEBUG: Updating local name of variable duration_of_sunshine from suntim to GFS_Data(cdata%blk_no)%Intdiag%suntim +INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_shortwave_flux from dswsfci to GFS_Data(cdata%blk_no)%Intdiag%dswsfci +INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata +DEBUG: Updating local name of variable atmosphere_boundary_layer_thickness from hpbl to GFS_Data(cdata%blk_no)%Intdiag%hpbl +INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_momentum_in_air from cd to GFS_Interstitial(cdata%thrd_no)%cd +INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata +DEBUG: Updating local name of variable integrated_x_momentum_flux_from_large_scale_gwd from dusfc_ls to GFS_Data(cdata%blk_no)%Intdiag%dusfc_ls +INFO: Converting local name grav_settling of variable grav_settling from new to old metadata +DEBUG: Updating local name of variable grav_settling from grav_settling to GFS_Control%grav_settling +INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata +DEBUG: Updating local name of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from refdmax263k to GFS_Data(cdata%blk_no)%Intdiag%refdmax263k +INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata +DEBUG: Updating local name of variable area_fraction_of_wet_canopy from fwetxy to GFS_Data(cdata%blk_no)%Sfcprop%fwetxy +INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata +DEBUG: Updating local name of variable subsurface_runoff_flux from drain to GFS_Interstitial(cdata%thrd_no)%drain +INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_snow_amount from snowmp to GFS_Interstitial(cdata%thrd_no)%snowmp +INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_gf_deep_convection_scheme from imfdeepcnv_gf to GFS_Control%imfdeepcnv_gf +INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_shal_convection from dt3dt(:,:,5) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,5) +INFO: Converting local name js of variable starting_y_direction_index from new to old metadata +DEBUG: Updating local name of variable starting_y_direction_index from js to CCPP_interstitial%js +INFO: Converting local name sources of variable longwave_source_function from new to old metadata +DEBUG: Updating local name of variable longwave_source_function from sources to GFS_Interstitial(cdata%thrd_no)%sources +INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_cfc22 from gasvmr(:,:,8) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,8) +INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_default_aerosol_effect_in_shortwave_radiation from iaer to GFS_Control%iaer +DEBUG: Variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d was in old metadata format and has already been converted +INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from gq0(:,1,index_for_water_vapor) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,1,GFS_Control%ntqv) +INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from dudt_ogw to GFS_Interstitial(cdata%thrd_no)%dudt_ogw +INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata +DEBUG: Updating local name of variable flag_for_initial_time_date_control from ictm to GFS_Control%ictm +INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable moisture_from_previous_timestep from prevsq to GFS_Data(cdata%blk_no)%Tbd%prevsq +INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_precipitation_effect_on_radiation from norad_precip to GFS_Control%norad_precip +INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata +DEBUG: Updating local name of variable soil_type_classification_real from stype to GFS_Data(cdata%blk_no)%Sfcprop%stype +INFO: Converting local name stress of variable surface_wind_stress from new to old metadata +DEBUG: Updating local name of variable surface_wind_stress from stress to GFS_Interstitial(cdata%thrd_no)%stress +INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata +DEBUG: Updating local name of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from del_gz to GFS_Interstitial(cdata%thrd_no)%del_gz +INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from npzq_con to CCPP_interstitial%npzq_con +INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from dtsfc to GFS_Data(cdata%blk_no)%Intdiag%dtsfc +INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from fh2_ocean to GFS_Interstitial(cdata%thrd_no)%fh2_ocean +INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata +DEBUG: Updating local name of variable seed_random_numbers_sw from icsdsw to GFS_Data(cdata%blk_no)%Tbd%icsdsw +INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata +DEBUG: Updating local name of variable critical_relative_humidity_at_surface from crtrh(1) to GFS_Control%crtrh(1) +INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable cloud_snow_specific_humidity_at_Lagrangian_surface from qs to CCPP_interstitial%qs +INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata +DEBUG: Updating local name of variable number_of_dust_bins_for_diagnostics from ndust to GFS_Data(cdata%blk_no)%Intdiag%ndust +INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from dqdt(:,:,index_for_water_vapor) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntqv) +INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata +DEBUG: Updating local name of variable x_momentum_tendency_from_blocking_drag from dtaux2d_bl to GFS_Data(cdata%blk_no)%Intdiag%dtaux2d_bl +INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from graupel to GFS_Data(cdata%blk_no)%Intdiag%graupel +INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from dqsfc to GFS_Data(cdata%blk_no)%Intdiag%dqsfc +INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable x_wind_updated_by_physics from gu0 to GFS_Data(cdata%blk_no)%Stateout%gu0 +INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata +DEBUG: Updating local name of variable canopy_air_vapor_pressure from eahxy to GFS_Data(cdata%blk_no)%Sfcprop%eahxy +INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata +DEBUG: Updating local name of variable flag_for_dynamic_vegetation_option from iopt_dveg to GFS_Control%iopt_dveg +INFO: Converting local name vfact_ca of variable vertical_weight_for_ca from new to old metadata +DEBUG: Updating local name of variable vertical_weight_for_ca from vfact_ca to GFS_Data(cdata%blk_no)%Coupling%vfact_ca +INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata +DEBUG: Updating local name of variable t_prime_q_prime from cov to GFS_Data(cdata%blk_no)%Tbd%cov +INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_uniform_subcolumns from microp_uniform to GFS_Control%microp_uniform +INFO: Converting local name cld_reice of variable RRTMGP_mean_effective_radius_for_ice_cloud from new to old metadata +DEBUG: Updating local name of variable RRTMGP_mean_effective_radius_for_ice_cloud from cld_reice to GFS_Interstitial(cdata%thrd_no)%cld_reice +INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata +DEBUG: Updating local name of variable flag_for_ground_snow_surface_albedo_option from iopt_alb to GFS_Control%iopt_alb +INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata +DEBUG: Updating local name of variable atmosphere_diffusivity_coefficient_factor from moninq_fac to GFS_Control%moninq_fac +INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from work3 to GFS_Interstitial(cdata%thrd_no)%work3 +INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata +DEBUG: Updating local name of variable surface_downwelling_direct_near_infrared_shortwave_flux from adjnirbmd to GFS_Interstitial(cdata%thrd_no)%adjnirbmd +INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_ch4 from gasvmr(:,:,3) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,3) +INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata +DEBUG: Updating local name of variable coefficient_w_d from w_d to GFS_Data(cdata%blk_no)%Sfcprop%w_d +INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata +DEBUG: Updating local name of variable critical_relative_humidity_at_PBL_top from crtrh(2) to GFS_Control%crtrh(2) +INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata +DEBUG: Updating local name of variable ccpp_error_flag from errflg to cdata%errflg +INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata +DEBUG: Updating local name of variable flag_for_individual_cloud_species_advected from spec_adv to GFS_Control%spec_adv +INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from gflux to GFS_Data(cdata%blk_no)%Intdiag%gflux +INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata +DEBUG: Updating local name of variable entrainment_efficiency_tunable_parameter_9_CS from cs_parm(9) to GFS_Control%cs_parm(9) +INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata +DEBUG: Updating local name of variable namelist_filename_for_internal_file_reads from input_nml_file to GFS_Control%input_nml_file +INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata +DEBUG: Updating local name of variable start_index_of_other_tracers from tracers_start_index to GFS_Interstitial(cdata%thrd_no)%tracers_start_index +DEBUG: Variable sfcfsw_type is in old metadata format, no conversion necessary +INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata +DEBUG: Updating local name of variable dominant_rain_type from tdomr to GFS_Data(cdata%blk_no)%Intdiag%tdomr +INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata +DEBUG: Updating local name of variable mass_fraction_of_convective_cloud_ice from qicn to GFS_Interstitial(cdata%thrd_no)%qicn +INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata +INFO: Converting local name ipsdsw0 of variable initial_permutation_seed_sw from new to old metadata +DEBUG: Updating local name of variable initial_permutation_seed_sw from ipsdsw0 to GFS_Interstitial(cdata%thrd_no)%ipsdsw0 +INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata +DEBUG: Updating local name of variable instantaneous_convective_scale_wet_deposition from wetdpc to GFS_Data(cdata%blk_no)%Intdiag%wetdpc +INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata +DEBUG: Updating local name of variable namelist_filename from fn_nml to GFS_Control%fn_nml +INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata +DEBUG: Updating local name of variable surface_air_pressure_diag from psurf to GFS_Data(cdata%blk_no)%Intdiag%psurf +INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata +DEBUG: Updating local name of variable surface_snow_thickness_water_equivalent from snowd to GFS_Data(cdata%blk_no)%Sfcprop%snowd +INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata +DEBUG: Updating local name of variable seconds_elapsed_since_model_initialization from sec to GFS_Control%sec +INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata +DEBUG: Updating local name of variable number_of_tracers_for_samf from nsamftrac to GFS_Interstitial(cdata%thrd_no)%nsamftrac +INFO: Converting local name lw_cloud_props of variable coefficients_for_lw_cloud_optics from new to old metadata +DEBUG: Updating local name of variable coefficients_for_lw_cloud_optics from lw_cloud_props to GFS_Interstitial(cdata%thrd_no)%lw_cloud_props +INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata +DEBUG: Updating local name of variable dimensionless_exner_function_at_model_layers from prslk to GFS_Data(cdata%blk_no)%Statein%prslk +INFO: Converting local name woodxy of variable wood_mass from new to old metadata +DEBUG: Updating local name of variable wood_mass from woodxy to GFS_Data(cdata%blk_no)%Sfcprop%woodxy +INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_deep_convective_precipitation_amount from raincd to GFS_Interstitial(cdata%thrd_no)%raincd +INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable cumulative_atmosphere_downdraft_convective_mass_flux from dwn_mf to GFS_Data(cdata%blk_no)%Intdiag%dwn_mf +INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Variable index_for_snow_water was in old metadata format and has already been converted +DEBUG: Updating local name of variable snow_water_mixing_ratio_updated_by_physics from gq0(:,:,index_for_snow_water) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntsw) +INFO: Converting local name hswb of variable RRTMGP_sw_heating_rate_spectral from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_heating_rate_spectral from hswb to GFS_Interstitial(cdata%thrd_no)%hswb +INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_previous_time_step from phy_f3d(:,:,4) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,4) +INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata +DEBUG: Updating local name of variable number_of_cloud_types_CS from nctp to GFS_Control%nctp +INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata +DEBUG: Variable index_for_mass_weighted_rime_factor was in old metadata format and has already been converted +DEBUG: Updating local name of variable mass_weighted_rime_factor_updated_by_physics from gq0(:,:,index_for_mass_weighted_rime_factor) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%nqrimef) +INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata +DEBUG: Updating local name of variable instantaneous_cosine_of_zenith_angle from xcosz to GFS_Interstitial(cdata%thrd_no)%xcosz +INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_latent_heat_flux_over_land from evap_land to GFS_Interstitial(cdata%thrd_no)%evap_land +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_liquid_cloud_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from dqdt(:,:,index_for_liquid_cloud_number_concentration) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntlnc) +INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable cumulative_atmosphere_updraft_convective_mass_flux from upd_mf to GFS_Data(cdata%blk_no)%Intdiag%upd_mf +INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata +DEBUG: Updating local name of variable vegetation_type_classification from vegtype to GFS_Interstitial(cdata%thrd_no)%vegtype +INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_transpiration_flux_multiplied_by_timestep from transa to GFS_Data(cdata%blk_no)%Intdiag%transa +INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata +DEBUG: Variable index_for_cloud_amount was in old metadata format and has already been converted +DEBUG: Updating local name of variable cloud_fraction_updated_by_physics from gq0(:,:,index_for_cloud_amount) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntclamt) +INFO: Converting local name lw_gas_props of variable coefficients_for_lw_gas_optics from new to old metadata +DEBUG: Updating local name of variable coefficients_for_lw_gas_optics from lw_gas_props to GFS_Interstitial(cdata%thrd_no)%lw_gas_props +INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata +DEBUG: Updating local name of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from q1 to GFS_Data(cdata%blk_no)%Intdiag%q1 +INFO: Converting local name ty_gas_optics_rrtmgp of variable ty_gas_optics_rrtmgp from new to old metadata +INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata +DEBUG: Updating local name of variable ice_fraction_in_convective_tower from cnv_fice to GFS_Interstitial(cdata%thrd_no)%cnv_fice +INFO: Converting local name aerosolslw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_single_scattering_albedo_for_longwave_bands_01_16 from aerosolslw(:,:,:,2) to GFS_Interstitial(cdata%thrd_no)%aerosolslw(:,:,:,2) +INFO: Converting local name save_u of variable x_wind_save from new to old metadata +DEBUG: Updating local name of variable x_wind_save from save_u to GFS_Interstitial(cdata%thrd_no)%save_u +INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata +INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +DEBUG: Updating local name of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from nswsfc_cpl to GFS_Data(cdata%blk_no)%Coupling%nswsfc_cpl +INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata +DEBUG: Updating local name of variable instantaneous_anthopogenic_and_biomass_burning_emissions from abem to GFS_Data(cdata%blk_no)%Intdiag%abem +INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata +DEBUG: Updating local name of variable soil_type_classification from soiltype to GFS_Interstitial(cdata%thrd_no)%soiltype +INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_2015_ozone_physics from oz_phys_2015 to GFS_Control%oz_phys_2015 +INFO: Converting local name vgrs of variable y_wind from new to old metadata +DEBUG: Updating local name of variable y_wind from vgrs to GFS_Data(cdata%blk_no)%Statein%vgrs +DEBUG: Variable index_for_snow_effective_radius was in old metadata format and has already been converted +INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_microphysics_scheme from imp_physics to GFS_Control%imp_physics +INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata +DEBUG: Updating local name of variable total_accumulated_snowfall from snowfallac to GFS_Data(cdata%blk_no)%Sfcprop%snowfallac +INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata +DEBUG: Updating local name of variable level_of_dividing_streamline from zmtnblck to GFS_Data(cdata%blk_no)%Intdiag%zmtnblck +INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata +INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata +DEBUG: Updating local name of variable flag_for_gaussian_spatial_filter from ca_smooth to GFS_Control%ca_smooth +INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata +DEBUG: Updating local name of variable maximum_column_heating_rate from cumabs to GFS_Interstitial(cdata%thrd_no)%cumabs +INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_statein_type_instance from Statein to GFS_Data(cdata%blk_no)%Statein +INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_turbulent_kinetic_energy was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from dqdt(:,:,index_for_turbulent_kinetic_energy) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntke) +INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata +DEBUG: Updating local name of variable maximum_scaling_factor_for_critical_relative_humidity from dxmax to GFS_Control%dxmax +INFO: Converting local name fluxlwUP_allsky of variable RRTMGP_lw_flux_profile_upward_allsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_lw_flux_profile_upward_allsky from fluxlwUP_allsky to GFS_Interstitial(cdata%thrd_no)%fluxlwUP_allsky +INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_x_wind_due_to_deep_convection from du3dt(:,:,3) to GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,3) +INFO: Converting local name tiice of variable internal_ice_temperature from new to old metadata +DEBUG: Updating local name of variable internal_ice_temperature from tiice to GFS_Data(cdata%blk_no)%Sfcprop%tiice +INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from dq3dt(:,:,1) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,1) +INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata +INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata +DEBUG: Updating local name of variable cloud_condensed_water_ice_conversion_threshold_ras from wminras to GFS_Control%wminras +INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata +DEBUG: Updating local name of variable cloud_work_function from cld1d to GFS_Interstitial(cdata%thrd_no)%cld1d +INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from toticeb to GFS_Data(cdata%blk_no)%Intdiag%toticeb +INFO: Converting local name fluxswDOWN_clrsky of variable RRTMGP_sw_flux_profile_downward_clrsky from new to old metadata +DEBUG: Updating local name of variable RRTMGP_sw_flux_profile_downward_clrsky from fluxswDOWN_clrsky to GFS_Interstitial(cdata%thrd_no)%fluxswDOWN_clrsky +INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata +DEBUG: Variable index_for_ice_effective_radius was in old metadata format and has already been converted +DEBUG: Updating local name of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from phy_f3d(:,:,index_for_ice_effective_radius) to GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%nieffr) +INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata +DEBUG: Updating local name of variable surface_friction_velocity_drag from ustm to GFS_Data(cdata%blk_no)%Sfcprop%ustm +INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata +DEBUG: Updating local name of variable tke_budget from bl_mynn_tkebudget to GFS_Control%bl_mynn_tkebudget +INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata +DEBUG: Updating local name of variable coefficient_w_0 from w_0 to GFS_Data(cdata%blk_no)%Sfcprop%w_0 +INFO: Converting local name aerosolssw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable RRTMGP_aerosol_optical_depth_for_shortwave_bands_01_16 from aerosolssw(:,:,:,1) to GFS_Interstitial(cdata%thrd_no)%aerosolssw(:,:,:,1) +INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata +INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_cloud_ice_processes from do_cldice to GFS_Control%do_cldice +INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata +DEBUG: Updating local name of variable GFS_stateout_type_instance from Stateout to GFS_Data(cdata%blk_no)%Stateout +INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata +DEBUG: Updating local name of variable flag_for_resetting_radar_reflectivity_calculation from radar_reset to GFS_Interstitial(cdata%thrd_no)%radar_reset +INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable snow_freezing_rain_upward_latent_heat_flux from snohf to GFS_Interstitial(cdata%thrd_no)%snohf +INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable frequency_for_shortwave_radiation from fhswr to GFS_Control%fhswr +INFO: Converting local name nthreads of variable omp_threads from new to old metadata +DEBUG: Updating local name of variable omp_threads from nthreads to GFS_Control%nthreads +INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata +DEBUG: Updating local name of variable number_of_chemical_tracers_for_diagnostics from ntchmdiag to GFS_Data(cdata%blk_no)%Intdiag%ntchmdiag +INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_friendly_aerosol_number_concentration_updated_by_physics from gq0(:,:,index_for_water_friendly_aerosols) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntwa) +INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_vapor_specific_humidity_save from save_q(:,:,index_for_water_vapor) to GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) +INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_cloud_water from edmf_qc to GFS_Data(cdata%blk_no)%Intdiag%edmf_qc +INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata +DEBUG: Updating local name of variable water_storage_in_aquifer_and_saturated_soil from wtxy to GFS_Data(cdata%blk_no)%Sfcprop%wtxy +INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable cloud_liquid_water_mixing_ratio from qc_r to GFS_Interstitial(cdata%thrd_no)%qc_r +INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata +DEBUG: Updating local name of variable time_scale_for_rayleigh_damping from ral_ts to GFS_Control%ral_ts +INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata +DEBUG: Updating local name of variable diag_ugwp_flag from ldiag_ugwp to GFS_Control%ldiag_ugwp +INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata +DEBUG: Updating local name of variable cloud_top_entrainment_instability_value from ctei_r to GFS_Interstitial(cdata%thrd_no)%ctei_r +INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from nlwsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%nlwsfci_cpl +INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata +DEBUG: Updating local name of variable surface_specific_humidity_over_land from qss_land to GFS_Interstitial(cdata%thrd_no)%qss_land +INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +DEBUG: Updating local name of variable perturbation_of_heat_to_momentum_roughness_length_ratio from zt1d to GFS_Interstitial(cdata%thrd_no)%zt1d +INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable thickness_at_Lagrangian_surface from delz to CCPP_interstitial%delz +INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata +DEBUG: Updating local name of variable integrated_y_momentum_flux_from_form_drag from dvsfc_fd to GFS_Data(cdata%blk_no)%Intdiag%dvsfc_fd +INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata +DEBUG: Updating local name of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from totprcpb to GFS_Data(cdata%blk_no)%Intdiag%totprcpb +INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata +DEBUG: Updating local name of variable sea_land_ice_mask_cice from islmsk_cice to GFS_Interstitial(cdata%thrd_no)%islmsk_cice +INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata +DEBUG: Updating local name of variable tendency_of_ice_friendly_aerosols_at_surface from nifa2d to GFS_Data(cdata%blk_no)%Coupling%nifa2d +INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata +DEBUG: Updating local name of variable number_of_coefficients_in_ozone_forcing_data_plus_five from oz_coeffp5 to GFS_Interstitial(cdata%thrd_no)%oz_coeffp5 +INFO: Converting local name rrtmgp_nBandsSW of variable number_of_sw_bands_rrtmgp from new to old metadata +DEBUG: Updating local name of variable number_of_sw_bands_rrtmgp from rrtmgp_nBandsSW to GFS_Control%rrtmgp_nBandsSW +INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata +INFO: Converting local name fhour of variable forecast_time from new to old metadata +DEBUG: Updating local name of variable forecast_time from fhour to GFS_Control%fhour +INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_temperature_due_to_deep_convection from dt3dt(:,:,4) to GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,4) +INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata +DEBUG: Updating local name of variable flag_for_soil_and_snow_temperature_time_stepping_option from iopt_stc to GFS_Control%iopt_stc +INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata +DEBUG: Updating local name of variable bulk_richardson_number_at_lowest_model_level from rb to GFS_Interstitial(cdata%thrd_no)%rb +INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +DEBUG: Updating local name of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from visdfui to GFS_Data(cdata%blk_no)%Coupling%visdfui +INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from iovr_lw to GFS_Control%iovr_lw +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata +DEBUG: Updating local name of variable weights_for_stochastic_sppt_perturbation_flipped from sppt_wts to GFS_Data(cdata%blk_no)%Intdiag%sppt_wts +INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata +DEBUG: Updating local name of variable number_of_aerosol_bands_for_shortwave_radiation from nbdsw to GFS_Interstitial(cdata%thrd_no)%nbdsw +INFO: Converting local name proflw_type of variable proflw_type from new to old metadata +INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata +DEBUG: Updating local name of variable surface_friction_velocity from uustar to GFS_Data(cdata%blk_no)%Sfcprop%uustar +INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata +DEBUG: Updating local name of variable flag_nonzero_land_surface_fraction from dry to GFS_Interstitial(cdata%thrd_no)%dry +INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata +DEBUG: Updating local name of variable bounded_vegetation_area_fraction from sigmaf to GFS_Interstitial(cdata%thrd_no)%sigmaf +INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata +DEBUG: Updating local name of variable fraction_of_rain_water_cloud from f_rain to GFS_Interstitial(cdata%thrd_no)%f_rain +INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata +DEBUG: Updating local name of variable time_integral_of_x_stress_due_to_gravity_wave_drag from dugwd to GFS_Data(cdata%blk_no)%Intdiag%dugwd +INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from dnirdfi_cpl to GFS_Data(cdata%blk_no)%Coupling%dnirdfi_cpl +INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable vertical_dimension_for_cappa_at_Lagrangian_surface from npzcappa to CCPP_interstitial%npzcappa +INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata +DEBUG: Updating local name of variable volume_mixing_ratio_co2 from gasvmr(:,:,1) to GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,1) +INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_y_momentum_flux from dvsfc1 to GFS_Interstitial(cdata%thrd_no)%dvsfc1 +INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata +DEBUG: Updating local name of variable accumulated_water_equivalent_of_frozen_precip from acsnow to GFS_Data(cdata%blk_no)%Sfcprop%acsnow +INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_friction_velocity_over_ocean from uustar_ocean to GFS_Interstitial(cdata%thrd_no)%uustar_ocean +INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_latent_heat_flux_for_diag from dqsfci to GFS_Data(cdata%blk_no)%Intdiag%dqsfci +INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata +DEBUG: Updating local name of variable gas_constants_for_multi_gases_physics from rilist to CCPP_interstitial%rilist +INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata +DEBUG: Updating local name of variable vegetation_type_classification_real from vtype to GFS_Data(cdata%blk_no)%Sfcprop%vtype +INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata +DEBUG: Updating local name of variable water_equivalent_accumulated_snow_depth_over_ocean from weasd_ocean to GFS_Interstitial(cdata%thrd_no)%weasd_ocean +INFO: Converting local name lw_optical_props_clouds of variable longwave_optical_properties_for_cloudy_atmosphere from new to old metadata +DEBUG: Updating local name of variable longwave_optical_properties_for_cloudy_atmosphere from lw_optical_props_clouds to GFS_Interstitial(cdata%thrd_no)%lw_optical_props_clouds +INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata +DEBUG: Updating local name of variable sw_fluxes_sfc from sfcfsw to GFS_Data(cdata%blk_no)%Radtend%sfcfsw +INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata +DEBUG: Updating local name of variable surface_albedo_due_to_UV_and_VIS_diffused from sfcalb(:,4) to GFS_Interstitial(cdata%thrd_no)%sfcalb(:,4) +INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata +DEBUG: Updating local name of variable convective_cloud_volume_fraction from clcn to GFS_Interstitial(cdata%thrd_no)%clcn +INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata +DEBUG: Updating local name of variable deep_soil_temperature from tg3 to GFS_Data(cdata%blk_no)%Sfcprop%tg3 +INFO: Converting local name phil of variable geopotential from new to old metadata +DEBUG: Updating local name of variable geopotential from phil to GFS_Data(cdata%blk_no)%Statein%phil +INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata +DEBUG: Updating local name of variable flag_for_frozen_soil_physics from flag_frsoil to GFS_Data(cdata%blk_no)%Sfcprop%flag_frsoil +INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata +DEBUG: Updating local name of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from betas_deep to GFS_Control%betas_deep +INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_upward_sensible_heat_flux from dtsfc1 to GFS_Interstitial(cdata%thrd_no)%dtsfc1 +INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_longwave_emissivity_over_ice_interstitial from semis_ice to GFS_Interstitial(cdata%thrd_no)%semis_ice +INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata +DEBUG: Updating local name of variable lake_area_fraction from lakefrac to GFS_Data(cdata%blk_no)%Sfcprop%lakefrac +INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from faerlw(:,:,:,3) to GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,3) +INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable humidity_mixing_ratio from qv_r to GFS_Interstitial(cdata%thrd_no)%qv_r +INFO: Converting local name coszdg of variable daytime_mean_cosz_over_rad_call_period from new to old metadata +DEBUG: Updating local name of variable daytime_mean_cosz_over_rad_call_period from coszdg to GFS_Data(cdata%blk_no)%Radtend%coszdg +INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata +DEBUG: Updating local name of variable h2o_forcing from h2opl to GFS_Data(cdata%blk_no)%Tbd%h2opl +INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata +DEBUG: Updating local name of variable number_of_latitude_points from latr to GFS_Control%latr +INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata +DEBUG: Updating local name of variable surface_snow_melt from snowmt to GFS_Interstitial(cdata%thrd_no)%snowmt +DEBUG: Variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d was in old metadata format and has already been converted +INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata +DEBUG: Updating local name of variable convective_updraft_area_fraction from sigmafrac to GFS_Interstitial(cdata%thrd_no)%sigmafrac +INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata +DEBUG: Updating local name of variable flag_for_reduced_drag_coefficient_over_sea from redrag to GFS_Control%redrag +INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata +DEBUG: Updating local name of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from cnvprcpb to GFS_Data(cdata%blk_no)%Intdiag%cnvprcpb +DEBUG: Variable ccpp_block_number was in old metadata format and has already been converted +INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata +DEBUG: Updating local name of variable emdf_updraft_area from edmf_a to GFS_Data(cdata%blk_no)%Intdiag%edmf_a +INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata +DEBUG: Updating local name of variable sea_surface_reference_temperature from tref to GFS_Data(cdata%blk_no)%Sfcprop%tref +INFO: Converting local name sw_file_clouds of variable rrtmgp_coeff_sw_cloud_optics from new to old metadata +DEBUG: Updating local name of variable rrtmgp_coeff_sw_cloud_optics from sw_file_clouds to GFS_Control%sw_file_clouds +INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata +DEBUG: Updating local name of variable total_cloud_condensate_mixing_ratio_updated_by_physics from cwm to GFS_Interstitial(cdata%thrd_no)%cwm +INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata +DEBUG: Updating local name of variable integrated_y_momentum_flux_from_small_scale_gwd from dvsfc_ss to GFS_Data(cdata%blk_no)%Intdiag%dvsfc_ss +INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable virtual_temperature_at_Lagrangian_surface from pt to CCPP_interstitial%pt +INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from keepsmfr to GFS_Data(cdata%blk_no)%Sfcprop%keepsmfr +INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_over_ocean_interstitial from tsfc_ocean to GFS_Interstitial(cdata%thrd_no)%tsfc_ocean +INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +DEBUG: Updating local name of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from bl_upfr to GFS_Control%bl_upfr +INFO: Converting local name sw_optical_props_clrsky of variable shortwave_optical_properties_for_clear_sky from new to old metadata +DEBUG: Updating local name of variable shortwave_optical_properties_for_clear_sky from sw_optical_props_clrsky to GFS_Interstitial(cdata%thrd_no)%sw_optical_props_clrsky +INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable depth_of_soil_levels_for_land_surface_model from zs to GFS_Data(cdata%blk_no)%Sfcprop%zs +INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_noahmp_land_surface_scheme from lsm_noahmp to GFS_Control%lsm_noahmp +INFO: Converting local name cldtausw of variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band from new to old metadata +DEBUG: Updating local name of variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band from cldtausw to GFS_Interstitial(cdata%thrd_no)%cldtausw +INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata +DEBUG: Updating local name of variable flag_for_aerosol_input_MG_radiation from iaerclm to GFS_Control%iaerclm +INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata +DEBUG: Updating local name of variable date_and_time_at_model_initialization from idat to GFS_Control%idat +INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata +DEBUG: Updating local name of variable flag_for_global_cellular_automata from ca_global to GFS_Control%ca_global +INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata +DEBUG: Updating local name of variable flag_for_soil_moisture_factor_stomatal_resistance_option from iopt_btr to GFS_Control%iopt_btr +INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata +DEBUG: Updating local name of variable surface_exchange_coefficient_for_moisture_at_2m from cqs2 to GFS_Data(cdata%blk_no)%Sfcprop%cqs2 +INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata +DEBUG: Updating local name of variable threshold_for_perturbed_vertical_velocity from nthresh to GFS_Control%nthresh +INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata +DEBUG: Updating local name of variable normalized_soil_wetness_for_land_surface_model from wetness to GFS_Data(cdata%blk_no)%Sfcprop%wetness +INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata +DEBUG: Variable index_for_ozone was in old metadata format and has already been converted +DEBUG: Updating local name of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from dqdt(:,:,index_for_ozone) to GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntoz) +INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata +DEBUG: Variable index_for_rain_number_concentration was in old metadata format and has already been converted +DEBUG: Updating local name of variable rain_number_concentration_updated_by_physics from gq0(:,:,index_for_rain_number_concentration) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntrnc) +INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata +DEBUG: Updating local name of variable pressure_thickness_at_Lagrangian_surface from delp to CCPP_interstitial%delp +INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_ice_amount_from_previous_timestep from iceprv to GFS_Data(cdata%blk_no)%Sfcprop%iceprv +INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata +DEBUG: Updating local name of variable diurnal_thermocline_layer_x_current from xu to GFS_Data(cdata%blk_no)%Sfcprop%xu +INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata +DEBUG: Updating local name of variable surface_upward_potential_latent_heat_flux_over_land from ep1d_land to GFS_Interstitial(cdata%thrd_no)%ep1d_land +INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata +DEBUG: Updating local name of variable vegetation_area_fraction from vfrac to GFS_Data(cdata%blk_no)%Sfcprop%vfrac +INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata +DEBUG: Updating local name of variable tendency_of_vertically_diffused_tracer_concentration from dvdftra to GFS_Interstitial(cdata%thrd_no)%dvdftra +INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_dust_emission_flux from duem to GFS_Data(cdata%blk_no)%Intdiag%duem +INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata +DEBUG: Updating local name of variable pressure_cutoff_for_rayleigh_damping from prslrd0 to GFS_Control%prslrd0 +INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata +DEBUG: Updating local name of variable specific_humidity_at_2m from q2m to GFS_Data(cdata%blk_no)%Sfcprop%q2m +INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata +DEBUG: Updating local name of variable local_snow_water_mixing_ratio from qsnw to GFS_Interstitial(cdata%thrd_no)%qsnw +INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata +DEBUG: Updating local name of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from dlwsfci_cpl to GFS_Data(cdata%blk_no)%Coupling%dlwsfci_cpl +INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata +DEBUG: Updating local name of variable surface_drag_coefficient_for_momentum_for_noahmp from cmxy to GFS_Data(cdata%blk_no)%Sfcprop%cmxy +INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata +DEBUG: Updating local name of variable mg_flag_for_graupel from mg_do_graupel to GFS_Control%mg_do_graupel +INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata +DEBUG: Updating local name of variable diurnal_thermocline_layer_thickness from xz to GFS_Data(cdata%blk_no)%Sfcprop%xz +INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata +DEBUG: Updating local name of variable surface_air_pressure_at_previous_time_step from phy_f2d(:,2) to GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,2) +INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata +DEBUG: Updating local name of variable shoc_implicit_TKE_integration_uncentering_term from shoc_parm(4) to GFS_Control%shoc_parm(4) +INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata +INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata +DEBUG: Updating local name of variable surface_longwave_emissivity from semis to GFS_Data(cdata%blk_no)%Radtend%semis +INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata +DEBUG: Updating local name of variable kinematic_surface_upward_latent_heat_flux_over_ice from evap_ice to GFS_Interstitial(cdata%thrd_no)%evap_ice +INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata +DEBUG: Updating local name of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from dq3dt(:,:,4) to GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,4) +INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata +DEBUG: Updating local name of variable number_of_timesteps_between_surface_cycling_calls from nscyc to GFS_Control%nscyc +INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata +DEBUG: Updating local name of variable maximum_temperature_at_2m from tmpmax to GFS_Data(cdata%blk_no)%Intdiag%tmpmax +INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata +DEBUG: Updating local name of variable dewpoint_temperature_at_2m from dpt2m to GFS_Data(cdata%blk_no)%Intdiag%dpt2m +INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata +DEBUG: Updating local name of variable Monin_Obukhov_similarity_function_for_heat_over_land from ffhh_land to GFS_Interstitial(cdata%thrd_no)%ffhh_land +INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata +DEBUG: Updating local name of variable critical_relative_humidity_at_top_of_atmosphere from crtrh(3) to GFS_Control%crtrh(3) +INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_after_iteration_over_ocean from tsurf_ocean to GFS_Interstitial(cdata%thrd_no)%tsurf_ocean +INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata +DEBUG: Updating local name of variable y_momentum_tendency_from_small_scale_gwd from dtauy2d_ss to GFS_Data(cdata%blk_no)%Intdiag%dtauy2d_ss +INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata +DEBUG: Updating local name of variable maximum_updraft_velocity_at_cloud_base from wcbmax to GFS_Interstitial(cdata%thrd_no)%wcbmax +INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata +DEBUG: Updating local name of variable aerosol_aware_parameter_shallow_convection from asolfac_shal to GFS_Control%asolfac_shal +INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata +DEBUG: Updating local name of variable flag_skip_macro from skip_macro to GFS_Interstitial(cdata%thrd_no)%skip_macro +INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata +DEBUG: Updating local name of variable surface_drag_wind_speed_for_momentum_in_air from cmm to GFS_Data(cdata%blk_no)%Intdiag%cmm +INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata +DEBUG: Updating local name of variable flag_for_ruc_land_surface_scheme from lsm_ruc to GFS_Control%lsm_ruc +INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata +DEBUG: Updating local name of variable instantaneous_atmosphere_detrainment_convective_mass_flux from dt_mf to GFS_Interstitial(cdata%thrd_no)%dt_mf +INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata +DEBUG: Variable index_for_water_vapor was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_vapor_specific_humidity_updated_by_physics from gq0(:,:,index_for_water_vapor) to GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) +DEBUG: Variable profsw_type is in old metadata format, no conversion necessary +INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +DEBUG: Updating local name of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from faersw(:,:,:,3) to GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,3) +INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata +DEBUG: Variable index_for_water_friendly_aerosols was in old metadata format and has already been converted +DEBUG: Updating local name of variable water_friendly_aerosol_number_concentration from qgrs(:,:,index_for_water_friendly_aerosols) to GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntwa) +INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata +INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata +DEBUG: Updating local name of variable lwe_thickness_of_graupel_amount_from_previous_timestep from graupelprv to GFS_Data(cdata%blk_no)%Sfcprop%graupelprv +INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata +INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata +DEBUG: Updating local name of variable surface_specific_humidity from qss to GFS_Interstitial(cdata%thrd_no)%qss +INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata +DEBUG: Updating local name of variable surface_skin_temperature_over_land from tsfcl to GFS_Data(cdata%blk_no)%Sfcprop%tsfcl +INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata +DEBUG: Updating local name of variable mean_effective_radius_for_snow_flake from clouds(:,:,9) to GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) +INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata +DEBUG: Updating local name of variable wind_speed_at_lowest_model_layer from wind to GFS_Interstitial(cdata%thrd_no)%wind +INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata +DEBUG: Updating local name of variable soil_upward_latent_heat_flux from evbs to GFS_Interstitial(cdata%thrd_no)%evbs +INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata +DEBUG: Updating local name of variable tracer_concentration_save from save_q to GFS_Interstitial(cdata%thrd_no)%save_q +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Parsing metadata tables in physics scheme files ... +DEBUG: Parsing file rayleigh_damp.f with registry OrderedDict([('rayleigh_damp', {'rayleigh_damp': {'rayleigh_damp_finalize': [118, 119], 'rayleigh_damp_init': [8, 9], 'rayleigh_damp_run': [22, 114]}})]) +DEBUG: Skipping blank table rayleigh_damp_finalize +DEBUG: Skipping blank table rayleigh_damp_init +DEBUG: Module name: rayleigh_damp +DEBUG: Scheme name: rayleigh_damp +DEBUG: Variables in subroutine rayleigh_damp_finalize: +DEBUG: Variables in subroutine rayleigh_damp_init: +DEBUG: Variables in subroutine rayleigh_damp_run: flag_idealized_physics, horizontal_loop_extent, horizontal_dimension, vertical_dimension, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, x_wind, y_wind, time_step_for_physics, specific_heat_of_dry_air_at_constant_pressure, number_of_vertical_layers_for_radiation_calculations, surface_air_pressure, air_pressure, pressure_cutoff_for_rayleigh_damping, time_scale_for_rayleigh_damping, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file sfc_ocean.F with registry OrderedDict([('sfc_ocean', {'sfc_ocean': {'sfc_ocean_finalize': [16, 17], 'sfc_ocean_init': [12, 13], 'sfc_ocean_run': [24, 139]}})]) +DEBUG: Skipping blank table sfc_ocean_finalize +DEBUG: Skipping blank table sfc_ocean_init +DEBUG: Module name: sfc_ocean +DEBUG: Scheme name: sfc_ocean +DEBUG: Variables in subroutine sfc_ocean_finalize: +DEBUG: Variables in subroutine sfc_ocean_init: +DEBUG: Variables in subroutine sfc_ocean_run: horizontal_loop_extent, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, latent_heat_of_vaporization_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, surface_air_pressure, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, surface_skin_temperature_over_ocean_interstitial, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, flag_nonzero_wet_surface_fraction, wind_speed_at_lowest_model_layer, flag_for_iteration, surface_specific_humidity_over_ocean, surface_drag_wind_speed_for_momentum_in_air_over_ocean, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean, upward_heat_flux_in_soil_over_ocean, kinematic_surface_upward_latent_heat_flux_over_ocean, kinematic_surface_upward_sensible_heat_flux_over_ocean, surface_upward_potential_latent_heat_flux_over_ocean, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file rrtmg_lw_post.F90 with registry OrderedDict([('rrtmg_lw_post', {'rrtmg_lw_post': {'rrtmg_lw_post_init': [8, 9], 'rrtmg_lw_post_run': [16, 64], 'rrtmg_lw_post_finalize': [67, 68]}})]) +DEBUG: Skipping blank table rrtmg_lw_post_init +DEBUG: Skipping blank table rrtmg_lw_post_finalize +DEBUG: Module name: rrtmg_lw_post +DEBUG: Scheme name: rrtmg_lw_post +DEBUG: Variables in subroutine rrtmg_lw_post_init: +DEBUG: Variables in subroutine rrtmg_lw_post_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_radtend_type_instance, GFS_coupling_type_instance, horizontal_loop_extent, extra_top_layer, number_of_vertical_layers_for_radiation_calculations, vertical_index_difference_between_inout_and_local, surface_air_temperature_for_radiation, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmg_lw_post_finalize: +DEBUG: Parsing file rrtmgp_sw_cloud_optics.F90 with registry OrderedDict([('rrtmgp_sw_cloud_optics', {'rrtmgp_sw_cloud_optics': {'rrtmgp_sw_cloud_optics_run': [226, 292], 'rrtmgp_sw_cloud_optics_finalize': [296, 297], 'rrtmgp_sw_cloud_optics_init': [19, 219]}})]) +DEBUG: Module name: rrtmgp_sw_cloud_optics +DEBUG: Scheme name: rrtmgp_sw_cloud_optics +DEBUG: Variables in subroutine rrtmgp_sw_cloud_optics_run: flag_to_calc_sw, horizontal_loop_extent, vertical_dimension, rrtmgp_cloud_optics_flag, number_of_rrtmgp_ice_roughness, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_snow_water_path, mean_effective_radius_for_snow_flake, cloud_rain_water_path, mean_effective_radius_for_rain_drop, coefficients_for_sw_cloud_optics, coefficients_for_sw_gas_optics, daytime_points_dimension, daytime_points, shortwave_optical_properties_for_cloudy_atmosphere_by_band, RRTMGP_cloud_optical_depth_layers_at_0_55mu_band, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmgp_sw_cloud_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_sw_cloud_optics_init: rrtmgp_cloud_optics_flag, number_of_rrtmgp_ice_roughness, coefficients_for_sw_cloud_optics, ccpp_error_message, ccpp_error_flag, directory_for_rte_rrtmgp_source_code, rrtmgp_coeff_sw_cloud_optics, mpi_rank, mpi_root, mpi_comm +DEBUG: Parsing file GFS_rrtmg_pre.F90 with registry OrderedDict([('GFS_rrtmg_pre', {'GFS_rrtmg_pre': {'GFS_rrtmg_pre_finalize': [628, 629], 'GFS_rrtmg_pre_init': [9, 10], 'GFS_rrtmg_pre_run': [16, 625]}})]) +DEBUG: Skipping blank table GFS_rrtmg_pre_finalize +DEBUG: Skipping blank table GFS_rrtmg_pre_init +DEBUG: Module name: GFS_rrtmg_pre +DEBUG: Scheme name: GFS_rrtmg_pre +DEBUG: Variables in subroutine GFS_rrtmg_pre_finalize: +DEBUG: Variables in subroutine GFS_rrtmg_pre_init: +DEBUG: Variables in subroutine GFS_rrtmg_pre_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_sfcprop_type_instance, GFS_statein_type_instance, GFS_tbd_type_instance, GFS_cldprop_type_instance, GFS_coupling_type_instance, GFS_radtend_type_instance, fraction_of_ice_water_cloud, fraction_of_rain_water_cloud, rime_factor, minimum_large_ice_fraction, total_cloud_condensate_mixing_ratio_updated_by_physics, number_of_vertical_layers_for_radiation_calculations, horizontal_loop_extent, adjusted_vertical_layer_dimension_for_radiation, adjusted_vertical_level_dimension_for_radiation, vertical_index_difference_between_inout_and_local, vertical_index_difference_between_layer_and_upper_bound, vertical_index_difference_between_layer_and_lower_bound, time_step_for_radiation, layer_pressure_thickness_for_radiation, layer_thickness_for_radiation, air_pressure_at_interface_for_radiation_in_hPa, air_pressure_at_layer_for_radiation_in_hPa, air_temperature_at_interface_for_radiation, air_temperature_at_layer_for_radiation, surface_ground_temperature_for_radiation, surface_air_temperature_for_radiation, water_vapor_specific_humidity_at_layer_for_radiation, ozone_concentration_at_layer_for_radiation, volume_mixing_ratio_co2, volume_mixing_ratio_n2o, volume_mixing_ratio_ch4, volume_mixing_ratio_o2, volume_mixing_ratio_co, volume_mixing_ratio_cfc11, volume_mixing_ratio_cfc12, volume_mixing_ratio_cfc22, volume_mixing_ratio_ccl4, volume_mixing_ratio_cfc113, aerosol_optical_depth_for_shortwave_bands_01_16, aerosol_single_scattering_albedo_for_shortwave_bands_01_16, aerosol_asymmetry_parameter_for_shortwave_bands_01_16, aerosol_optical_depth_for_longwave_bands_01_16, aerosol_single_scattering_albedo_for_longwave_bands_01_16, aerosol_asymmetry_parameter_for_longwave_bands_01_16, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_rain_water_path, mean_effective_radius_for_rain_drop, cloud_snow_water_path, mean_effective_radius_for_snow_flake, cloud_area_fraction_for_radiation, model_layer_number_at_cloud_top, model_layer_number_at_cloud_base, cloud_decorrelation_length, surface_albedo_perturbation, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file ysuvdif.F90 with registry OrderedDict([('ysuvdif', {'ysuvdif': {'ysuvdif_finalize': [13, 14], 'ysuvdif_init': [11, 12], 'ysuvdif_run': [23, 967]}})]) +DEBUG: Module name: ysuvdif +DEBUG: Scheme name: ysuvdif +DEBUG: Variables in subroutine ysuvdif_finalize: +DEBUG: Variables in subroutine ysuvdif_init: +DEBUG: Variables in subroutine ysuvdif_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, x_wind, y_wind, air_temperature, tracer_concentration, air_pressure, air_pressure_at_interface, dimensionless_exner_function_at_model_layers, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_tracers_due_to_model_physics, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, number_of_tracers, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, geopotential_at_interface, geopotential, surface_air_pressure, surface_roughness_length, surface_wind_stress, atmosphere_boundary_layer_thickness, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, sea_land_ice_mask, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, wind_speed_at_lowest_model_layer, bulk_richardson_number_at_lowest_model_level, gravitational_acceleration, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ratio_of_dry_air_to_water_vapor_gas_constants, latent_heat_of_vaporization_of_water_at_0C, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, time_step_for_physics, vertical_index_at_top_of_atmosphere_boundary_layer, x_wind_at_10m, y_wind_at_10m, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file cu_gf_driver_post.F90 with registry OrderedDict([('cu_gf_driver_post', {'cu_gf_driver_post': {'cu_gf_driver_post_init': [7, 8], 'cu_gf_driver_post_run': [14, 41], 'cu_gf_driver_post_finalize': [9, 10]}})]) +DEBUG: Module name: cu_gf_driver_post +DEBUG: Scheme name: cu_gf_driver_post +DEBUG: Variables in subroutine cu_gf_driver_post_init: +DEBUG: Variables in subroutine cu_gf_driver_post_run: horizontal_loop_extent, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, temperature_from_previous_timestep, moisture_from_previous_timestep, conv_activity_counter, gf_memory_counter, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cu_gf_driver_post_finalize: +DEBUG: Parsing file sfc_diag_post.F90 with registry OrderedDict([('sfc_diag_post', {'sfc_diag_post': {'sfc_diag_post_init': [4, 5], 'sfc_diag_post_run': [13, 59], 'sfc_diag_post_finalize': [6, 7]}})]) +DEBUG: Module name: sfc_diag_post +DEBUG: Scheme name: sfc_diag_post +DEBUG: Variables in subroutine sfc_diag_post_init: +DEBUG: Variables in subroutine sfc_diag_post_run: horizontal_loop_extent, flag_for_land_surface_scheme, flag_for_noahmp_land_surface_scheme, flag_nonzero_land_surface_fraction, flag_diagnostics, time_step_for_dynamics, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, surface_air_pressure, temperature_at_2m_from_noahmp, specific_humidity_at_2m_from_noahmp, temperature_at_2m, specific_humidity_at_2m, x_wind_at_10m, y_wind_at_10m, minimum_temperature_at_2m, maximum_temperature_at_2m, minimum_specific_humidity_at_2m, maximum_specific_humidity_at_2m, maximum_wind_at_10m, maximum_x_wind_at_10m, maximum_y_wind_at_10m, dewpoint_temperature_at_2m, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine sfc_diag_post_finalize: +DEBUG: Parsing file sfc_noahmp_drv.f with registry OrderedDict([('noahmpdrv', {'noahmpdrv': {'noahmpdrv_finalize': [31, 32], 'noahmpdrv_run': [56, 715], 'noahmpdrv_init': [19, 30]}})]) +DEBUG: Module name: noahmpdrv +DEBUG: Scheme name: noahmpdrv +DEBUG: Variables in subroutine noahmpdrv_finalize: +DEBUG: Variables in subroutine noahmpdrv_run: horizontal_dimension, soil_vertical_dimension, index_of_time_step, surface_air_pressure, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, soil_type_classification, vegetation_type_classification, bounded_vegetation_area_fraction, surface_longwave_emissivity_over_land_interstitial, surface_downwelling_longwave_flux_absorbed_by_ground_over_land, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, time_step_for_dynamics, deep_soil_temperature, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, height_above_ground_at_lowest_model_layer, flag_nonzero_land_surface_fraction, wind_speed_at_lowest_model_layer, surface_slope_classification, minimum_vegetation_area_fraction, maximum_vegetation_area_fraction, upper_bound_on_max_albedo_over_deep_snow, surface_diffused_shortwave_albedo, flag_for_iteration, flag_for_guess_run, flag_for_dynamic_vegetation_option, flag_for_canopy_stomatal_resistance_option, flag_for_soil_moisture_factor_stomatal_resistance_option, flag_for_runoff_and_groundwater_option, flag_for_surface_layer_drag_coefficient_option, flag_for_supercooled_liquid_water_option, flag_for_frozen_soil_permeability_option, flag_for_radiation_transfer_option, flag_for_ground_snow_surface_albedo_option, flag_for_precipitation_partition_option, flag_for_lower_boundary_soil_temperature_option, flag_for_soil_and_snow_temperature_time_stepping_option, latitude, instantaneous_cosine_of_zenith_angle, number_of_days_in_year, julian_day, explicit_rainfall_rate_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, latent_heat_of_vaporization_of_water_at_0C, specific_heat_of_dry_air_at_constant_pressure, joules_per_calorie_constant, liquid_water_density, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gas_constant_dry_air, latent_heat_of_fusion_of_water_at_0C, water_equivalent_accumulated_snow_depth_over_land, surface_snow_thickness_water_equivalent_over_land, surface_skin_temperature_over_land_interstitial, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land, flag_for_precipitation_type, volume_fraction_of_soil_moisture, soil_temperature, volume_fraction_of_unfrozen_soil_moisture, canopy_water_amount, transpiration_flux, surface_skin_temperature_after_iteration_over_land, surface_roughness_length_over_land_interstitial, number_of_snow_layers, vegetation_temperature, ground_temperature_for_noahmp, canopy_intercepted_ice_mass, canopy_intercepted_liquid_water, canopy_air_vapor_pressure, canopy_air_temperature, surface_drag_coefficient_for_momentum_for_noahmp, surface_drag_coefficient_for_heat_and_moisture_for_noahmp, area_fraction_of_wet_canopy, snow_mass_at_previous_time_step, snow_albedo_at_previous_time_step, snow_precipitation_rate_at_surface, lake_water_storage, water_table_depth, water_storage_in_aquifer, water_storage_in_aquifer_and_saturated_soil, snow_temperature, layer_bottom_depth_from_snow_surface, snow_layer_ice, snow_layer_liquid_water, leaf_mass, fine_root_mass, stem_mass, wood_mass, slow_soil_pool_mass_content_of_carbon, fast_soil_pool_mass_content_of_carbon, leaf_area_index, stem_area_index, nondimensional_snow_age, equilibrium_soil_water_content, soil_water_content_between_soil_bottom_and_water_table, water_table_recharge_when_deep, water_table_recharge_when_shallow, surface_snow_area_fraction_over_land, surface_specific_humidity_over_land, upward_heat_flux_in_soil_over_land, subsurface_runoff_flux, kinematic_surface_upward_latent_heat_flux_over_land, kinematic_surface_upward_sensible_heat_flux_over_land, surface_upward_potential_latent_heat_flux_over_land, surface_runoff_flux, surface_drag_wind_speed_for_momentum_in_air_over_land, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land, soil_upward_latent_heat_flux, canopy_upward_latent_heat_flux, snow_deposition_sublimation_upward_latent_heat_flux, surface_snow_area_fraction, soil_moisture_content, snow_freezing_rain_upward_latent_heat_flux, volume_fraction_of_condensed_water_in_soil_at_wilting_point, threshold_volume_fraction_of_condensed_water_in_soil, normalized_soil_wetness, temperature_at_2m_from_noahmp, specific_humidity_at_2m_from_noahmp, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine noahmpdrv_init: ccpp_error_message, ccpp_error_flag, mpi_rank, soil_type_dataset_choice, vegetation_type_dataset_choice, iounit_namelist +DEBUG: Parsing file mp_fer_hires.F90 with registry OrderedDict([('mp_fer_hires', {'mp_fer_hires': {'mp_fer_hires_run': [87, 304], 'mp_fer_hires_init': [20, 81], 'mp_fer_hires_finalize': [307, 308]}})]) +DEBUG: Skipping blank table mp_fer_hires_finalize +DEBUG: Module name: mp_fer_hires +DEBUG: Scheme name: mp_fer_hires +DEBUG: Variables in subroutine mp_fer_hires_run: horizontal_loop_extent, vertical_dimension, time_step_for_physics, flag_for_individual_cloud_species_advected, sea_land_ice_mask_real, air_pressure_at_interface, air_pressure, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, total_cloud_condensate_mixing_ratio_updated_by_physics, accumulated_change_of_air_temperature_due_to_FA_scheme, ratio_of_snowfall_to_rainfall, fraction_of_ice_water_cloud, fraction_of_rain_water_cloud, rime_factor, cloud_condensed_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, mass_weighted_rime_factor_updated_by_physics, lwe_thickness_of_explicit_precipitation_amount, mpi_rank, mpi_root, omp_threads, radar_reflectivity_10cm, fa_threshold_relative_humidity_for_onset_of_condensation, cell_size, minimum_value_of_specific_humidity, gas_constant_dry_air, ratio_of_vapor_to_dry_air_gas_constants_minus_one, specific_heat_of_dry_air_at_constant_pressure, gravitational_acceleration, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mp_fer_hires_init: horizontal_loop_extent, vertical_dimension, time_step_for_physics, fraction_of_ice_water_cloud, fraction_of_rain_water_cloud, rime_factor, mpi_rank, mpi_root, omp_threads, ccpp_error_message, ccpp_error_flag, flag_for_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, flag_for_restart, mpi_comm +DEBUG: Variables in subroutine mp_fer_hires_finalize: +DEBUG: Parsing file GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 499]}}), ('GFS_interstitialtoscreen', {}), ('GFS_abort', {}), ('GFS_checkland', {})]) +DEBUG: Module name: GFS_diagtoscreen +DEBUG: Scheme name: GFS_diagtoscreen +DEBUG: Variables in subroutine GFS_diagtoscreen_init: +DEBUG: Variables in subroutine GFS_diagtoscreen_finalize: +DEBUG: Variables in subroutine GFS_diagtoscreen_run: GFS_control_type_instance, GFS_statein_type_instance, GFS_stateout_type_instance, GFS_sfcprop_type_instance, GFS_coupling_type_instance, GFS_grid_type_instance, GFS_tbd_type_instance, GFS_cldprop_type_instance, GFS_radtend_type_instance, GFS_diag_type_instance, GFS_interstitial_type_instance, omp_threads, ccpp_block_number, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 499]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [667, 668], 'GFS_interstitialtoscreen_run': [672, 746], 'GFS_interstitialtoscreen_init': [665, 666]}}), ('GFS_abort', {}), ('GFS_checkland', {})]) +DEBUG: Module name: GFS_interstitialtoscreen +DEBUG: Scheme name: GFS_interstitialtoscreen +DEBUG: Variables in subroutine GFS_interstitialtoscreen_finalize: +DEBUG: Variables in subroutine GFS_interstitialtoscreen_run: GFS_control_type_instance, GFS_statein_type_instance, GFS_stateout_type_instance, GFS_sfcprop_type_instance, GFS_coupling_type_instance, GFS_grid_type_instance, GFS_tbd_type_instance, GFS_cldprop_type_instance, GFS_radtend_type_instance, GFS_diag_type_instance, GFS_interstitial_type_instance, omp_threads, ccpp_block_number, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_interstitialtoscreen_init: +DEBUG: Parsing file GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 499]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [667, 668], 'GFS_interstitialtoscreen_run': [672, 746], 'GFS_interstitialtoscreen_init': [665, 666]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [752, 753], 'GFS_abort_run': [759, 776], 'GFS_abort_finalize': [754, 755]}}), ('GFS_checkland', {})]) +DEBUG: Module name: GFS_abort +DEBUG: Scheme name: GFS_abort +DEBUG: Variables in subroutine GFS_abort_init: +DEBUG: Variables in subroutine GFS_abort_run: GFS_control_type_instance, ccpp_block_number, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_abort_finalize: +DEBUG: Parsing file GFS_debug.F90 with registry OrderedDict([('GFS_diagtoscreen', {'GFS_diagtoscreen': {'GFS_diagtoscreen_init': [26, 27], 'GFS_diagtoscreen_finalize': [28, 29], 'GFS_diagtoscreen_run': [33, 499]}}), ('GFS_interstitialtoscreen', {'GFS_interstitialtoscreen': {'GFS_interstitialtoscreen_finalize': [667, 668], 'GFS_interstitialtoscreen_run': [672, 746], 'GFS_interstitialtoscreen_init': [665, 666]}}), ('GFS_abort', {'GFS_abort': {'GFS_abort_init': [752, 753], 'GFS_abort_run': [759, 776], 'GFS_abort_finalize': [754, 755]}}), ('GFS_checkland', {'GFS_checkland': {'GFS_checkland_run': [789, 861], 'GFS_checkland_finalize': [784, 785], 'GFS_checkland_init': [782, 783]}})]) +DEBUG: Module name: GFS_checkland +DEBUG: Scheme name: GFS_checkland +DEBUG: Variables in subroutine GFS_checkland_run: ccpp_block_number, ccpp_error_message, ccpp_error_flag, mpi_rank, mpi_root, horizontal_loop_extent, index_of_time_step, ccpp_loop_counter, flag_for_iteration, flag_for_guess_run, flag_for_first_time_step, flag_for_restart, flag_for_fractional_grid, soil_type_dataset_choice, vegetation_type_dataset_choice, soil_type_classification_real, vegetation_type_classification_real, surface_slope_classification_real, soil_type_classification, vegetation_type_classification, surface_slope_classification, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, flag_nonzero_lake_surface_fraction, flag_nonzero_ocean_surface_fraction, sea_area_fraction, land_area_fraction, lake_area_fraction, sea_land_ice_mask_real, sea_land_ice_mask +DEBUG: Variables in subroutine GFS_checkland_finalize: +DEBUG: Variables in subroutine GFS_checkland_init: +DEBUG: Parsing file precpd.f with registry OrderedDict([('zhaocarr_precpd', {'zhaocarr_precpd': {'zhaocarr_precpd_init': [10, 11], 'zhaocarr_precpd_finalize': [682, 683], 'zhaocarr_precpd_run': [44, 678]}})]) +DEBUG: Skipping blank table zhaocarr_precpd_init +DEBUG: Skipping blank table zhaocarr_precpd_finalize +DEBUG: Module name: zhaocarr_precpd +DEBUG: Scheme name: zhaocarr_precpd +DEBUG: Variables in subroutine zhaocarr_precpd_init: +DEBUG: Variables in subroutine zhaocarr_precpd_finalize: +DEBUG: Variables in subroutine zhaocarr_precpd_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, time_step_for_physics, air_pressure_difference_between_midlayers, air_pressure, water_vapor_specific_humidity_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, air_temperature_updated_by_physics, lwe_thickness_of_explicit_precipitation_amount, ratio_of_snowfall_to_rainfall, tendency_of_rain_water_mixing_ratio_due_to_microphysics, critical_relative_humidity, coefficient_from_cloud_ice_to_snow, coefficient_from_cloud_water_to_rain, coefficient_for_evaporation_of_rainfall, cloud_condensed_water_conversion_threshold, grid_size_related_coefficient_used_in_scale_sensitive_schemes, flag_print, horizontal_index_of_printed_column, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file cs_conv.F90 with registry OrderedDict([('cs_conv_pre', {'cs_conv_pre': {'cs_conv_pre_run': [17, 55], 'cs_conv_pre_finalize': [10, 11], 'cs_conv_pre_init': [6, 7]}}), ('cs_conv_post', {}), ('cs_conv', {})]) +DEBUG: Skipping blank table cs_conv_pre_finalize +DEBUG: Skipping blank table cs_conv_pre_init +DEBUG: Module name: cs_conv_pre +DEBUG: Scheme name: cs_conv_pre +DEBUG: Variables in subroutine cs_conv_pre_run: horizontal_dimension, vertical_dimension, number_of_tracers, number_of_hydrometeors, water_vapor_specific_humidity_updated_by_physics, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, updraft_velocity_tunable_parameter_1_CS, updraft_velocity_tunable_parameter_2_CS, maximum_updraft_velocity_at_cloud_base, fraction_of_cloud_top_water_scavenged, fraction_of_tracer_scavenged, water_vapor_specific_humidity_save, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cs_conv_pre_finalize: +DEBUG: Variables in subroutine cs_conv_pre_init: +DEBUG: Parsing file cs_conv.F90 with registry OrderedDict([('cs_conv_pre', {'cs_conv_pre': {'cs_conv_pre_run': [17, 55], 'cs_conv_pre_finalize': [10, 11], 'cs_conv_pre_init': [6, 7]}}), ('cs_conv_post', {'cs_conv_post': {'cs_conv_post_init': [61, 62], 'cs_conv_post_finalize': [65, 66], 'cs_conv_post_run': [71, 96]}}), ('cs_conv', {})]) +DEBUG: Skipping blank table cs_conv_post_init +DEBUG: Skipping blank table cs_conv_post_finalize +DEBUG: Module name: cs_conv_post +DEBUG: Scheme name: cs_conv_post +DEBUG: Variables in subroutine cs_conv_post_init: +DEBUG: Variables in subroutine cs_conv_post_finalize: +DEBUG: Variables in subroutine cs_conv_post_run: horizontal_dimension, vertical_dimension, ccpp_error_message, ccpp_error_flag, flag_for_Arakawa_Wu_adjustment, convective_updraft_area_fraction_at_model_interfaces, convective_updraft_area_fraction +DEBUG: Parsing file cs_conv.F90 with registry OrderedDict([('cs_conv_pre', {'cs_conv_pre': {'cs_conv_pre_run': [17, 55], 'cs_conv_pre_finalize': [10, 11], 'cs_conv_pre_init': [6, 7]}}), ('cs_conv_post', {'cs_conv_post': {'cs_conv_post_init': [61, 62], 'cs_conv_post_finalize': [65, 66], 'cs_conv_post_run': [71, 96]}}), ('cs_conv', {'cs_conv': {'cs_conv_init': [165, 166], 'cs_conv_finalize': [169, 170], 'cs_conv_run': [232, 571]}})]) +DEBUG: Skipping blank table cs_conv_init +DEBUG: Skipping blank table cs_conv_finalize +DEBUG: Module name: cs_conv +DEBUG: Scheme name: cs_conv +DEBUG: Variables in subroutine cs_conv_init: +DEBUG: Variables in subroutine cs_conv_finalize: +DEBUG: Variables in subroutine cs_conv_run: horizontal_dimension, vertical_dimension, water_vapor_specific_humidity_updated_by_physics, maximum_updraft_velocity_at_cloud_base, fraction_of_cloud_top_water_scavenged, fraction_of_tracer_scavenged, ccpp_error_message, ccpp_error_flag, flag_for_Arakawa_Wu_adjustment, convective_updraft_area_fraction_at_model_interfaces, horizontal_loop_extent, number_of_tracers_plus_one, number_of_tracers_for_convective_transport, number_of_tracers_for_CS, number_of_cloud_types_CS, flag_convective_tracer_transport, latitude_index_in_debug_printouts, index_of_time_step, air_temperature_updated_by_physics, lwe_thickness_of_deep_convective_precipitation_amount, convective_transportable_tracers, geopotential, geopotential_at_interface, air_pressure, air_pressure_at_interface, time_step_for_physics, time_step_for_dynamics, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, x_wind_updated_by_physics, y_wind_updated_by_physics, cloud_base_mass_flux, mpi_rank, detrainment_and_precipitation_tunable_parameter_3_CS, detrainment_and_precipitation_tunable_parameter_4_CS, entrainment_efficiency_tunable_parameter_9_CS, flag_arakawa_wu_downdraft, flag_flux_form_CS, flag_print, horizontal_index_of_printed_column, flag_deep_convection, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, vertical_velocity_for_updraft, convective_cloud_fraction_for_microphysics, detrained_mass_flux, tendency_of_cloud_water_due_to_convective_microphysics, convective_cloud_volume_fraction, ice_fraction_in_convective_tower, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment, flag_for_microphysics_scheme +DEBUG: Parsing file moninedmf_hafs.f with registry OrderedDict([('hedmf_hafs', {'hedmf_hafs': {'hedmf_hafs_finalize': [24, 25], 'hedmf_hafs_init': [10, 23], 'hedmf_hafs_run': [51, 1324]}})]) +DEBUG: Module name: hedmf_hafs +DEBUG: Scheme name: hedmf_hafs +DEBUG: Variables in subroutine hedmf_hafs_finalize: +DEBUG: Variables in subroutine hedmf_hafs_init: atmosphere_diffusivity_coefficient_factor, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine hedmf_hafs_run: atmosphere_diffusivity_coefficient_factor, ccpp_error_message, ccpp_error_flag, horizontal_dimension, horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, dimensionless_exner_function_at_lowest_model_interface, bulk_richardson_number_at_lowest_model_level, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, surface_skin_temperature, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_wind_stress, wind_speed_at_lowest_model_layer, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, flag_TKE_dissipation_heating, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_boundary_layer_thickness, countergradient_mixing_term_for_temperature, countergradient_mixing_term_for_water_vapor, atmosphere_heat_diffusivity, index_of_highest_temperature_inversion, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, flag_print, horizontal_index_of_printed_column, atmosphere_heat_diffusivity_background_maximum, sea_land_ice_mask +DEBUG: Parsing file GFS_rrtmgp_sw_pre.F90 with registry OrderedDict([('GFS_rrtmgp_sw_pre', {'GFS_rrtmgp_sw_pre': {'GFS_rrtmgp_sw_pre_finalize': [105, 106], 'GFS_rrtmgp_sw_pre_run': [28, 101], 'GFS_rrtmgp_sw_pre_init': [20, 21]}})]) +DEBUG: Module name: GFS_rrtmgp_sw_pre +DEBUG: Scheme name: GFS_rrtmgp_sw_pre +DEBUG: Variables in subroutine GFS_rrtmgp_sw_pre_finalize: +DEBUG: Variables in subroutine GFS_rrtmgp_sw_pre_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_sfcprop_type_instance, GFS_statein_type_instance, GFS_radtend_type_instance, GFS_coupling_type_instance, horizontal_loop_extent, virtual_temperature, relative_humidity, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, chemical_tracers, coefficients_for_sw_gas_optics, surface_albedo_perturbation, surface_albedo_nearIR_direct, surface_albedo_nearIR_diffuse, surface_albedo_uvvis_dir, surface_albedo_uvvis_dif, daytime_points_dimension, daytime_points, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_sw_pre_init: +DEBUG: Warning, ignoring nested subroutine in module sfc_sice and subroutine sfc_sice_run +DEBUG: Parsing file sfc_sice.f with registry OrderedDict([('sfc_sice', {'sfc_sice': {'sfc_sice_run': [37, 610], 'sfc_sice_finalize': [8, 9], 'sfc_sice_init': [5, 6]}})]) +DEBUG: Module name: sfc_sice +DEBUG: Scheme name: sfc_sice +DEBUG: Variables in subroutine sfc_sice_run: horizontal_loop_extent, ice_vertical_dimension, stefan_boltzmann_constant, latent_heat_of_vaporization_of_water_at_0C, freezing_point_temperature_of_seawater, specific_heat_of_dry_air_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gravitational_acceleration, temperature_at_zero_celsius, gas_constant_dry_air, surface_air_pressure, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, time_step_for_dynamics, surface_longwave_emissivity_over_ice_interstitial, surface_downwelling_longwave_flux_absorbed_by_ground_over_ice, surface_net_downwelling_shortwave_flux, surface_downwelling_shortwave_flux, flag_for_precipitation_type, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, sea_land_ice_mask, wind_speed_at_lowest_model_layer, flag_for_iteration, flag_print, horizontal_index_of_printed_column, lake_ice_minimum, sea_ice_thickness, sea_ice_concentration, sea_ice_temperature_interstitial, water_equivalent_accumulated_snow_depth_over_ice, surface_skin_temperature_over_ice_interstitial, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice, internal_ice_temperature, surface_upward_potential_latent_heat_flux_over_ice, surface_snow_thickness_water_equivalent_over_ice, surface_specific_humidity_over_ice, surface_snow_melt, upward_heat_flux_in_soil_over_ice, surface_drag_wind_speed_for_momentum_in_air_over_ice, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice, kinematic_surface_upward_latent_heat_flux_over_ice, kinematic_surface_upward_sensible_heat_flux_over_ice, flag_for_flux_coupling, flag_for_chemistry_coupling, flag_for_cice, sea_land_ice_mask_cice, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine sfc_sice_finalize: +DEBUG: Variables in subroutine sfc_sice_init: +DEBUG: Parsing file GFS_rrtmgp_lw_post.F90 with registry OrderedDict([('GFS_rrtmgp_lw_post', {'GFS_rrtmgp_lw_post': {'GFS_rrtmgp_lw_post_init': [16, 17], 'GFS_rrtmgp_lw_post_run': [24, 173], 'GFS_rrtmgp_lw_post_finalize': [177, 178]}})]) +DEBUG: Module name: GFS_rrtmgp_lw_post +DEBUG: Scheme name: GFS_rrtmgp_lw_post +DEBUG: Variables in subroutine GFS_rrtmgp_lw_post_init: +DEBUG: Variables in subroutine GFS_rrtmgp_lw_post_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_radtend_type_instance, GFS_coupling_type_instance, GFS_diag_type_instance, GFS_statein_type_instance, horizontal_loop_extent, surface_air_temperature_for_radiation, air_pressure_at_interface_for_RRTMGP_in_hPa, RRTMGP_lw_flux_profile_upward_allsky, RRTMGP_lw_flux_profile_downward_allsky, RRTMGP_lw_flux_profile_upward_clrsky, RRTMGP_lw_flux_profile_downward_clrsky, time_step_for_radiation, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, cloud_area_fraction_for_radiation, model_layer_number_at_cloud_top, model_layer_number_at_cloud_base, total_cloud_fraction, RRTMGP_cloud_optical_depth_layers_at_10mu_band, RRTMGP_lw_fluxes, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_lw_post_finalize: +DEBUG: Parsing file sfc_diff.f with registry OrderedDict([('sfc_diff', {'sfc_diff': {'sfc_diff_init': [12, 13], 'sfc_diff_finalize': [14, 15], 'sfc_diff_run': [52, 299]}})]) +DEBUG: Module name: sfc_diff +DEBUG: Scheme name: sfc_diff +DEBUG: Variables in subroutine sfc_diff_init: +DEBUG: Variables in subroutine sfc_diff_finalize: +DEBUG: Variables in subroutine sfc_diff_run: horizontal_loop_extent, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, gravitational_acceleration, surface_air_pressure, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, height_above_ground_at_lowest_model_layer, wind_speed_at_lowest_model_layer, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, bounded_vegetation_area_fraction, vegetation_type_classification, maximum_vegetation_area_fraction, vegetation_type_dataset_choice, perturbation_of_momentum_roughness_length, perturbation_of_heat_to_momentum_roughness_length_ratio, flag_for_iteration, flag_for_reduced_drag_coefficient_over_sea, x_wind_at_10m, y_wind_at_10m, flag_for_surface_roughness_option_over_ocean, flag_nonzero_wet_surface_fraction, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ice_interstitial, surface_skin_temperature_after_iteration_over_ocean, surface_skin_temperature_after_iteration_over_land, surface_skin_temperature_after_iteration_over_ice, surface_snow_thickness_water_equivalent_over_ocean, surface_snow_thickness_water_equivalent_over_land, surface_snow_thickness_water_equivalent_over_ice, surface_roughness_length_over_ocean_interstitial, surface_roughness_length_over_land_interstitial, surface_roughness_length_over_ice_interstitial, surface_friction_velocity_over_ocean, surface_friction_velocity_over_land, surface_friction_velocity_over_ice, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, bulk_richardson_number_at_lowest_model_level_over_ocean, bulk_richardson_number_at_lowest_model_level_over_land, bulk_richardson_number_at_lowest_model_level_over_ice, surface_wind_stress_over_ocean, surface_wind_stress_over_land, surface_wind_stress_over_ice, Monin_Obukhov_similarity_function_for_momentum_over_ocean, Monin_Obukhov_similarity_function_for_momentum_over_land, Monin_Obukhov_similarity_function_for_momentum_over_ice, Monin_Obukhov_similarity_function_for_heat_over_ocean, Monin_Obukhov_similarity_function_for_heat_over_land, Monin_Obukhov_similarity_function_for_heat_over_ice, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean, Monin_Obukhov_similarity_function_for_heat_at_2m_over_land, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_GWD_generic.F90 with registry OrderedDict([('GFS_GWD_generic_pre', {'GFS_GWD_generic_pre': {'GFS_GWD_generic_pre_run': [13, 82], 'GFS_GWD_generic_pre_finalize': [84, 85], 'GFS_GWD_generic_pre_init': [5, 6]}}), ('GFS_GWD_generic_post', {})]) +DEBUG: Module name: GFS_GWD_generic_pre +DEBUG: Scheme name: GFS_GWD_generic_pre +DEBUG: Variables in subroutine GFS_GWD_generic_pre_run: horizontal_loop_extent, vertical_dimension, number_of_statistical_measures_of_subgrid_orography, statistical_measures_of_subgrid_orography, convexity_of_subgrid_orography, asymmetry_of_subgrid_orography, fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height, angle_from_east_of_maximum_subgrid_orographic_variations, slope_of_subgrid_orography, anisotropy_of_subgrid_orography, maximum_subgrid_orography, flag_diagnostics, flag_diagnostics_3D, tendency_of_air_temperature_due_to_model_physics, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, time_step_for_dynamics, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_GWD_generic_pre_finalize: +DEBUG: Variables in subroutine GFS_GWD_generic_pre_init: +DEBUG: Parsing file GFS_GWD_generic.F90 with registry OrderedDict([('GFS_GWD_generic_pre', {'GFS_GWD_generic_pre': {'GFS_GWD_generic_pre_run': [13, 82], 'GFS_GWD_generic_pre_finalize': [84, 85], 'GFS_GWD_generic_pre_init': [5, 6]}}), ('GFS_GWD_generic_post', {'GFS_GWD_generic_post': {'GFS_GWD_generic_post_init': [91, 92], 'GFS_GWD_generic_post_finalize': [124, 125], 'GFS_GWD_generic_post_run': [99, 122]}})]) +DEBUG: Module name: GFS_GWD_generic_post +DEBUG: Scheme name: GFS_GWD_generic_post +DEBUG: Variables in subroutine GFS_GWD_generic_post_init: +DEBUG: Variables in subroutine GFS_GWD_generic_post_finalize: +DEBUG: Variables in subroutine GFS_GWD_generic_post_run: flag_diagnostics, flag_diagnostics_3D, tendency_of_air_temperature_due_to_model_physics, cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag, time_step_for_dynamics, ccpp_error_message, ccpp_error_flag, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, time_integral_of_x_stress_due_to_gravity_wave_drag, time_integral_of_y_stress_due_to_gravity_wave_drag, cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag +DEBUG: Parsing file rrtmg_sw_pre.F90 with registry OrderedDict([('rrtmg_sw_pre', {'rrtmg_sw_pre': {'rrtmg_sw_pre_init': [9, 10], 'rrtmg_sw_pre_finalize': [71, 72], 'rrtmg_sw_pre_run': [14, 68]}})]) +DEBUG: Skipping blank table rrtmg_sw_pre_init +DEBUG: Skipping blank table rrtmg_sw_pre_finalize +DEBUG: Module name: rrtmg_sw_pre +DEBUG: Scheme name: rrtmg_sw_pre +DEBUG: Variables in subroutine rrtmg_sw_pre_init: +DEBUG: Variables in subroutine rrtmg_sw_pre_finalize: +DEBUG: Variables in subroutine rrtmg_sw_pre_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_sfcprop_type_instance, GFS_radtend_type_instance, horizontal_loop_extent, daytime_points_dimension, daytime_points, surface_ground_temperature_for_radiation, surface_air_temperature_for_radiation, surface_albedo_due_to_near_IR_direct, surface_albedo_due_to_near_IR_diffused, surface_albedo_due_to_UV_and_VIS_direct, surface_albedo_due_to_UV_and_VIS_diffused, surface_albedo_perturbation, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file radlw_main.f with registry OrderedDict([('rrtmg_lw', {'rrtmg_lw': {'rrtmg_lw_init': [319, 320], 'rrtmg_lw_finalize': [1018, 1019], 'rrtmg_lw_run': [349, 1015]}})]) +DEBUG: Module name: rrtmg_lw +DEBUG: Scheme name: rrtmg_lw +DEBUG: Variables in subroutine rrtmg_lw_init: +DEBUG: Variables in subroutine rrtmg_lw_finalize: +DEBUG: Variables in subroutine rrtmg_lw_run: air_pressure_at_layer_for_radiation_in_hPa, air_pressure_at_interface_for_radiation_in_hPa, air_temperature_at_layer_for_radiation, air_temperature_at_interface_for_radiation, water_vapor_specific_humidity_at_layer_for_radiation, ozone_concentration_at_layer_for_radiation, volume_mixing_ratio_co2, volume_mixing_ratio_n2o, volume_mixing_ratio_ch4, volume_mixing_ratio_o2, volume_mixing_ratio_co, volume_mixing_ratio_cfc11, volume_mixing_ratio_cfc12, volume_mixing_ratio_cfc22, volume_mixing_ratio_ccl4, seed_random_numbers_lw, aerosol_optical_depth_for_longwave_bands_01_16, aerosol_single_scattering_albedo_for_longwave_bands_01_16, surface_longwave_emissivity, surface_ground_temperature_for_radiation, layer_thickness_for_radiation, layer_pressure_thickness_for_radiation, cloud_decorrelation_length, horizontal_loop_extent, adjusted_vertical_layer_dimension_for_radiation, adjusted_vertical_level_dimension_for_radiation, flag_print, total_cloud_fraction, flag_to_calc_lw, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels, lw_fluxes_top_atmosphere, lw_fluxes_sfc, cloud_optical_depth_layers_at_10mu_band, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_rain_water_path, mean_effective_radius_for_rain_drop, cloud_snow_water_path, mean_effective_radius_for_snow_flake, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file rrtmgp_lw_rte.F90 with registry OrderedDict([('rrtmgp_lw_rte', {'rrtmgp_lw_rte': {'rrtmgp_lw_rte_init': [18, 19], 'rrtmgp_lw_rte_finalize': [119, 120], 'rrtmgp_lw_rte_run': [26, 115]}})]) +DEBUG: Module name: rrtmgp_lw_rte +DEBUG: Scheme name: rrtmgp_lw_rte +DEBUG: Variables in subroutine rrtmgp_lw_rte_init: +DEBUG: Variables in subroutine rrtmgp_lw_rte_finalize: +DEBUG: Variables in subroutine rrtmgp_lw_rte_run: flag_to_calc_lw, horizontal_loop_extent, vertical_dimension, number_of_angles_used_in_gaussian_quadrature, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, surface_ground_temperature_for_radiation, surface_emissivity_in_each_RRTMGP_LW_band, coefficients_for_lw_gas_optics, longwave_optical_properties_for_clear_sky, longwave_optical_properties_for_cloudy_atmosphere, longwave_optical_properties_for_aerosols, longwave_source_function, RRTMGP_lw_heating_rate_spectral, secant_of_diffusivity_angle_each_RRTMGP_LW_band, RRTMGP_lw_flux_profile_upward_allsky, RRTMGP_lw_flux_profile_downward_allsky, RRTMGP_lw_flux_profile_upward_clrsky, RRTMGP_lw_flux_profile_downward_clrsky, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file dcyc2.f with registry OrderedDict([('dcyc2t3', {'dcyc2t3': {'dcyc2t3_init': [14, 15], 'dcyc2t3_run': [166, 298], 'dcyc2t3_finalize': [18, 19]}})]) +DEBUG: Skipping blank table dcyc2t3_init +DEBUG: Skipping blank table dcyc2t3_finalize +DEBUG: Module name: dcyc2t3 +DEBUG: Scheme name: dcyc2t3 +DEBUG: Variables in subroutine dcyc2t3_init: +DEBUG: Variables in subroutine dcyc2t3_run: forecast_hour_of_the_day, equation_of_time, sine_of_solar_declination_angle, cosine_of_solar_declination_angle, sine_of_latitude, cosine_of_latitude, longitude, cosine_of_zenith_angle, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_over_ice_interstitial, air_temperature_at_lowest_model_layer, surface_midlayer_air_temperature_in_longwave_radiation, surface_longwave_emissivity_over_land_interstitial, surface_longwave_emissivity_over_ice_interstitial, surface_longwave_emissivity_over_ocean_interstitial, surface_downwelling_shortwave_flux_on_radiation_time_step, surface_net_downwelling_shortwave_flux_on_radiation_time_step, surface_downwelling_longwave_flux_on_radiation_time_step, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step, surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step, surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step, surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step, surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step, surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step, horizontal_dimension, horizontal_loop_extent, vertical_dimension, time_step_for_dynamics, frequency_for_shortwave_radiation, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, tendency_of_air_temperature_due_to_model_physics, tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, surface_downwelling_longwave_flux, surface_upwelling_longwave_flux_over_land_interstitial, surface_upwelling_longwave_flux_over_ice_interstitial, surface_upwelling_longwave_flux_over_ocean_interstitial, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, instantaneous_cosine_of_zenith_angle, surface_upwelling_direct_near_infrared_shortwave_flux, surface_upwelling_diffuse_near_infrared_shortwave_flux, surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux, surface_downwelling_direct_near_infrared_shortwave_flux, surface_downwelling_diffuse_near_infrared_shortwave_flux, surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine dcyc2t3_finalize: +DEBUG: Parsing file gwdc.f with registry OrderedDict([('gwdc_pre', {'gwdc_pre': {'gwdc_pre_finalize': [70, 71], 'gwdc_pre_init': [11, 12], 'gwdc_pre_run': [18, 65]}}), ('gwdc', {}), ('gwdc_post', {})]) +DEBUG: Skipping blank table gwdc_pre_finalize +DEBUG: Skipping blank table gwdc_pre_init +DEBUG: Module name: gwdc_pre +DEBUG: Scheme name: gwdc_pre +DEBUG: Variables in subroutine gwdc_pre_finalize: +DEBUG: Variables in subroutine gwdc_pre_init: +DEBUG: Variables in subroutine gwdc_pre_run: horizontal_loop_extent, multiplication_factors_for_convective_gravity_wave_drag, cell_size, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, characteristic_grid_length_scale, cloud_area_fraction, vertical_dimension, vertical_index_at_cloud_base, vertical_index_at_cloud_top, time_step_for_physics, air_temperature_updated_by_physics, air_temperature_save, air_pressure_difference_between_midlayers, maximum_column_heating_rate, flag_for_convective_gravity_wave_drag, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file gwdc.f with registry OrderedDict([('gwdc_pre', {'gwdc_pre': {'gwdc_pre_finalize': [70, 71], 'gwdc_pre_init': [11, 12], 'gwdc_pre_run': [18, 65]}}), ('gwdc', {'gwdc': {'gwdc_run': [117, 1268], 'gwdc_finalize': [1274, 1275], 'gwdc_init': [81, 82]}}), ('gwdc_post', {})]) +DEBUG: Skipping blank table gwdc_finalize +DEBUG: Skipping blank table gwdc_init +DEBUG: Module name: gwdc +DEBUG: Scheme name: gwdc +DEBUG: Variables in subroutine gwdc_run: horizontal_loop_extent, characteristic_grid_length_scale, cloud_area_fraction, vertical_dimension, vertical_index_at_cloud_base, vertical_index_at_cloud_top, time_step_for_physics, air_pressure_difference_between_midlayers, maximum_column_heating_rate, ccpp_error_message, ccpp_error_flag, horizontal_dimension, latitude_index_in_debug_printouts, x_wind, y_wind, air_temperature, water_vapor_specific_humidity, air_pressure, air_pressure_at_interface, flag_deep_convection, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, ratio_of_vapor_to_dry_air_gas_constants_minus_one, pi, flag_print, horizontal_index_of_printed_column, forecast_time, tendency_of_x_wind_due_to_convective_gravity_wave_drag, tendency_of_y_wind_due_to_convective_gravity_wave_drag, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag +DEBUG: Variables in subroutine gwdc_finalize: +DEBUG: Variables in subroutine gwdc_init: +DEBUG: Parsing file gwdc.f with registry OrderedDict([('gwdc_pre', {'gwdc_pre': {'gwdc_pre_finalize': [70, 71], 'gwdc_pre_init': [11, 12], 'gwdc_pre_run': [18, 65]}}), ('gwdc', {'gwdc': {'gwdc_run': [117, 1268], 'gwdc_finalize': [1274, 1275], 'gwdc_init': [81, 82]}}), ('gwdc_post', {'gwdc_post': {'gwdc_post_finalize': [1334, 1335], 'gwdc_post_init': [1285, 1286], 'gwdc_post_run': [1292, 1329]}})]) +DEBUG: Skipping blank table gwdc_post_finalize +DEBUG: Skipping blank table gwdc_post_init +DEBUG: Module name: gwdc_post +DEBUG: Scheme name: gwdc_post +DEBUG: Variables in subroutine gwdc_post_finalize: +DEBUG: Variables in subroutine gwdc_post_init: +DEBUG: Variables in subroutine gwdc_post_run: horizontal_loop_extent, vertical_dimension, time_step_for_physics, air_temperature_updated_by_physics, ccpp_error_message, ccpp_error_flag, specific_heat_of_dry_air_at_constant_pressure, tendency_of_x_wind_due_to_convective_gravity_wave_drag, tendency_of_y_wind_due_to_convective_gravity_wave_drag, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, flag_diagnostics, flag_diagnostics_3D, time_step_for_dynamics, time_integral_of_x_stress_due_to_gravity_wave_drag, time_integral_of_y_stress_due_to_gravity_wave_drag, cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag, cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag, x_wind_updated_by_physics, y_wind_updated_by_physics +DEBUG: Parsing file cu_gf_driver_pre.F90 with registry OrderedDict([('cu_gf_driver_pre', {'cu_gf_driver_pre': {'cu_gf_driver_pre_init': [7, 8], 'cu_gf_driver_pre_finalize': [9, 10], 'cu_gf_driver_pre_run': [14, 54]}})]) +DEBUG: Module name: cu_gf_driver_pre +DEBUG: Scheme name: cu_gf_driver_pre +DEBUG: Variables in subroutine cu_gf_driver_pre_init: +DEBUG: Variables in subroutine cu_gf_driver_pre_finalize: +DEBUG: Variables in subroutine cu_gf_driver_pre_run: flag_for_first_time_step, flag_for_restart, index_of_time_step, forecast_time, time_step_for_physics, air_temperature, water_vapor_specific_humidity, temperature_from_previous_timestep, moisture_from_previous_timestep, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, conv_activity_counter, gf_memory_counter, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file gfdl_cloud_microphys.F90 with registry OrderedDict([('gfdl_cloud_microphys', {'gfdl_cloud_microphys': {'gfdl_cloud_microphys_finalize': [56, 66], 'gfdl_cloud_microphys_run': [84, 238], 'gfdl_cloud_microphys_init': [19, 48]}})]) +DEBUG: Module name: gfdl_cloud_microphys +DEBUG: Scheme name: gfdl_cloud_microphys +DEBUG: Variables in subroutine gfdl_cloud_microphys_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine gfdl_cloud_microphys_run: ccpp_error_message, ccpp_error_flag, vertical_dimension, horizontal_loop_extent, gravitational_acceleration, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gas_constant_dry_air, land_area_fraction_for_microphysics, cell_area, sea_land_ice_mask, water_vapor_specific_humidity_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, cloud_fraction_updated_by_physics, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, omega, air_pressure, geopotential_at_interface, air_pressure_difference_between_midlayers, lwe_thickness_of_explicit_rain_amount, lwe_thickness_of_ice_amount, lwe_thickness_of_snow_amount, lwe_thickness_of_graupel_amount, lwe_thickness_of_explicit_precipitation_amount, ratio_of_snowfall_to_rainfall, time_step_for_physics, flag_for_hydrostatic_solver, flag_for_hydrostatic_heating_from_physics, flag_for_radar_reflectivity, radar_reflectivity_10cm, flag_reset_maximum_hourly_fields, flag_for_cloud_effective_radii, effective_radius_of_stratiform_cloud_liquid_water_particle_in_um, effective_radius_of_stratiform_cloud_ice_particle_in_um, effective_radius_of_stratiform_cloud_rain_particle_in_um, effective_radius_of_stratiform_cloud_snow_particle_in_um, effective_radius_of_stratiform_cloud_graupel_particle_in_um +DEBUG: Variables in subroutine gfdl_cloud_microphys_init: ccpp_error_message, ccpp_error_flag, mpi_rank, mpi_root, iounit_namelist, namelist_filename_for_internal_file_reads, iounit_log, namelist_filename, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_shoc +DEBUG: Parsing file cires_ugwp_post.F90 with registry OrderedDict([('cires_ugwp_post', {'cires_ugwp_post': {'cires_ugwp_post_init': [8, 9], 'cires_ugwp_post_run': [16, 52], 'cires_ugwp_post_finalize': [55, 56]}})]) +DEBUG: Skipping blank table cires_ugwp_post_init +DEBUG: Skipping blank table cires_ugwp_post_finalize +DEBUG: Module name: cires_ugwp_post +DEBUG: Scheme name: cires_ugwp_post +DEBUG: Variables in subroutine cires_ugwp_post_init: +DEBUG: Variables in subroutine cires_ugwp_post_run: diag_ugwp_flag, time_step_for_dynamics, horizontal_loop_extent, vertical_dimension, tendency_of_air_temperature_due_to_ugwp, tendency_of_x_wind_due_to_ugwp, tendency_of_y_wind_due_to_ugwp, instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag, instantaneous_momentum_flux_due_to_mountain_blocking_drag, instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag, instantaneous_momentum_flux_due_to_nonstationary_gravity_wave, height_of_mountain_blocking, height_of_low_level_wave_breaking, height_of_launch_level_of_orographic_gravity_wave, instantaneous_change_in_x_wind_due_to_mountain_blocking_drag, instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag, instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag, time_integral_of_height_of_mountain_blocking, time_integral_of_height_of_low_level_wave_breaking, time_integral_of_height_of_launch_level_of_orographic_gravity_wave, time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag, time_integral_of_momentum_flux_due_to_mountain_blocking_drag, time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag, time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave, time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag, time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag, time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag, time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave, time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave, tendency_of_air_temperature_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cires_ugwp_post_finalize: +DEBUG: Parsing file rrtmgp_lw_cloud_optics.F90 with registry OrderedDict([('rrtmgp_lw_cloud_optics', {'rrtmgp_lw_cloud_optics': {'rrtmgp_lw_cloud_optics_finalize': [299, 300], 'rrtmgp_lw_cloud_optics_run': [226, 292], 'rrtmgp_lw_cloud_optics_init': [18, 219]}})]) +DEBUG: Module name: rrtmgp_lw_cloud_optics +DEBUG: Scheme name: rrtmgp_lw_cloud_optics +DEBUG: Variables in subroutine rrtmgp_lw_cloud_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_lw_cloud_optics_run: flag_to_calc_lw, horizontal_loop_extent, vertical_dimension, rrtmgp_cloud_optics_flag, number_of_rrtmgp_ice_roughness, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_snow_water_path, mean_effective_radius_for_snow_flake, cloud_rain_water_path, mean_effective_radius_for_rain_drop, air_pressure_at_layer_for_RRTMGP_in_hPa, coefficients_for_lw_gas_optics, coefficients_for_lw_cloud_optics, longitude, latitude, RRTMGP_cloud_optical_depth_layers_at_10mu_band, longwave_optical_properties_for_cloudy_atmosphere_by_band, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmgp_lw_cloud_optics_init: rrtmgp_cloud_optics_flag, number_of_rrtmgp_ice_roughness, coefficients_for_lw_cloud_optics, ccpp_error_message, ccpp_error_flag, directory_for_rte_rrtmgp_source_code, rrtmgp_coeff_lw_cloud_optics, mpi_rank, mpi_root, mpi_comm +DEBUG: Parsing file gwdps.f with registry OrderedDict([('gwdps', {'gwdps': {'gwdps_init': [8, 9], 'gwdps_run': [193, 1257], 'gwdps_finalize': [1262, 1263]}})]) +DEBUG: Skipping blank table gwdps_init +DEBUG: Skipping blank table gwdps_finalize +DEBUG: Module name: gwdps +DEBUG: Scheme name: gwdps +DEBUG: Variables in subroutine gwdps_init: +DEBUG: Variables in subroutine gwdps_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, x_wind, y_wind, air_temperature, water_vapor_specific_humidity, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, index_of_time_step, standard_deviation_of_subgrid_orography, convexity_of_subgrid_orography, asymmetry_of_subgrid_orography, fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height, angle_from_east_of_maximum_subgrid_orographic_variations, slope_of_subgrid_orography, anisotropy_of_subgrid_orography, maximum_subgrid_orography, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, gas_constant_water_vapor, number_of_equatorial_longitude_points, number_of_statistical_measures_of_subgrid_orography, multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag, mpi_rank, flag_print, horizontal_index_of_printed_column, level_of_dividing_streamline, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine gwdps_finalize: +DEBUG: Parsing file moninshoc.f with registry OrderedDict([('moninshoc', {'moninshoc': {'moninshoc_run': [21, 521], 'moninshoc_finalize': [7, 8], 'moninshoc_init': [5, 6]}})]) +DEBUG: Module name: moninshoc +DEBUG: Scheme name: moninshoc +DEBUG: Variables in subroutine moninshoc_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, number_of_tracers_for_cloud_condensate, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, atmosphere_heat_diffusivity_from_shoc, prandtl_number, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, dimensionless_exner_function_at_lowest_model_interface, bulk_richardson_number_at_lowest_model_level, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, surface_skin_temperature, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_wind_stress, wind_speed_at_lowest_model_layer, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_heat_diffusivity, atmosphere_boundary_layer_thickness, index_of_highest_temperature_inversion, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, atmosphere_heat_diffusivity_background_maximum, gravitational_acceleration, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_vaporization_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine moninshoc_finalize: +DEBUG: Variables in subroutine moninshoc_init: +DEBUG: Parsing file sfc_cice.f with registry OrderedDict([('sfc_cice', {'sfc_cice': {'sfc_cice_finalize': [12, 13], 'sfc_cice_run': [31, 117], 'sfc_cice_init': [9, 10]}})]) +DEBUG: Module name: sfc_cice +DEBUG: Scheme name: sfc_cice +DEBUG: Variables in subroutine sfc_cice_finalize: +DEBUG: Variables in subroutine sfc_cice_run: horizontal_loop_extent, flag_for_flux_coupling, latent_heat_of_vaporization_of_water_at_0C, specific_heat_of_dry_air_at_constant_pressure, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gas_constant_dry_air, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, air_pressure_at_lowest_model_layer, wind_speed_at_lowest_model_layer, flag_for_cice, flag_for_iteration, surface_upward_latent_heat_flux_for_coupling, surface_upward_sensible_heat_flux_for_coupling, surface_x_momentum_flux_for_coupling, surface_y_momentum_flux_for_coupling, surface_specific_humidity_over_ice, surface_drag_wind_speed_for_momentum_in_air_over_ice, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice, kinematic_surface_upward_latent_heat_flux_over_ice, kinematic_surface_upward_sensible_heat_flux_over_ice, surface_wind_stress_over_ice, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine sfc_cice_init: +DEBUG: Parsing file GFS_suite_init_finalize_test.F90 with registry OrderedDict([('GFS_suite_ini_fini_test', {'GFS_suite_ini_fini_test': {'GFS_suite_ini_fini_test_run': [29, 37], 'GFS_suite_ini_fini_test_finalize': [17, 25], 'GFS_suite_ini_fini_test_init': [5, 13]}})]) +DEBUG: Module name: GFS_suite_ini_fini_test +DEBUG: Scheme name: GFS_suite_ini_fini_test +DEBUG: Variables in subroutine GFS_suite_ini_fini_test_run: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_suite_ini_fini_test_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_suite_ini_fini_test_init: ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file module_MYJPBL_wrapper.F90 with registry OrderedDict([('myjpbl_wrapper', {'myjpbl_wrapper': {'myjpbl_wrapper_init': [5, 6], 'myjpbl_wrapper_finalize': [7, 8], 'myjpbl_wrapper_run': [15, 644]}})]) +DEBUG: Module name: myjpbl_wrapper +DEBUG: Scheme name: myjpbl_wrapper +DEBUG: Variables in subroutine myjpbl_wrapper_init: +DEBUG: Variables in subroutine myjpbl_wrapper_finalize: +DEBUG: Variables in subroutine myjpbl_wrapper_run: flag_for_restart, do_myjsfc, horizontal_dimension, horizontal_loop_extent, vertical_dimension, time_step_for_physics, index_of_time_step, number_of_vertical_diffusion_tracers, index_for_turbulent_kinetic_energy, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_graupel, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, air_pressure, air_pressure_at_interface, geopotential_at_interface, standard_deviation_of_subgrid_orography, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, surface_skin_temperature, surface_specific_humidity, surface_specific_humidity_for_MYJ_schemes, potential_temperature_at_viscous_sublayer_top, specific_humidity_at_viscous_sublayer_top, u_wind_component_at_viscous_sublayer_top, v_wind_component_at_viscous_sublayer_top, baseline_surface_roughness_length, heat_exchange_coefficient_for_MYJ_schemes, momentum_exchange_coefficient_for_MYJ_schemes, surface_layer_evaporation_switch, kinematic_surface_latent_heat_flux, weight_for_momentum_at_viscous_sublayer_top, weight_for_potental_temperature_at_viscous_sublayer_top, weight_for_specific_humidity_at_viscous_sublayer_top, atmosphere_boundary_layer_thickness, vertical_index_at_top_of_atmosphere_boundary_layer, index_of_highest_temperature_inversion, sea_land_ice_mask_real, cell_area, surface_friction_velocity, surface_drag_coefficient_for_momentum_in_air, surface_drag_coefficient_for_heat_and_moisture_in_air, wind_speed_at_lowest_model_layer, surface_snow_thickness_water_equivalent, surface_roughness_length, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_heat_diffusivity, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, countergradient_mixing_term_for_temperature, countergradient_mixing_term_for_water_vapor, specific_heat_of_dry_air_at_constant_pressure, gravitational_acceleration, gas_constant_dry_air, mpi_rank, flag_print, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file rrtmgp_lw_cloud_sampling.F90 with registry OrderedDict([('rrtmgp_lw_cloud_sampling', {'rrtmgp_lw_cloud_sampling': {'rrtmgp_lw_cloud_sampling_run': [31, 88], 'rrtmgp_lw_cloud_sampling_init': [17, 24], 'rrtmgp_lw_cloud_sampling_finalize': [92, 93]}})]) +DEBUG: Module name: rrtmgp_lw_cloud_sampling +DEBUG: Scheme name: rrtmgp_lw_cloud_sampling +DEBUG: Variables in subroutine rrtmgp_lw_cloud_sampling_run: flag_to_calc_lw, horizontal_loop_extent, vertical_dimension, initial_permutation_seed_lw, seed_random_numbers_lw, total_cloud_fraction, coefficients_for_lw_gas_optics, longwave_optical_properties_for_cloudy_atmosphere_by_band, longwave_optical_properties_for_cloudy_atmosphere, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmgp_lw_cloud_sampling_init: initial_permutation_seed_lw, coefficients_for_lw_gas_optics +DEBUG: Variables in subroutine rrtmgp_lw_cloud_sampling_finalize: +DEBUG: Parsing file sfc_diag.f with registry OrderedDict([('sfc_diag', {'sfc_diag': {'sfc_diag_init': [6, 7], 'sfc_diag_finalize': [8, 9], 'sfc_diag_run': [18, 80]}})]) +DEBUG: Module name: sfc_diag +DEBUG: Scheme name: sfc_diag +DEBUG: Variables in subroutine sfc_diag_init: +DEBUG: Variables in subroutine sfc_diag_finalize: +DEBUG: Variables in subroutine sfc_diag_run: horizontal_loop_extent, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, surface_air_pressure, x_wind_at_lowest_model_layer_updated_by_physics, y_wind_at_lowest_model_layer_updated_by_physics, air_temperature_at_lowest_model_layer_updated_by_physics, water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, kinematic_surface_upward_latent_heat_flux, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, Monin_Obukhov_similarity_function_for_momentum_at_10m, Monin_Obukhov_similarity_function_for_heat_at_2m, surface_skin_temperature, surface_specific_humidity, ratio_of_wind_at_lowest_model_layer_and_wind_at_10m, x_wind_at_10m, y_wind_at_10m, temperature_at_2m, specific_humidity_at_2m, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file satmedmfvdifq.F with registry OrderedDict([('satmedmfvdifq', {'satmedmfvdifq': {'satmedmfvdifq_init': [17, 31], 'satmedmfvdifq_run': [49, 1462], 'satmedmfvdifq_finalize': [32, 33]}})]) +DEBUG: Module name: satmedmfvdifq +DEBUG: Scheme name: satmedmfvdifq +DEBUG: Variables in subroutine satmedmfvdifq_init: choice_of_scale_aware_TKE_moist_EDMF_PBL, choice_of_updated_scale_aware_TKE_moist_EDMF_PBL, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine satmedmfvdifq_run: ccpp_error_message, ccpp_error_flag, horizontal_dimension, horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate_vertical_diffusion_tracer, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, gravitational_acceleration, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, gas_constant_water_vapor, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, cell_area, dimensionless_exner_function_at_lowest_model_interface, bulk_richardson_number_at_lowest_model_level, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, surface_skin_temperature, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_wind_stress, wind_speed_at_lowest_model_layer, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, flag_TKE_dissipation_heating, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_boundary_layer_thickness, index_of_highest_temperature_inversion, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, tke_dissipative_heating_factor, updraft_fraction_in_boundary_layer_mass_flux_scheme, downdraft_fraction_in_boundary_layer_mass_flux_scheme +DEBUG: Variables in subroutine satmedmfvdifq_finalize: +DEBUG: Parsing file cu_ntiedtke_post.F90 with registry OrderedDict([('cu_ntiedtke_post', {'cu_ntiedtke_post': {'cu_ntiedtke_post_init': [7, 8], 'cu_ntiedtke_post_finalize': [9, 10], 'cu_ntiedtke_post_run': [14, 29]}})]) +DEBUG: Module name: cu_ntiedtke_post +DEBUG: Scheme name: cu_ntiedtke_post +DEBUG: Variables in subroutine cu_ntiedtke_post_init: +DEBUG: Variables in subroutine cu_ntiedtke_post_finalize: +DEBUG: Variables in subroutine cu_ntiedtke_post_run: air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, temperature_from_previous_timestep, moisture_from_previous_timestep, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file cu_ntiedtke_pre.F90 with registry OrderedDict([('cu_ntiedtke_pre', {'cu_ntiedtke_pre': {'cu_ntiedtke_pre_run': [14, 51], 'cu_ntiedtke_pre_finalize': [9, 10], 'cu_ntiedtke_pre_init': [7, 8]}})]) +DEBUG: Module name: cu_ntiedtke_pre +DEBUG: Scheme name: cu_ntiedtke_pre +DEBUG: Variables in subroutine cu_ntiedtke_pre_run: flag_for_first_time_step, flag_for_restart, index_of_time_step, forecast_time, time_step_for_physics, air_temperature, water_vapor_specific_humidity, temperature_from_previous_timestep, moisture_from_previous_timestep, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cu_ntiedtke_pre_finalize: +DEBUG: Variables in subroutine cu_ntiedtke_pre_init: +DEBUG: Parsing file mp_thompson_pre.F90 with registry OrderedDict([('mp_thompson_pre', {'mp_thompson_pre': {'mp_thompson_pre_init': [12, 13], 'mp_thompson_pre_finalize': [222, 223], 'mp_thompson_pre_run': [19, 221]}})]) +DEBUG: Module name: mp_thompson_pre +DEBUG: Scheme name: mp_thompson_pre +DEBUG: Variables in subroutine mp_thompson_pre_init: +DEBUG: Variables in subroutine mp_thompson_pre_finalize: +DEBUG: Variables in subroutine mp_thompson_pre_run: horizontal_loop_extent, vertical_dimension, index_of_time_step, gravitational_acceleration, gas_constant_dry_air, water_vapor_specific_humidity_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, ice_number_concentration_updated_by_physics, rain_number_concentration_updated_by_physics, flag_for_aerosol_physics, cloud_droplet_number_concentration_updated_by_physics, water_friendly_aerosol_number_concentration_updated_by_physics, ice_friendly_aerosol_number_concentration_updated_by_physics, tendency_of_water_friendly_aerosols_at_surface, tendency_of_ice_friendly_aerosols_at_surface, air_temperature_updated_by_physics, air_temperature_save, air_pressure, geopotential, cell_area, mpi_rank, mpi_root, ccpp_block_number, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file m_micro.F90 with registry OrderedDict([('m_micro', {'m_micro': {'m_micro_run': [65, 1253], 'm_micro_init': [16, 49], 'm_micro_finalize': [54, 55]}})]) +DEBUG: Skipping blank table m_micro_finalize +DEBUG: Module name: m_micro +DEBUG: Scheme name: m_micro +DEBUG: Variables in subroutine m_micro_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, flag_flip, time_step_for_physics, air_pressure, air_pressure_at_interface, geopotential, geopotential_at_interface, omega, cloud_condensed_water_mixing_ratio_convective_transport_tracer, mass_fraction_of_convective_cloud_liquid_water, ice_water_mixing_ratio_convective_transport_tracer, mass_fraction_of_convective_cloud_ice, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, vertical_velocity_for_updraft, convective_cloud_fraction_for_microphysics, land_area_fraction_for_microphysics, atmosphere_boundary_layer_thickness, detrained_mass_flux, tendency_of_cloud_water_due_to_convective_microphysics, convective_cloud_volume_fraction, x_wind_updated_by_physics, y_wind_updated_by_physics, cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep, cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, ice_fraction_in_convective_tower, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment, water_vapor_specific_humidity_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, air_temperature_updated_by_physics, lwe_thickness_of_explicit_precipitation_amount, ratio_of_snowfall_to_rainfall, cloud_droplet_number_concentration_updated_by_physics, ice_number_concentration_updated_by_physics, number_of_frozen_precipitation_species, local_rain_water_mixing_ratio, local_snow_water_mixing_ratio, local_graupel_mixing_ratio, local_rain_number_concentration, local_snow_number_concentration, local_graupel_number_concentration, cloud_fraction_for_MG, vertical_index_at_cloud_base, effective_radius_of_stratiform_cloud_liquid_water_particle_in_um, effective_radius_of_stratiform_cloud_ice_particle_in_um, effective_radius_of_stratiform_cloud_rain_particle_in_um, effective_radius_of_stratiform_cloud_snow_particle_in_um, effective_radius_of_stratiform_cloud_graupel_particle_in_um, aerosol_number_concentration_from_gocart_aerosol_climatology, in_number_concentration, ccn_number_concentration, flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics, flag_skip_macro, mg_tuning_factor_for_alphas, mg_minimum_cloud_condensed_water_and_ice_mixing_ratio, flag_for_pdf_for_morrison_gettelman_microphysics_scheme, index_of_time_step, latitude, longitude, critical_relative_humidity, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine m_micro_init: number_of_frozen_precipitation_species, ccpp_error_message, ccpp_error_flag, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, gravitational_acceleration, gas_constant_dry_air, gas_constant_water_vapor, specific_heat_of_dry_air_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, triple_point_temperature_of_water, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, mg_autoconversion_size_threshold_ice_snow, mg_cloud_water_variance, mg_time_scale_for_autoconversion_of_ice, mg_minimum_rh_for_ice, mg_flag_for_uniform_subcolumns, mg_flag_for_cloud_ice_processes, mg_flag_for_heterogeneous_freezing, mg_type_of_precip_fraction_method, mg_bergeron_efficiency_factor, mg_allow_supersat_after_sed, mg_flag_for_sb2001_autoconversion, mg_flag_for_hail, mg_flag_for_graupel, mg_flag_drop_concentration_constant, mg_flag_ice_concentration_constant, mg_flag_graupel_concentration_constant, mg_drop_concentration_constant, mg_ice_concentration_constant, mg_graupel_concentration_constant, mg_flag_for_gmao_ice_formulation, mg_flag_for_liu_liquid_treatment +DEBUG: Variables in subroutine m_micro_finalize: +DEBUG: Parsing file sfc_drv.f with registry OrderedDict([('lsm_noah', {'lsm_noah': {'lsm_noah_run': [150, 503], 'lsm_noah_finalize': [29, 36], 'lsm_noah_init': [14, 25]}})]) +DEBUG: Module name: lsm_noah +DEBUG: Scheme name: lsm_noah +DEBUG: Variables in subroutine lsm_noah_run: horizontal_loop_extent, soil_vertical_dimension, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_vaporization_of_water_at_0C, gas_constant_dry_air, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, surface_air_pressure, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, soil_type_classification, vegetation_type_classification, bounded_vegetation_area_fraction, surface_longwave_emissivity_over_land_interstitial, surface_downwelling_longwave_flux_absorbed_by_ground_over_land, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, time_step_for_dynamics, deep_soil_temperature, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, height_above_ground_at_lowest_model_layer, flag_nonzero_land_surface_fraction, wind_speed_at_lowest_model_layer, surface_slope_classification, minimum_vegetation_area_fraction, maximum_vegetation_area_fraction, upper_bound_on_max_albedo_over_deep_snow, surface_diffused_shortwave_albedo, flag_for_iteration, flag_for_guess_run, flag_for_canopy_heat_storage, soil_type_dataset_choice, vegetation_type_dataset_choice, perturbation_of_soil_type_b_parameter, perturbation_of_leaf_area_index, perturbation_of_vegetation_fraction, magnitude_of_perturbation_of_vegetation_fraction, water_equivalent_accumulated_snow_depth_over_land, surface_snow_thickness_water_equivalent_over_land, surface_skin_temperature_over_land_interstitial, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land, flag_for_precipitation_type, volume_fraction_of_soil_moisture, soil_temperature, volume_fraction_of_unfrozen_soil_moisture, canopy_water_amount, transpiration_flux, surface_skin_temperature_after_iteration_over_land, surface_roughness_length_over_land_interstitial, surface_snow_area_fraction_over_land, surface_specific_humidity_over_land, upward_heat_flux_in_soil_over_land, subsurface_runoff_flux, kinematic_surface_upward_latent_heat_flux_over_land, kinematic_surface_upward_sensible_heat_flux_over_land, surface_upward_potential_latent_heat_flux_over_land, surface_runoff_flux, surface_drag_wind_speed_for_momentum_in_air_over_land, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land, soil_upward_latent_heat_flux, canopy_upward_latent_heat_flux, snow_deposition_sublimation_upward_latent_heat_flux, surface_snow_area_fraction, soil_moisture_content, snow_freezing_rain_upward_latent_heat_flux, volume_fraction_of_condensed_water_in_soil_at_wilting_point, threshold_volume_fraction_of_condensed_water_in_soil, normalized_soil_wetness, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine lsm_noah_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine lsm_noah_init: soil_type_dataset_choice, vegetation_type_dataset_choice, ccpp_error_message, ccpp_error_flag, mpi_rank, iounit_namelist +DEBUG: Parsing file sascnvn.F with registry OrderedDict([('sascnvn', {'sascnvn': {'sascnvn_init': [21, 37], 'sascnvn_run': [90, 2093], 'sascnvn_finalize': [42, 43]}})]) +DEBUG: Skipping blank table sascnvn_finalize +DEBUG: Module name: sascnvn +DEBUG: Scheme name: sascnvn +DEBUG: Variables in subroutine sascnvn_init: flag_for_mass_flux_deep_convection_scheme, flag_for_sas_deep_convection_scheme, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine sascnvn_run: ccpp_error_message, ccpp_error_flag, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_vaporization_of_water_at_0C, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, temperature_at_zero_celsius, gas_constant_dry_air, specific_heat_of_water_vapor_at_constant_pressure, specific_heat_of_liquid_water_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, horizontal_loop_extent, horizontal_dimension, vertical_dimension, number_of_spectral_wave_trancation_for_sas, time_step_for_physics, air_pressure_difference_between_midlayers, air_pressure, surface_air_pressure, geopotential, cloud_condensed_water_mixing_ratio_convective_transport_tracer, ice_water_mixing_ratio_convective_transport_tracer, water_vapor_specific_humidity_updated_by_physics, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, cloud_work_function, lwe_thickness_of_deep_convective_precipitation_amount, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, sea_land_ice_mask, omega, number_of_hydrometeors, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, vertical_velocity_for_updraft, convective_cloud_fraction_for_microphysics, detrained_mass_flux, tendency_of_cloud_water_due_to_convective_microphysics, convective_cloud_volume_fraction, ice_fraction_in_convective_tower, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, entrainment_rate_coefficient_deep_convection, rain_conversion_parameter_deep_convection, detrainment_conversion_parameter_deep_convection, downdraft_fraction_reaching_surface_over_land_deep_convection, downdraft_fraction_reaching_surface_over_ocean_deep_convection, rain_evaporation_coefficient_deep_convection, rain_evaporation_coefficient_over_land_deep_convection, momentum_transport_reduction_factor_pgf_deep_convection +DEBUG: Variables in subroutine sascnvn_finalize: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {}), ('GFS_suite_interstitial_1', {}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_rad_reset +DEBUG: Scheme name: GFS_suite_interstitial_rad_reset +DEBUG: Variables in subroutine GFS_suite_interstitial_rad_reset_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_rad_reset_run: GFS_interstitial_type_instance, GFS_control_type_instance, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_suite_interstitial_rad_reset_init: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_phys_reset +DEBUG: Scheme name: GFS_suite_interstitial_phys_reset +DEBUG: Variables in subroutine GFS_suite_interstitial_phys_reset_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_phys_reset_run: GFS_interstitial_type_instance, GFS_control_type_instance, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_suite_interstitial_phys_reset_init: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_1 +DEBUG: Scheme name: GFS_suite_interstitial_1 +DEBUG: Variables in subroutine GFS_suite_interstitial_1_init: +DEBUG: Variables in subroutine GFS_suite_interstitial_1_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_1_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, time_step_for_dynamics, time_step_for_physics, sea_land_ice_mask_real, cell_area, minimum_scaling_factor_for_critical_relative_humidity, inverse_scaling_factor_for_critical_relative_humidity, surface_air_pressure, sea_land_ice_mask, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, surface_air_pressure_diag, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky, tendency_of_tracers_due_to_model_physics +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_2 +DEBUG: Scheme name: GFS_suite_interstitial_2 +DEBUG: Variables in subroutine GFS_suite_interstitial_2_init: +DEBUG: Variables in subroutine GFS_suite_interstitial_2_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_2_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, time_step_for_dynamics, surface_air_pressure, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, flag_diagnostics, flag_diagnostics_3D, flag_idealized_physics, flag_for_flux_coupling, flag_for_cice, flag_for_shallow_convection, flag_for_old_PBL_scheme, flag_for_moorthi_stratus, flag_for_shoc, flag_for_fractional_grid, flag_for_mass_flux_shallow_convection_scheme, instantaneous_cosine_of_zenith_angle, surface_downwelling_shortwave_flux, surface_downwelling_longwave_flux, sea_ice_concentration, surface_upwelling_longwave_flux_for_coupling, tendency_of_air_temperature_due_to_longwave_heating_for_idea, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, critical_cloud_top_entrainment_instability_criteria, air_pressure_at_interface, air_temperature, air_pressure, water_vapor_specific_humidity, cloud_condensed_water_mixing_ratio, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_vaporization_of_water_at_0C, dimensionless_exner_function_at_model_layers, duration_of_sunshine, surface_upwelling_longwave_flux, surface_upwelling_longwave_flux_over_land_interstitial, surface_upwelling_longwave_flux_over_ice_interstitial, surface_upwelling_longwave_flux_over_ocean_interstitial, cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep, cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep, cumulative_surface_pressure_multiplied_by_timestep, cumulative_change_in_temperature_due_to_longwave_radiation, cumulative_change_in_temperature_due_to_shortwave_radiation, cumulative_change_in_temperature_due_to_PBL, cumulative_change_in_temperature_due_to_deep_convection, cumulative_change_in_temperature_due_to_shal_convection, cumulative_change_in_temperature_due_to_microphysics, grid_sensitive_critical_cloud_top_entrainment_instability_criteria, cloud_top_entrainment_instability_value, index_of_highest_temperature_inversion, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, land_area_fraction_for_microphysics, netcdf_float_fillvalue +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [260, 261], 'GFS_suite_stateout_reset_init': [258, 259], 'GFS_suite_stateout_reset_run': [265, 285]}}), ('GFS_suite_stateout_update', {}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_stateout_reset +DEBUG: Scheme name: GFS_suite_stateout_reset +DEBUG: Variables in subroutine GFS_suite_stateout_reset_finalize: +DEBUG: Variables in subroutine GFS_suite_stateout_reset_init: +DEBUG: Variables in subroutine GFS_suite_stateout_reset_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, air_temperature, x_wind, y_wind, tracer_concentration, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, tracer_concentration_updated_by_physics +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [260, 261], 'GFS_suite_stateout_reset_init': [258, 259], 'GFS_suite_stateout_reset_run': [265, 285]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [289, 290], 'GFS_suite_stateout_update_run': [296, 319], 'GFS_suite_stateout_update_finalize': [291, 292]}}), ('GFS_suite_interstitial_3', {}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_stateout_update +DEBUG: Scheme name: GFS_suite_stateout_update +DEBUG: Variables in subroutine GFS_suite_stateout_update_init: +DEBUG: Variables in subroutine GFS_suite_stateout_update_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, time_step_for_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_tracers_due_to_model_physics, air_temperature, x_wind, y_wind, tracer_concentration, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, tracer_concentration_updated_by_physics +DEBUG: Variables in subroutine GFS_suite_stateout_update_finalize: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [260, 261], 'GFS_suite_stateout_reset_init': [258, 259], 'GFS_suite_stateout_reset_run': [265, 285]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [289, 290], 'GFS_suite_stateout_update_run': [296, 319], 'GFS_suite_stateout_update_finalize': [291, 292]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [332, 482], 'GFS_suite_interstitial_3_finalize': [325, 326], 'GFS_suite_interstitial_3_init': [323, 324]}}), ('GFS_suite_interstitial_4', {}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_3 +DEBUG: Scheme name: GFS_suite_interstitial_3 +DEBUG: Variables in subroutine GFS_suite_interstitial_3_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, sea_land_ice_mask, grid_size_related_coefficient_used_in_scale_sensitive_schemes, grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement, flag_for_shoc, air_pressure_at_interface, air_pressure, dimensionless_exner_function_at_model_layers, index_of_highest_temperature_inversion, tracer_concentration_updated_by_physics, number_of_tracers_for_convective_transport, flag_for_Chikira_Sugiyama_deep_convection, flag_for_scale_aware_TKE_moist_EDMF_PBL, flag_for_convective_transport_of_tracers, flag_for_aerosol_physics, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, index_for_cloud_amount, index_for_rain_water, index_for_snow_water, index_for_rain_number_concentration, index_for_snow_number_concentration, index_for_graupel, index_for_graupel_number_concentration, longitude, latitude, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_wsm6_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, critical_relative_humidity_at_surface, critical_relative_humidity_at_PBL_top, critical_relative_humidity_at_top_of_atmosphere, maximum_critical_relative_humidity, vertical_index_at_top_of_atmosphere_boundary_layer, flag_for_ras_deep_convection, mpi_rank, convective_transportable_tracers, critical_relative_humidity, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save +DEBUG: Variables in subroutine GFS_suite_interstitial_3_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_3_init: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [260, 261], 'GFS_suite_stateout_reset_init': [258, 259], 'GFS_suite_stateout_reset_run': [265, 285]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [289, 290], 'GFS_suite_stateout_update_run': [296, 319], 'GFS_suite_stateout_update_finalize': [291, 292]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [332, 482], 'GFS_suite_interstitial_3_finalize': [325, 326], 'GFS_suite_interstitial_3_init': [323, 324]}}), ('GFS_suite_interstitial_4', {'GFS_suite_interstitial_4': {'GFS_suite_interstitial_4_finalize': [488, 489], 'GFS_suite_interstitial_4_run': [493, 583], 'GFS_suite_interstitial_4_init': [486, 487]}}), ('GFS_suite_interstitial_5', {})]) +DEBUG: Module name: GFS_suite_interstitial_4 +DEBUG: Scheme name: GFS_suite_interstitial_4 +DEBUG: Variables in subroutine GFS_suite_interstitial_4_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_4_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, time_step_for_dynamics, air_temperature_updated_by_physics, tracer_concentration_updated_by_physics, number_of_tracers_for_convective_transport, flag_for_aerosol_physics, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, index_for_cloud_amount, index_for_rain_water, index_for_snow_water, index_for_rain_number_concentration, index_for_snow_number_concentration, index_for_graupel, index_for_graupel_number_concentration, flag_for_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_zhao_carr_pdf_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, convective_transportable_tracers, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save, flag_for_chemistry_coupling, number_of_total_tracers, pi, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection, flag_for_mass_flux_deep_convection_scheme, flag_for_gf_deep_convection_scheme +DEBUG: Variables in subroutine GFS_suite_interstitial_4_init: +DEBUG: Parsing file GFS_suite_interstitial.F90 with registry OrderedDict([('GFS_suite_interstitial_rad_reset', {'GFS_suite_interstitial_rad_reset': {'GFS_suite_interstitial_rad_reset_finalize': [6, 7], 'GFS_suite_interstitial_rad_reset_run': [11, 22], 'GFS_suite_interstitial_rad_reset_init': [4, 5]}}), ('GFS_suite_interstitial_phys_reset', {'GFS_suite_interstitial_phys_reset': {'GFS_suite_interstitial_phys_reset_finalize': [28, 29], 'GFS_suite_interstitial_phys_reset_run': [33, 44], 'GFS_suite_interstitial_phys_reset_init': [26, 27]}}), ('GFS_suite_interstitial_1', {'GFS_suite_interstitial_1': {'GFS_suite_interstitial_1_init': [48, 49], 'GFS_suite_interstitial_1_finalize': [50, 51], 'GFS_suite_interstitial_1_run': [55, 95]}}), ('GFS_suite_interstitial_2', {'GFS_suite_interstitial_2': {'GFS_suite_interstitial_2_init': [101, 102], 'GFS_suite_interstitial_2_finalize': [103, 104], 'GFS_suite_interstitial_2_run': [110, 254]}}), ('GFS_suite_stateout_reset', {'GFS_suite_stateout_reset': {'GFS_suite_stateout_reset_finalize': [260, 261], 'GFS_suite_stateout_reset_init': [258, 259], 'GFS_suite_stateout_reset_run': [265, 285]}}), ('GFS_suite_stateout_update', {'GFS_suite_stateout_update': {'GFS_suite_stateout_update_init': [289, 290], 'GFS_suite_stateout_update_run': [296, 319], 'GFS_suite_stateout_update_finalize': [291, 292]}}), ('GFS_suite_interstitial_3', {'GFS_suite_interstitial_3': {'GFS_suite_interstitial_3_run': [332, 482], 'GFS_suite_interstitial_3_finalize': [325, 326], 'GFS_suite_interstitial_3_init': [323, 324]}}), ('GFS_suite_interstitial_4', {'GFS_suite_interstitial_4': {'GFS_suite_interstitial_4_finalize': [488, 489], 'GFS_suite_interstitial_4_run': [493, 583], 'GFS_suite_interstitial_4_init': [486, 487]}}), ('GFS_suite_interstitial_5', {'GFS_suite_interstitial_5': {'GFS_suite_interstitial_5_finalize': [589, 590], 'GFS_suite_interstitial_5_run': [596, 616], 'GFS_suite_interstitial_5_init': [587, 588]}})]) +DEBUG: Module name: GFS_suite_interstitial_5 +DEBUG: Scheme name: GFS_suite_interstitial_5 +DEBUG: Variables in subroutine GFS_suite_interstitial_5_finalize: +DEBUG: Variables in subroutine GFS_suite_interstitial_5_run: ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, vertical_dimension, number_of_tracers, tracer_concentration_updated_by_physics, number_of_tracers_for_convective_transport, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, convective_transportable_tracers +DEBUG: Variables in subroutine GFS_suite_interstitial_5_init: +DEBUG: Parsing file mp_thompson_post.F90 with registry OrderedDict([('mp_thompson_post', {'mp_thompson_post': {'mp_thompson_post_init': [14, 40], 'mp_thompson_post_finalize': [102, 114], 'mp_thompson_post_run': [46, 96]}})]) +DEBUG: Module name: mp_thompson_post +DEBUG: Scheme name: mp_thompson_post +DEBUG: Variables in subroutine mp_thompson_post_init: horizontal_loop_extent, limit_for_temperature_tendency_for_microphysics, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mp_thompson_post_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mp_thompson_post_run: horizontal_loop_extent, ccpp_error_message, ccpp_error_flag, vertical_dimension, air_temperature_save, air_temperature_updated_by_physics, dimensionless_exner_function_at_model_layers, time_step_for_physics, index_of_time_step, mpi_comm, mpi_rank, mpi_root +DEBUG: Parsing file sfc_nst.f with registry OrderedDict([('sfc_nst', {'sfc_nst': {'sfc_nst_init': [10, 11], 'sfc_nst_run': [25, 550], 'sfc_nst_finalize': [16, 17]}}), ('sfc_nst_pre', {}), ('sfc_nst_post', {})]) +DEBUG: Skipping blank table sfc_nst_init +DEBUG: Skipping blank table sfc_nst_finalize +DEBUG: Module name: sfc_nst +DEBUG: Scheme name: sfc_nst +DEBUG: Variables in subroutine sfc_nst_init: +DEBUG: Variables in subroutine sfc_nst_run: horizontal_loop_extent, latent_heat_of_vaporization_of_water_at_0C, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_fusion_of_water_at_0C, joules_per_calorie_constant, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gas_constant_dry_air, sea_water_reference_density, stefan_boltzmann_constant, pi, surface_air_pressure, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, sea_surface_reference_temperature, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, air_pressure_at_lowest_model_layer, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, flag_nonzero_wet_surface_fraction, longitude, sine_of_latitude, surface_wind_stress_over_ocean, surface_longwave_emissivity_over_ocean_interstitial, surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean, surface_net_downwelling_shortwave_flux, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean, time_step_for_dynamics, index_of_time_step, forecast_hour_of_the_day, instantaneous_cosine_of_zenith_angle, wind_speed_at_lowest_model_layer, flag_for_iteration, flag_for_guess_run, flag_for_nsstm_run, vertical_temperature_average_range_lower_bound, vertical_temperature_average_range_upper_bound, flag_print, horizontal_index_of_printed_column, surface_skin_temperature_for_nsst, surface_skin_temperature_after_iteration_over_ocean, diurnal_thermocline_layer_heat_content, sea_water_salinity, diurnal_thermocline_layer_x_current, diurnal_thermocline_layer_y_current, diurnal_thermocline_layer_thickness, ocean_mixed_layer_thickness, sensitivity_of_dtl_heat_content_to_surface_temperature, sensitivity_of_dtl_thickness_to_surface_temperature, sub_layer_cooling_amount, sub_layer_cooling_thickness, coefficient_c_0, coefficient_c_d, coefficient_w_0, coefficient_w_d, free_convection_layer_thickness, index_of_dtlm_start, sensible_heat_flux_due_to_rainfall, surface_specific_humidity_over_ocean, upward_heat_flux_in_soil_over_ocean, surface_drag_wind_speed_for_momentum_in_air_over_ocean, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean, kinematic_surface_upward_latent_heat_flux_over_ocean, kinematic_surface_upward_sensible_heat_flux_over_ocean, surface_upward_potential_latent_heat_flux_over_ocean, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine sfc_nst_finalize: +DEBUG: Parsing file sfc_nst.f with registry OrderedDict([('sfc_nst', {'sfc_nst': {'sfc_nst_init': [10, 11], 'sfc_nst_run': [25, 550], 'sfc_nst_finalize': [16, 17]}}), ('sfc_nst_pre', {'sfc_nst_pre': {'sfc_nst_pre_init': [565, 566], 'sfc_nst_pre_finalize': [569, 570], 'sfc_nst_pre_run': [576, 632]}}), ('sfc_nst_post', {})]) +DEBUG: Module name: sfc_nst_pre +DEBUG: Scheme name: sfc_nst_pre +DEBUG: Variables in subroutine sfc_nst_pre_init: +DEBUG: Variables in subroutine sfc_nst_pre_finalize: +DEBUG: Variables in subroutine sfc_nst_pre_run: horizontal_loop_extent, sea_surface_reference_temperature, flag_nonzero_wet_surface_fraction, surface_skin_temperature_for_nsst, surface_skin_temperature_after_iteration_over_ocean, diurnal_thermocline_layer_heat_content, diurnal_thermocline_layer_thickness, sub_layer_cooling_amount, sub_layer_cooling_thickness, ccpp_error_message, ccpp_error_flag, surface_skin_temperature_over_ocean_interstitial, flag_for_flux_coupling, sea_area_fraction +DEBUG: Parsing file sfc_nst.f with registry OrderedDict([('sfc_nst', {'sfc_nst': {'sfc_nst_init': [10, 11], 'sfc_nst_run': [25, 550], 'sfc_nst_finalize': [16, 17]}}), ('sfc_nst_pre', {'sfc_nst_pre': {'sfc_nst_pre_init': [565, 566], 'sfc_nst_pre_finalize': [569, 570], 'sfc_nst_pre_run': [576, 632]}}), ('sfc_nst_post', {'sfc_nst_post': {'sfc_nst_post_run': [661, 709], 'sfc_nst_post_init': [644, 645], 'sfc_nst_post_finalize': [650, 651]}})]) +DEBUG: Skipping blank table sfc_nst_post_init +DEBUG: Skipping blank table sfc_nst_post_finalize +DEBUG: Module name: sfc_nst_post +DEBUG: Scheme name: sfc_nst_post +DEBUG: Variables in subroutine sfc_nst_post_run: horizontal_loop_extent, sea_surface_reference_temperature, flag_nonzero_wet_surface_fraction, longitude, flag_for_nsstm_run, vertical_temperature_average_range_lower_bound, vertical_temperature_average_range_upper_bound, surface_skin_temperature_after_iteration_over_ocean, diurnal_thermocline_layer_heat_content, diurnal_thermocline_layer_thickness, sub_layer_cooling_amount, sub_layer_cooling_thickness, ccpp_error_message, ccpp_error_flag, surface_skin_temperature_over_ocean_interstitial, air_temperature_lapse_rate_constant, freezing_point_temperature_of_seawater, flag_nonzero_sea_ice_surface_fraction, orography, orography_unfiltered, mean_change_over_depth_in_sea_water_temperature +DEBUG: Variables in subroutine sfc_nst_post_init: +DEBUG: Variables in subroutine sfc_nst_post_finalize: +DEBUG: Parsing file shalcnv.F with registry OrderedDict([('shalcnv', {'shalcnv': {'shalcnv_init': [21, 38], 'shalcnv_run': [90, 1316], 'shalcnv_finalize': [43, 44]}})]) +DEBUG: Skipping blank table shalcnv_finalize +DEBUG: Module name: shalcnv +DEBUG: Scheme name: shalcnv +DEBUG: Variables in subroutine shalcnv_init: flag_for_shoc, flag_for_shallow_convection, flag_for_mass_flux_shallow_convection_scheme, flag_for_sas_shallow_convection_scheme, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine shalcnv_run: ccpp_error_message, ccpp_error_flag, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, latent_heat_of_vaporization_of_water_at_0C, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, temperature_at_zero_celsius, gas_constant_dry_air, specific_heat_of_water_vapor_at_constant_pressure, specific_heat_of_liquid_water_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, horizontal_loop_extent, horizontal_dimension, vertical_dimension, number_of_spectral_wave_trancation_for_sas, time_step_for_physics, air_pressure_difference_between_midlayers, air_pressure, surface_air_pressure, geopotential, cloud_condensed_water_mixing_ratio_convective_transport_tracer, ice_water_mixing_ratio_convective_transport_tracer, water_vapor_specific_humidity_updated_by_physics, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, lwe_thickness_of_shallow_convective_precipitation_amount, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, sea_land_ice_mask, omega, number_of_hydrometeors, atmosphere_boundary_layer_thickness, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, entrainment_rate_coefficient_shallow_convection, rain_conversion_parameter_shallow_convection, detrainment_conversion_parameter_shallow_convection, momentum_transport_reduction_factor_pgf_shallow_convection +DEBUG: Variables in subroutine shalcnv_finalize: +DEBUG: Parsing file get_prs_fv3.F90 with registry OrderedDict([('get_prs_fv3', {'get_prs_fv3': {'get_prs_fv3_init': [11, 12], 'get_prs_fv3_finalize': [44, 45], 'get_prs_fv3_run': [16, 41]}}), ('get_phi_fv3', {})]) +DEBUG: Skipping blank table get_prs_fv3_init +DEBUG: Skipping blank table get_prs_fv3_finalize +DEBUG: Module name: get_prs_fv3 +DEBUG: Scheme name: get_prs_fv3 +DEBUG: Variables in subroutine get_prs_fv3_init: +DEBUG: Variables in subroutine get_prs_fv3_finalize: +DEBUG: Variables in subroutine get_prs_fv3_run: horizontal_dimension, vertical_dimension, geopotential_at_interface, air_pressure_at_interface, air_temperature, water_vapor_specific_humidity, air_pressure_difference_between_midlayers, geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file get_prs_fv3.F90 with registry OrderedDict([('get_prs_fv3', {'get_prs_fv3': {'get_prs_fv3_init': [11, 12], 'get_prs_fv3_finalize': [44, 45], 'get_prs_fv3_run': [16, 41]}}), ('get_phi_fv3', {'get_phi_fv3': {'get_phi_fv3_finalize': [93, 94], 'get_phi_fv3_init': [58, 59], 'get_phi_fv3_run': [63, 90]}})]) +DEBUG: Skipping blank table get_phi_fv3_finalize +DEBUG: Skipping blank table get_phi_fv3_init +DEBUG: Module name: get_phi_fv3 +DEBUG: Scheme name: get_phi_fv3 +DEBUG: Variables in subroutine get_phi_fv3_finalize: +DEBUG: Variables in subroutine get_phi_fv3_init: +DEBUG: Variables in subroutine get_phi_fv3_run: horizontal_dimension, vertical_dimension, geopotential_at_interface, geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature, ccpp_error_message, ccpp_error_flag, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, geopotential +DEBUG: Parsing file module_MYNNSFC_wrapper.F90 with registry OrderedDict([('mynnsfc_wrapper', {'mynnsfc_wrapper': {'mynnsfc_wrapper_init': [4, 5], 'mynnsfc_wrapper_run': [16, 177], 'mynnsfc_wrapper_finalize': [6, 7]}})]) +DEBUG: Module name: mynnsfc_wrapper +DEBUG: Scheme name: mynnsfc_wrapper +DEBUG: Variables in subroutine mynnsfc_wrapper_init: +DEBUG: Variables in subroutine mynnsfc_wrapper_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, ccpp_loop_counter, flag_for_first_time_step, flag_for_restart, time_step_for_physics, cell_size, x_wind, y_wind, air_temperature, water_vapor_specific_humidity, cloud_condensed_water_mixing_ratio, air_pressure, geopotential_at_interface, dimensionless_exner_function_at_model_layers, t_prime_squared, q_prime_squared, t_prime_q_prime, mixing_length, stability_function_for_heat, subgrid_cloud_mixing_ratio_pbl, subgrid_cloud_fraction_pbl, surface_air_pressure, atmosphere_boundary_layer_thickness, sea_land_ice_mask_real, surface_skin_temperature, surface_specific_humidity, surface_snow_thickness_water_equivalent, surface_roughness_length, surface_friction_velocity, surface_friction_velocity_drag, surface_stability_parameter, theta_star, reciprocal_of_obukhov_length, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, Monin_Obukhov_similarity_function_for_momentum_at_10m, Monin_Obukhov_similarity_function_for_heat_at_2m, wind_speed_at_lowest_model_layer, bulk_richardson_number_at_lowest_model_level, surface_drag_wind_speed_for_momentum_in_air, kinematic_surface_upward_sensible_heat_flux, kinematic_surface_upward_latent_heat_flux, surface_latent_heat, surface_exchange_coefficient_for_heat, surface_exchange_coefficient_for_moisture, x_wind_at_10m, y_wind_at_10m, potential_temperature_at_2m, temperature_at_2m, specific_humidity_at_2m, surface_wind_enhancement_due_to_convection, surface_exchange_coefficient_for_heat_at_2m, surface_exchange_coefficient_for_moisture_at_2m, surface_drag_coefficient_for_momentum_in_air, surface_drag_coefficient_for_heat_and_moisture_in_air, surface_wind_stress, cloudpdf, couple_sgs_clouds_to_radiation_flag, flag_print, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mynnsfc_wrapper_finalize: +DEBUG: Parsing file module_MYJSFC_wrapper.F90 with registry OrderedDict([('myjsfc_wrapper', {'myjsfc_wrapper': {'myjsfc_wrapper_finalize': [7, 8], 'myjsfc_wrapper_init': [5, 6], 'myjsfc_wrapper_run': [15, 329]}})]) +DEBUG: Module name: myjsfc_wrapper +DEBUG: Scheme name: myjsfc_wrapper +DEBUG: Variables in subroutine myjsfc_wrapper_finalize: +DEBUG: Variables in subroutine myjsfc_wrapper_init: +DEBUG: Variables in subroutine myjsfc_wrapper_run: flag_for_restart, horizontal_dimension, horizontal_loop_extent, vertical_dimension, index_of_time_step, number_of_tracers, index_for_turbulent_kinetic_energy, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_graupel, ccpp_loop_counter, flag_for_iteration, x_wind, y_wind, air_temperature, tracer_concentration, air_pressure, air_pressure_at_interface, geopotential_at_interface, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, surface_skin_temperature, surface_specific_humidity, surface_specific_humidity_for_MYJ_schemes, potential_temperature_at_viscous_sublayer_top, specific_humidity_at_viscous_sublayer_top, u_wind_component_at_viscous_sublayer_top, v_wind_component_at_viscous_sublayer_top, baseline_surface_roughness_length, heat_exchange_coefficient_for_MYJ_schemes, momentum_exchange_coefficient_for_MYJ_schemes, surface_layer_evaporation_switch, kinematic_surface_latent_heat_flux, weight_for_momentum_at_viscous_sublayer_top, weight_for_potental_temperature_at_viscous_sublayer_top, weight_for_specific_humidity_at_viscous_sublayer_top, atmosphere_boundary_layer_thickness, sea_land_ice_mask_real, surface_roughness_length, surface_friction_velocity, bulk_richardson_number_at_lowest_model_level, surface_drag_coefficient_for_momentum_in_air, surface_drag_coefficient_for_heat_and_moisture_in_air, surface_wind_stress, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, Monin_Obukhov_similarity_function_for_momentum_at_10m, Monin_Obukhov_similarity_function_for_heat_at_2m, land_area_fraction, lake_area_fraction, sea_area_fraction, sea_ice_concentration, surface_roughness_length_over_ocean_interstitial, surface_roughness_length_over_land_interstitial, surface_roughness_length_over_ice_interstitial, surface_friction_velocity_over_ocean, surface_friction_velocity_over_land, surface_friction_velocity_over_ice, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, bulk_richardson_number_at_lowest_model_level_over_ocean, bulk_richardson_number_at_lowest_model_level_over_land, bulk_richardson_number_at_lowest_model_level_over_ice, surface_wind_stress_over_ocean, surface_wind_stress_over_land, surface_wind_stress_over_ice, Monin_Obukhov_similarity_function_for_momentum_over_ocean, Monin_Obukhov_similarity_function_for_momentum_over_land, Monin_Obukhov_similarity_function_for_momentum_over_ice, Monin_Obukhov_similarity_function_for_heat_over_ocean, Monin_Obukhov_similarity_function_for_heat_over_land, Monin_Obukhov_similarity_function_for_heat_over_ice, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean, Monin_Obukhov_similarity_function_for_heat_at_2m_over_land, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice, wind_speed_at_lowest_model_layer, specific_heat_of_dry_air_at_constant_pressure, gravitational_acceleration, gas_constant_dry_air, mpi_rank, flag_print, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file module_MYNNPBL_wrapper.F90 with registry OrderedDict([('mynnedmf_wrapper', {'mynnedmf_wrapper': {'mynnedmf_wrapper_init': [9, 10], 'mynnedmf_wrapper_finalize': [11, 12], 'mynnedmf_wrapper_run': [19, 587]}})]) +DEBUG: Module name: mynnedmf_wrapper +DEBUG: Scheme name: mynnedmf_wrapper +DEBUG: Variables in subroutine mynnedmf_wrapper_init: +DEBUG: Variables in subroutine mynnedmf_wrapper_finalize: +DEBUG: Variables in subroutine mynnedmf_wrapper_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, flag_for_first_time_step, flag_for_restart, flag_diagnostics, flag_diagnostics_3D, flag_idealized_physics, time_step_for_physics, time_step_for_dynamics, cell_size, surface_roughness_length, geopotential_at_interface, x_wind, y_wind, omega, air_temperature, water_vapor_specific_humidity, cloud_condensed_water_mixing_ratio, ice_water_mixing_ratio, cloud_droplet_number_concentration, ice_number_concentration, ozone_mixing_ratio, water_friendly_aerosol_number_concentration, ice_friendly_aerosol_number_concentration, air_pressure, dimensionless_exner_function_at_model_layers, sea_land_ice_mask_real, surface_skin_temperature, surface_specific_humidity, surface_air_pressure, surface_friction_velocity, surface_drag_wind_speed_for_momentum_in_air, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, wind_speed_at_lowest_model_layer, bulk_richardson_number_at_lowest_model_level, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, instantaneous_surface_upward_sensible_heat_flux_for_diag, instantaneous_surface_upward_latent_heat_flux_for_diag, cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep, cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep, reciprocal_of_obukhov_length, tke_at_mass_points, turbulent_kinetic_energy, t_prime_squared, q_prime_squared, t_prime_q_prime, mixing_length, stability_function_for_heat, atmosphere_heat_diffusivity_for_mynnpbl, atmosphere_momentum_diffusivity_for_mynnpbl, atmosphere_boundary_layer_thickness, vertical_index_at_top_of_atmosphere_boundary_layer, subgrid_cloud_mixing_ratio_pbl, subgrid_cloud_fraction_pbl, emdf_updraft_area, emdf_updraft_vertical_velocity, emdf_updraft_total_water, emdf_updraft_theta_l, emdf_updraft_entrainment_rate, emdf_updraft_cloud_water, number_of_plumes, maximum_mass_flux, k_level_of_highest_reaching_plume, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_water_vapor_specific_humidity_due_to_model_physics, tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics, tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics, tendency_of_ozone_mixing_ratio_due_to_model_physics, tendency_of_cloud_droplet_number_concentration_due_to_model_physics, tendency_of_ice_number_concentration_due_to_model_physics, tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics, tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics, cumulative_change_in_temperature_due_to_PBL, cumulative_change_in_x_wind_due_to_PBL, cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_PBL, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, grav_settling, tke_budget, tke_advect, cloudpdf, mixing_length_flag, edmf_flag, edmf_momentum_transport_flag, edmf_tke_transport_flag, edmf_partition_flag, cloud_specie_mix_flag, mix_total_water_flag, couple_sgs_clouds_to_radiation_flag, do_mynnsfclay, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_wsm6_microphysics_scheme, flag_for_aerosol_physics, flag_print, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file sfc_drv_ruc.F90 with registry OrderedDict([('lsm_ruc', {'lsm_ruc': {'lsm_ruc_finalize': [31, 38], 'lsm_ruc_run': [116, 832], 'lsm_ruc_init': [17, 27]}})]) +DEBUG: Module name: lsm_ruc +DEBUG: Scheme name: lsm_ruc +DEBUG: Variables in subroutine lsm_ruc_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine lsm_ruc_run: ccpp_error_message, ccpp_error_flag, time_step_for_dynamics, mpi_rank, mpi_root, index_of_time_step, ccpp_loop_counter, horizontal_loop_extent, vertical_dimension, flag_for_ruc_land_surface_scheme, flag_for_land_surface_scheme, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, do_mynnsfclay, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_for_reading_leaf_area_index_from_input, depth_of_soil_levels_for_land_surface_model, specific_heat_of_dry_air_at_constant_pressure, gravitational_acceleration, pi, gas_constant_dry_air, gas_constant_water_vapor, latent_heat_of_vaporization_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, flag_nonzero_land_surface_fraction, sea_land_ice_mask, lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep, lwe_thickness_of_convective_precipitation_amount_from_previous_timestep, lwe_thickness_of_ice_amount_from_previous_timestep, lwe_thickness_of_snow_amount_from_previous_timestep, lwe_thickness_of_graupel_amount_from_previous_timestep, flag_for_precipitation_type, surface_snow_area_fraction_over_land, water_equivalent_accumulated_snow_depth_over_land, surface_snow_thickness_water_equivalent_over_land, density_of_frozen_precipitation, height_above_ground_at_lowest_model_layer, air_pressure_at_lowest_model_layer, wind_speed_at_lowest_model_layer, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, cloud_condensed_water_mixing_ratio_at_lowest_model_layer, surface_downwelling_longwave_flux, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, surface_longwave_emissivity_over_land_interstitial, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land, surface_drag_wind_speed_for_momentum_in_air_over_land, normalized_soil_wetness_for_land_surface_model, canopy_water_amount, vegetation_area_fraction, leaf_area_index, surface_diffused_shortwave_albedo, mean_vis_albedo_with_weak_cosz_dependency, mean_nir_albedo_with_weak_cosz_dependency, upper_bound_on_max_albedo_over_deep_snow, surface_roughness_length_over_land_interstitial, surface_specific_humidity_over_land, cloud_condensed_water_mixing_ratio_at_surface, water_vapor_mixing_ratio_at_surface, surface_condensation_mass, deep_soil_temperature, volume_fraction_of_soil_moisture, volume_fraction_of_unfrozen_soil_moisture, soil_temperature, volume_fraction_of_condensed_water_in_soil_at_wilting_point, threshold_volume_fraction_of_condensed_water_in_soil, vegetation_type_classification, soil_type_classification, soil_type_dataset_choice, vegetation_type_dataset_choice, sea_ice_concentration, flag_for_frozen_soil_physics, volume_fraction_of_soil_moisture_for_land_surface_model, volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model, volume_fraction_of_frozen_soil_moisture_for_land_surface_model, soil_temperature_for_land_surface_model, soil_moisture_content, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_after_iteration_over_land, sea_ice_temperature_interstitial, snow_temperature_bottom_first_layer, total_accumulated_snowfall, accumulated_water_equivalent_of_frozen_precip, kinematic_surface_upward_latent_heat_flux_over_land, kinematic_surface_upward_sensible_heat_flux_over_land, soil_upward_latent_heat_flux, canopy_upward_latent_heat_flux, snow_deposition_sublimation_upward_latent_heat_flux, transpiration_flux, surface_runoff_flux, subsurface_runoff_flux, total_runoff, surface_runoff, upward_heat_flux_in_soil_over_land, minimum_vegetation_area_fraction, maximum_vegetation_area_fraction, flag_for_iteration, flag_for_guess_run, flag_for_first_time_step, flag_for_restart +DEBUG: Variables in subroutine lsm_ruc_init: ccpp_error_message, ccpp_error_flag, mpi_rank, soil_type_dataset_choice, vegetation_type_dataset_choice, iounit_namelist +DEBUG: Parsing file module_MYNNrad_pre.F90 with registry OrderedDict([('mynnrad_pre', {'mynnrad_pre': {'mynnrad_pre_init': [6, 7], 'mynnrad_pre_run': [27, 98], 'mynnrad_pre_finalize': [8, 9]}})]) +DEBUG: Module name: mynnrad_pre +DEBUG: Scheme name: mynnrad_pre +DEBUG: Variables in subroutine mynnrad_pre_init: +DEBUG: Variables in subroutine mynnrad_pre_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, flag_for_first_time_step, flag_for_restart, cloud_condensed_water_mixing_ratio, ice_water_mixing_ratio, air_temperature, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save, subgrid_cloud_mixing_ratio_pbl, subgrid_cloud_fraction_pbl, layer_pressure_thickness_for_radiation, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, sea_land_ice_mask_real, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mynnrad_pre_finalize: +DEBUG: Parsing file drag_suite.F90 with registry OrderedDict([('drag_suite', {'drag_suite': {'drag_suite_finalize': [1167, 1168], 'drag_suite_run': [186, 1162], 'drag_suite_init': [8, 9]}})]) +DEBUG: Skipping blank table drag_suite_finalize +DEBUG: Skipping blank table drag_suite_init +DEBUG: Module name: drag_suite +DEBUG: Scheme name: drag_suite +DEBUG: Variables in subroutine drag_suite_finalize: +DEBUG: Variables in subroutine drag_suite_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, x_wind, y_wind, air_temperature, water_vapor_specific_humidity, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, index_of_time_step, standard_deviation_of_subgrid_orography, convexity_of_subgrid_orography, asymmetry_of_subgrid_orography, fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height, angle_from_east_of_maximum_subgrid_orographic_variations, slope_of_subgrid_orography, anisotropy_of_subgrid_orography, maximum_subgrid_orography, x_momentum_tendency_from_large_scale_gwd, y_momentum_tendency_from_large_scale_gwd, x_momentum_tendency_from_blocking_drag, y_momentum_tendency_from_blocking_drag, x_momentum_tendency_from_small_scale_gwd, y_momentum_tendency_from_small_scale_gwd, x_momentum_tendency_from_form_drag, y_momentum_tendency_from_form_drag, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, integrated_x_momentum_flux_from_large_scale_gwd, integrated_y_momentum_flux_from_large_scale_gwd, integrated_x_momentum_flux_from_blocking_drag, integrated_y_momentum_flux_from_blocking_drag, integrated_x_momentum_flux_from_small_scale_gwd, integrated_y_momentum_flux_from_small_scale_gwd, integrated_x_momentum_flux_from_form_drag, integrated_y_momentum_flux_from_form_drag, sea_land_ice_mask_real, bulk_richardson_number_at_lowest_model_level, atmosphere_boundary_layer_thickness, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, pi, number_of_equatorial_longitude_points, multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag, mpi_rank, mpi_root, flag_print, horizontal_index_of_printed_column, level_of_dividing_streamline, cell_size, gwd_opt, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine drag_suite_init: +DEBUG: Parsing file lsm_ruc_sfc_sice_interstitial.F90 with registry OrderedDict([('lsm_ruc_sfc_sice_pre', {'lsm_ruc_sfc_sice_pre': {'lsm_ruc_sfc_sice_pre_finalize': [8, 9], 'lsm_ruc_sfc_sice_pre_run': [15, 43], 'lsm_ruc_sfc_sice_pre_init': [6, 7]}}), ('lsm_ruc_sfc_sice_post', {})]) +DEBUG: Module name: lsm_ruc_sfc_sice_pre +DEBUG: Scheme name: lsm_ruc_sfc_sice_pre +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_pre_finalize: +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_pre_run: horizontal_loop_extent, ice_vertical_dimension, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, internal_ice_temperature, soil_temperature, soil_temperature_for_land_surface_model, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_pre_init: +DEBUG: Parsing file lsm_ruc_sfc_sice_interstitial.F90 with registry OrderedDict([('lsm_ruc_sfc_sice_pre', {'lsm_ruc_sfc_sice_pre': {'lsm_ruc_sfc_sice_pre_finalize': [8, 9], 'lsm_ruc_sfc_sice_pre_run': [15, 43], 'lsm_ruc_sfc_sice_pre_init': [6, 7]}}), ('lsm_ruc_sfc_sice_post', {'lsm_ruc_sfc_sice_post': {'lsm_ruc_sfc_sice_post_finalize': [53, 54], 'lsm_ruc_sfc_sice_post_init': [51, 52], 'lsm_ruc_sfc_sice_post_run': [60, 88]}})]) +DEBUG: Module name: lsm_ruc_sfc_sice_post +DEBUG: Scheme name: lsm_ruc_sfc_sice_post +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_post_finalize: +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_post_init: +DEBUG: Variables in subroutine lsm_ruc_sfc_sice_post_run: horizontal_loop_extent, ice_vertical_dimension, soil_vertical_dimension_for_land_surface_model, soil_vertical_dimension, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, internal_ice_temperature, soil_temperature, soil_temperature_for_land_surface_model, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file module_MYNNrad_post.F90 with registry OrderedDict([('mynnrad_post', {'mynnrad_post': {'mynnrad_post_finalize': [7, 8], 'mynnrad_post_run': [17, 49], 'mynnrad_post_init': [5, 6]}})]) +DEBUG: Module name: mynnrad_post +DEBUG: Scheme name: mynnrad_post +DEBUG: Variables in subroutine mynnrad_post_finalize: +DEBUG: Variables in subroutine mynnrad_post_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, flag_for_first_time_step, flag_for_restart, cloud_condensed_water_mixing_ratio, ice_water_mixing_ratio, cloud_condensed_water_mixing_ratio_save, ice_water_mixing_ratio_save, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mynnrad_post_init: +DEBUG: Parsing file gcm_shoc.F90 with registry OrderedDict([('shoc', {'shoc': {'shoc_finalize': [11, 12], 'shoc_init': [9, 10], 'shoc_run': [18, 115]}})]) +DEBUG: Module name: shoc +DEBUG: Scheme name: shoc +DEBUG: Variables in subroutine shoc_finalize: +DEBUG: Variables in subroutine shoc_init: +DEBUG: Variables in subroutine shoc_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, cloud_phase_transition_threshold_temperature, cloud_phase_transition_denominator, specific_heat_of_dry_air_at_constant_pressure, gravitational_acceleration, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, gas_constant_water_vapor, gas_constant_dry_air, pi, ratio_of_vapor_to_dry_air_gas_constants_minus_one, time_step_for_physics, air_pressure, air_pressure_difference_between_midlayers, geopotential_at_interface, geopotential, x_wind_updated_by_physics, y_wind_updated_by_physics, omega, critical_relative_humidity, ice_supersaturation_threshold, shoc_tke_dissipatation_pressure_threshold, shoc_tke_dissipation_tunable_parameter, shoc_tke_dissipation_tunable_parameter_near_surface, shoc_implicit_TKE_integration_uncentering_term, shoc_flag_for_optional_surface_TKE_dissipation, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, prandtl_number, air_temperature_updated_by_physics, tracer_concentration_updated_by_physics, number_of_tracers, index_for_water_vapor, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_graupel, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, subgrid_scale_cloud_fraction_from_shoc, turbulent_kinetic_energy_convective_transport_tracer, atmosphere_heat_diffusivity_from_shoc, kinematic_buoyancy_flux_from_shoc, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_rrtmgp_pre.F90 with registry OrderedDict([('GFS_rrtmgp_pre', {'GFS_rrtmgp_pre': {'GFS_rrtmgp_pre_finalize': [351, 352], 'GFS_rrtmgp_pre_init': [69, 146], 'GFS_rrtmgp_pre_run': [153, 347]}})]) +DEBUG: Module name: GFS_rrtmgp_pre +DEBUG: Scheme name: GFS_rrtmgp_pre +DEBUG: Variables in subroutine GFS_rrtmgp_pre_finalize: +DEBUG: Variables in subroutine GFS_rrtmgp_pre_init: GFS_control_type_instance, GFS_radtend_type_instance, list_of_active_gases_used_by_RRTMGP, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_pre_run: GFS_control_type_instance, GFS_radtend_type_instance, list_of_active_gases_used_by_RRTMGP, ccpp_error_message, ccpp_error_flag, GFS_grid_type_instance, GFS_sfcprop_type_instance, GFS_statein_type_instance, GFS_tbd_type_instance, GFS_coupling_type_instance, horizontal_loop_extent, coefficients_for_lw_gas_optics, time_step_for_radiation, secant_of_diffusivity_angle_each_RRTMGP_LW_band, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, air_temperature_at_interface_for_RRTMGP, surface_ground_temperature_for_radiation, surface_air_temperature_for_radiation, virtual_temperature, relative_humidity, chemical_tracers, total_cloud_fraction, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_snow_water_path, mean_effective_radius_for_snow_flake, cloud_rain_water_path, mean_effective_radius_for_rain_drop, model_layer_number_at_cloud_top, model_layer_number_at_cloud_base, cloud_decorrelation_length, cloud_area_fraction_for_radiation, Gas_concentrations_for_RRTMGP_suite +DEBUG: Parsing file GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [16, 145], 'GFS_surface_composites_pre_finalize': [11, 12], 'GFS_surface_composites_pre_init': [9, 10]}}), ('GFS_surface_composites_inter', {}), ('GFS_surface_composites_post', {})]) +DEBUG: Module name: GFS_surface_composites_pre +DEBUG: Scheme name: GFS_surface_composites_pre +DEBUG: Variables in subroutine GFS_surface_composites_pre_run: horizontal_loop_extent, flag_for_fractional_grid, flag_for_cice, flag_for_flux_coupling, flag_for_wave_coupling_to_atm, land_area_fraction, lake_area_fraction, sea_area_fraction, land_area_fraction_for_microphysics, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_lake_surface_fraction, flag_nonzero_ocean_surface_fraction, flag_nonzero_wet_surface_fraction, sea_ice_concentration, minimum_sea_ice_concentration, surface_roughness_length, surface_roughness_length_over_ocean, surface_roughness_length_over_land, surface_roughness_length_over_ocean_interstitial, surface_roughness_length_over_land_interstitial, surface_roughness_length_over_ice_interstitial, surface_snow_thickness_water_equivalent, surface_snow_thickness_water_equivalent_over_ocean, surface_snow_thickness_water_equivalent_over_land, surface_snow_thickness_water_equivalent_over_ice, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice, surface_friction_velocity, surface_friction_velocity_over_land, surface_friction_velocity_over_ice, water_equivalent_accumulated_snow_depth, water_equivalent_accumulated_snow_depth_over_ocean, water_equivalent_accumulated_snow_depth_over_land, water_equivalent_accumulated_snow_depth_over_ice, surface_upward_potential_latent_heat_flux_over_ice, surface_skin_temperature, sea_surface_temperature, surface_skin_temperature_over_land, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ice_interstitial, sea_ice_temperature, sea_ice_temperature_interstitial, surface_skin_temperature_after_iteration, surface_skin_temperature_after_iteration_over_ocean, surface_skin_temperature_after_iteration_over_land, surface_skin_temperature_after_iteration_over_ice, upward_heat_flux_in_soil_over_ice, freezing_point_temperature_of_seawater, sea_land_ice_mask, surface_longwave_emissivity, surface_longwave_emissivity_over_ocean_interstitial, surface_longwave_emissivity_over_land_interstitial, surface_longwave_emissivity_over_ice_interstitial, lake_ice_minimum, sea_ice_minimum, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_surface_composites_pre_finalize: +DEBUG: Variables in subroutine GFS_surface_composites_pre_init: +DEBUG: Parsing file GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [16, 145], 'GFS_surface_composites_pre_finalize': [11, 12], 'GFS_surface_composites_pre_init': [9, 10]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [160, 199], 'GFS_surface_composites_inter_init': [153, 154], 'GFS_surface_composites_inter_finalize': [155, 156]}}), ('GFS_surface_composites_post', {})]) +DEBUG: Module name: GFS_surface_composites_inter +DEBUG: Scheme name: GFS_surface_composites_inter +DEBUG: Variables in subroutine GFS_surface_composites_inter_run: horizontal_loop_extent, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, surface_longwave_emissivity_over_ocean_interstitial, surface_longwave_emissivity_over_land_interstitial, surface_longwave_emissivity_over_ice_interstitial, ccpp_error_message, ccpp_error_flag, surface_downwelling_longwave_flux, surface_downwelling_longwave_flux_absorbed_by_ground_over_land, surface_downwelling_longwave_flux_absorbed_by_ground_over_ice, surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean, surface_downwelling_shortwave_flux, surface_net_downwelling_shortwave_flux, surface_upwelling_shortwave_flux +DEBUG: Variables in subroutine GFS_surface_composites_inter_init: +DEBUG: Variables in subroutine GFS_surface_composites_inter_finalize: +DEBUG: Parsing file GFS_surface_composites.F90 with registry OrderedDict([('GFS_surface_composites_pre', {'GFS_surface_composites_pre': {'GFS_surface_composites_pre_run': [16, 145], 'GFS_surface_composites_pre_finalize': [11, 12], 'GFS_surface_composites_pre_init': [9, 10]}}), ('GFS_surface_composites_inter', {'GFS_surface_composites_inter': {'GFS_surface_composites_inter_run': [160, 199], 'GFS_surface_composites_inter_init': [153, 154], 'GFS_surface_composites_inter_finalize': [155, 156]}}), ('GFS_surface_composites_post', {'GFS_surface_composites_post': {'GFS_surface_composites_post_init': [208, 209], 'GFS_surface_composites_post_finalize': [210, 211], 'GFS_surface_composites_post_run': [217, 408]}})]) +DEBUG: Module name: GFS_surface_composites_post +DEBUG: Scheme name: GFS_surface_composites_post +DEBUG: Variables in subroutine GFS_surface_composites_post_init: +DEBUG: Variables in subroutine GFS_surface_composites_post_finalize: +DEBUG: Variables in subroutine GFS_surface_composites_post_run: horizontal_loop_extent, flag_for_fractional_grid, flag_for_cice, flag_for_flux_coupling, flag_for_wave_coupling_to_atm, land_area_fraction, lake_area_fraction, sea_area_fraction, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, sea_ice_concentration, surface_roughness_length, surface_roughness_length_over_ocean, surface_roughness_length_over_land, surface_roughness_length_over_ocean_interstitial, surface_roughness_length_over_land_interstitial, surface_roughness_length_over_ice_interstitial, surface_snow_thickness_water_equivalent, surface_snow_thickness_water_equivalent_over_ocean, surface_snow_thickness_water_equivalent_over_land, surface_snow_thickness_water_equivalent_over_ice, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice, surface_friction_velocity, surface_friction_velocity_over_land, surface_friction_velocity_over_ice, water_equivalent_accumulated_snow_depth, water_equivalent_accumulated_snow_depth_over_ocean, water_equivalent_accumulated_snow_depth_over_land, water_equivalent_accumulated_snow_depth_over_ice, surface_upward_potential_latent_heat_flux_over_ice, surface_skin_temperature, sea_surface_temperature, surface_skin_temperature_over_land, surface_skin_temperature_over_ocean_interstitial, surface_skin_temperature_over_land_interstitial, surface_skin_temperature_over_ice_interstitial, sea_ice_temperature, sea_ice_temperature_interstitial, surface_skin_temperature_after_iteration, surface_skin_temperature_after_iteration_over_ocean, surface_skin_temperature_after_iteration_over_land, surface_skin_temperature_after_iteration_over_ice, upward_heat_flux_in_soil_over_ice, sea_land_ice_mask, ccpp_error_message, ccpp_error_flag, ice_vertical_dimension, soil_vertical_dimension, surface_drag_coefficient_for_momentum_in_air, surface_drag_coefficient_for_momentum_in_air_over_ocean, surface_drag_coefficient_for_momentum_in_air_over_land, surface_drag_coefficient_for_momentum_in_air_over_ice, surface_drag_coefficient_for_heat_and_moisture_in_air, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean, surface_drag_coefficient_for_heat_and_moisture_in_air_over_land, surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice, bulk_richardson_number_at_lowest_model_level, bulk_richardson_number_at_lowest_model_level_over_ocean, bulk_richardson_number_at_lowest_model_level_over_land, bulk_richardson_number_at_lowest_model_level_over_ice, surface_wind_stress, surface_wind_stress_over_ocean, surface_wind_stress_over_land, surface_wind_stress_over_ice, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_momentum_over_ocean, Monin_Obukhov_similarity_function_for_momentum_over_land, Monin_Obukhov_similarity_function_for_momentum_over_ice, Monin_Obukhov_similarity_function_for_heat, Monin_Obukhov_similarity_function_for_heat_over_ocean, Monin_Obukhov_similarity_function_for_heat_over_land, Monin_Obukhov_similarity_function_for_heat_over_ice, surface_friction_velocity_over_ocean, Monin_Obukhov_similarity_function_for_momentum_at_10m, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land, Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice, Monin_Obukhov_similarity_function_for_heat_at_2m, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean, Monin_Obukhov_similarity_function_for_heat_at_2m_over_land, Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice, surface_drag_wind_speed_for_momentum_in_air, surface_drag_wind_speed_for_momentum_in_air_over_ocean, surface_drag_wind_speed_for_momentum_in_air_over_land, surface_drag_wind_speed_for_momentum_in_air_over_ice, surface_drag_mass_flux_for_heat_and_moisture_in_air, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land, surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice, upward_heat_flux_in_soil, upward_heat_flux_in_soil_over_ocean, upward_heat_flux_in_soil_over_land, surface_upward_potential_latent_heat_flux, surface_upward_potential_latent_heat_flux_over_ocean, surface_upward_potential_latent_heat_flux_over_land, kinematic_surface_upward_latent_heat_flux, kinematic_surface_upward_latent_heat_flux_over_ocean, kinematic_surface_upward_latent_heat_flux_over_land, kinematic_surface_upward_latent_heat_flux_over_ice, kinematic_surface_upward_sensible_heat_flux, kinematic_surface_upward_sensible_heat_flux_over_ocean, kinematic_surface_upward_sensible_heat_flux_over_land, kinematic_surface_upward_sensible_heat_flux_over_ice, surface_specific_humidity, surface_specific_humidity_over_ocean, surface_specific_humidity_over_land, surface_specific_humidity_over_ice, sea_ice_thickness, internal_ice_temperature, soil_temperature +DEBUG: Parsing file GFS_MP_generic.F90 with registry OrderedDict([('GFS_MP_generic_pre', {'GFS_MP_generic_pre': {'GFS_MP_generic_pre_finalize': [43, 44], 'GFS_MP_generic_pre_init': [8, 9], 'GFS_MP_generic_pre_run': [13, 40]}}), ('GFS_MP_generic_post', {})]) +DEBUG: Skipping blank table GFS_MP_generic_pre_finalize +DEBUG: Skipping blank table GFS_MP_generic_pre_init +DEBUG: Module name: GFS_MP_generic_pre +DEBUG: Scheme name: GFS_MP_generic_pre +DEBUG: Variables in subroutine GFS_MP_generic_pre_finalize: +DEBUG: Variables in subroutine GFS_MP_generic_pre_init: +DEBUG: Variables in subroutine GFS_MP_generic_pre_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, flag_for_Arakawa_Wu_adjustment, index_for_liquid_cloud_condensate, number_of_tracers_for_cloud_condensate, number_of_tracers, air_temperature_updated_by_physics, tracer_concentration_updated_by_physics, air_temperature_save, tracer_concentration_save, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_MP_generic.F90 with registry OrderedDict([('GFS_MP_generic_pre', {'GFS_MP_generic_pre': {'GFS_MP_generic_pre_finalize': [43, 44], 'GFS_MP_generic_pre_init': [8, 9], 'GFS_MP_generic_pre_run': [13, 40]}}), ('GFS_MP_generic_post', {'GFS_MP_generic_post': {'GFS_MP_generic_post_init': [53, 54], 'GFS_MP_generic_post_run': [65, 316], 'GFS_MP_generic_post_finalize': [320, 321]}})]) +DEBUG: Skipping blank table GFS_MP_generic_post_init +DEBUG: Skipping blank table GFS_MP_generic_post_finalize +DEBUG: Module name: GFS_MP_generic_post +DEBUG: Scheme name: GFS_MP_generic_post +DEBUG: Variables in subroutine GFS_MP_generic_post_init: +DEBUG: Variables in subroutine GFS_MP_generic_post_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, index_for_liquid_cloud_condensate, number_of_tracers_for_cloud_condensate, number_of_tracers, air_temperature_updated_by_physics, tracer_concentration_updated_by_physics, air_temperature_save, ccpp_error_message, ccpp_error_flag, horizontal_dimension, index_of_time_step, array_dimension_of_random_number, number_of_hydrometeors, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, flag_for_precipitation_type_algorithm, flag_diagnostics, flag_for_flux_coupling, flag_for_chemistry_coupling, gravitational_acceleration, time_step_for_dynamics, dynamics_to_physics_timestep_ratio, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, lwe_thickness_of_explicit_precipitation_amount, random_number_array, latitude, longitude, air_pressure, air_pressure_at_interface, geopotential_at_interface, surface_skin_temperature, lwe_thickness_of_ice_amount_on_dynamics_timestep, lwe_thickness_of_snow_amount_on_dynamics_timestep, lwe_thickness_of_graupel_amount_on_dynamics_timestep, water_vapor_specific_humidity_save, lwe_thickness_of_explicit_rain_amount, lwe_thickness_of_ice_amount, lwe_thickness_of_snow_amount, lwe_thickness_of_graupel_amount, air_pressure_difference_between_midlayers, lwe_thickness_of_precipitation_amount_on_dynamics_timestep, dominant_rain_type, dominant_freezing_rain_type, dominant_sleet_type, dominant_snow_type, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep, flag_for_precipitation_type, ratio_of_snowfall_to_rainfall, cumulative_lwe_thickness_of_convective_precipitation_amount, accumulated_lwe_thickness_of_precipitation_amount, accumulated_lwe_thickness_of_ice_amount, accumulated_lwe_thickness_of_snow_amount, accumulated_lwe_thickness_of_graupel_amount, cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket, accumulated_lwe_thickness_of_precipitation_amount_in_bucket, accumulated_lwe_thickness_of_ice_amount_in_bucket, accumulated_lwe_thickness_of_snow_amount_in_bucket, accumulated_lwe_thickness_of_graupel_amount_in_bucket, cumulative_change_in_temperature_due_to_microphysics, cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics, lwe_thickness_of_precipitation_amount_for_coupling, lwe_thickness_of_convective_precipitation_amount_for_coupling, lwe_thickness_of_snow_amount_for_coupling, column_precipitable_water, flag_for_stochastic_surface_physics_perturbations, flag_for_global_cellular_automata, tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step, tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky, tendency_of_lwe_thickness_of_precipitation_amount_for_coupling, tendency_of_lwe_thickness_of_snow_amount_for_coupling, flag_for_land_surface_scheme, flag_for_ruc_land_surface_scheme, flag_for_noahmp_land_surface_scheme, lwe_thickness_of_convective_precipitation_amount_from_previous_timestep, lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep, lwe_thickness_of_ice_amount_from_previous_timestep, lwe_thickness_of_snow_amount_from_previous_timestep, lwe_thickness_of_graupel_amount_from_previous_timestep, convective_precipitation_rate_from_previous_timestep, explicit_rainfall_rate_from_previous_timestep, ice_precipitation_rate_from_previous_timestep, snow_precipitation_rate_from_previous_timestep, graupel_precipitation_rate_from_previous_timestep, time_step_for_physics +DEBUG: Variables in subroutine GFS_MP_generic_post_finalize: +DEBUG: Parsing file gscond.f with registry OrderedDict([('zhaocarr_gscond', {'zhaocarr_gscond': {'zhaocarr_gscond_finalize': [17, 18], 'zhaocarr_gscond_run': [38, 482], 'zhaocarr_gscond_init': [11, 12]}})]) +DEBUG: Module name: zhaocarr_gscond +DEBUG: Scheme name: zhaocarr_gscond +DEBUG: Variables in subroutine zhaocarr_gscond_finalize: +DEBUG: Variables in subroutine zhaocarr_gscond_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, time_step_for_physics, time_step_for_dynamics, air_pressure, surface_air_pressure, water_vapor_specific_humidity_updated_by_physics, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_updated_by_physics, air_temperature_updated_by_physics, air_temperature_two_time_steps_back, water_vapor_specific_humidity_two_time_steps_back, surface_air_pressure_two_time_steps_back, air_temperature_at_previous_time_step, water_vapor_specific_humidity_at_previous_time_step, surface_air_pressure_at_previous_time_step, critical_relative_humidity, flag_print, horizontal_index_of_printed_column, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine zhaocarr_gscond_init: +DEBUG: Parsing file ozphys.f with registry OrderedDict([('ozphys', {'ozphys': {'ozphys_run': [40, 171], 'ozphys_finalize': [28, 29], 'ozphys_init': [10, 23]}})]) +DEBUG: Skipping blank table ozphys_finalize +DEBUG: Module name: ozphys +DEBUG: Scheme name: ozphys +DEBUG: Variables in subroutine ozphys_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, vertical_dimension_of_ozone_forcing_data, time_step_for_physics, ozone_concentration_updated_by_physics, air_temperature_updated_by_physics, natural_log_of_ozone_forcing_data_pressure_levels, air_pressure, ozone_forcing, number_of_coefficients_in_ozone_forcing_data, air_pressure_difference_between_midlayers, flag_diagnostics_3D, cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate, cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio, cumulative_change_in_ozone_concentration_due_to_temperature, cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column, gravitational_acceleration, mpi_rank, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine ozphys_finalize: +DEBUG: Variables in subroutine ozphys_init: ccpp_error_message, ccpp_error_flag, flag_for_ozone_physics +DEBUG: Parsing file GFS_phys_time_vary.fv3.F90 with registry OrderedDict([('GFS_phys_time_vary', {'GFS_phys_time_vary': {'GFS_phys_time_vary_finalize': [212, 239], 'GFS_phys_time_vary_init': [32, 207], 'GFS_phys_time_vary_run': [245, 407]}})]) +DEBUG: Module name: GFS_phys_time_vary +DEBUG: Scheme name: GFS_phys_time_vary +DEBUG: Variables in subroutine GFS_phys_time_vary_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_phys_time_vary_init: ccpp_error_message, ccpp_error_flag, GFS_data_type_instance_all_blocks, GFS_control_type_instance, GFS_interstitial_type_instance_all_threads, omp_threads +DEBUG: Variables in subroutine GFS_phys_time_vary_run: ccpp_error_message, ccpp_error_flag, GFS_data_type_instance_all_blocks, GFS_control_type_instance, omp_threads, flag_for_first_time_step +DEBUG: Parsing file ozphys_2015.f with registry OrderedDict([('ozphys_2015', {'ozphys_2015': {'ozphys_2015_run': [44, 150], 'ozphys_2015_finalize': [26, 27], 'ozphys_2015_init': [8, 21]}})]) +DEBUG: Skipping blank table ozphys_2015_finalize +DEBUG: Module name: ozphys_2015 +DEBUG: Scheme name: ozphys_2015 +DEBUG: Variables in subroutine ozphys_2015_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, vertical_dimension_of_ozone_forcing_data, time_step_for_physics, ozone_concentration_updated_by_physics, air_temperature_updated_by_physics, natural_log_of_ozone_forcing_data_pressure_levels, air_pressure, ozone_forcing, number_of_coefficients_in_ozone_forcing_data, air_pressure_difference_between_midlayers, flag_diagnostics_3D, cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate, cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio, cumulative_change_in_ozone_concentration_due_to_temperature, cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column, gravitational_acceleration, mpi_rank, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine ozphys_2015_finalize: +DEBUG: Variables in subroutine ozphys_2015_init: ccpp_error_message, ccpp_error_flag, flag_for_2015_ozone_physics +DEBUG: Parsing file GFS_surface_generic.F90 with registry OrderedDict([('GFS_surface_generic_pre', {'GFS_surface_generic_pre': {'GFS_surface_generic_pre_finalize': [12, 13], 'GFS_surface_generic_pre_run': [17, 145], 'GFS_surface_generic_pre_init': [10, 11]}}), ('GFS_surface_generic_post', {})]) +DEBUG: Module name: GFS_surface_generic_pre +DEBUG: Scheme name: GFS_surface_generic_pre +DEBUG: Variables in subroutine GFS_surface_generic_pre_finalize: +DEBUG: Variables in subroutine GFS_surface_generic_pre_run: horizontal_loop_extent, vertical_dimension, vegetation_area_fraction, sea_land_ice_mask, soil_type_dataset_choice, vegetation_type_dataset_choice, soil_type_classification_real, vegetation_type_classification_real, surface_slope_classification_real, dimensionless_exner_function_at_lowest_model_interface, dimensionless_exner_function_at_lowest_model_layer, surface_skin_temperature, geopotential, gravitational_acceleration, bounded_vegetation_area_fraction, soil_type_classification, vegetation_type_classification, surface_slope_classification, ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer, surface_skin_temperature_after_iteration, height_above_ground_at_lowest_model_layer, flag_for_stochastic_surface_physics_perturbations, flag_for_global_cellular_automata, tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step, tendency_of_lwe_thickness_of_precipitation_amount_for_coupling, tendency_of_lwe_thickness_of_snow_amount_for_coupling, lwe_thickness_of_precipitation_amount_for_coupling, lwe_thickness_of_snow_amount_for_coupling, flag_for_stochastic_surface_perturbations, number_of_surface_perturbations, weights_for_stochastic_surface_physics_perturbation, magnitude_of_perturbation_of_momentum_roughness_length, magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio, magnitude_of_perturbation_of_soil_type_b_parameter, magnitude_of_perturbation_of_leaf_area_index, magnitude_of_perturbation_of_vegetation_fraction, perturbation_of_momentum_roughness_length, perturbation_of_heat_to_momentum_roughness_length_ratio, perturbation_of_soil_type_b_parameter, perturbation_of_leaf_area_index, perturbation_of_vegetation_fraction, flag_for_flux_coupling, flag_for_cice, sea_land_ice_mask_cice, sea_land_ice_mask_in, sea_ice_temperature, sea_surface_temperature, sea_ice_concentration, sea_ice_thickness, wind_speed_at_lowest_model_layer, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, surface_wind_enhancement_due_to_convection, volume_fraction_of_condensed_water_in_soil_at_wilting_point, threshold_volume_fraction_of_condensed_water_in_soil, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_surface_generic_pre_init: +DEBUG: Parsing file GFS_surface_generic.F90 with registry OrderedDict([('GFS_surface_generic_pre', {'GFS_surface_generic_pre': {'GFS_surface_generic_pre_finalize': [12, 13], 'GFS_surface_generic_pre_run': [17, 145], 'GFS_surface_generic_pre_init': [10, 11]}}), ('GFS_surface_generic_post', {'GFS_surface_generic_post': {'GFS_surface_generic_post_run': [161, 267], 'GFS_surface_generic_post_finalize': [156, 157], 'GFS_surface_generic_post_init': [154, 155]}})]) +DEBUG: Module name: GFS_surface_generic_post +DEBUG: Scheme name: GFS_surface_generic_post +DEBUG: Variables in subroutine GFS_surface_generic_post_run: horizontal_loop_extent, surface_skin_temperature, flag_for_flux_coupling, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, ccpp_error_message, ccpp_error_flag, flag_for_wave_coupling, flag_diagnostics, flag_nonzero_sea_ice_surface_fraction, flag_nonzero_wet_surface_fraction, time_step_for_dynamics, surface_upward_potential_latent_heat_flux, upward_heat_flux_in_soil, air_temperature_at_lowest_model_layer, water_vapor_specific_humidity_at_lowest_model_layer, surface_downwelling_longwave_flux, surface_downwelling_shortwave_flux, surface_downwelling_direct_near_infrared_shortwave_flux, surface_downwelling_diffuse_near_infrared_shortwave_flux, surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux, surface_upwelling_longwave_flux, surface_upwelling_longwave_flux_over_ocean_interstitial, surface_upwelling_direct_near_infrared_shortwave_flux, surface_upwelling_diffuse_near_infrared_shortwave_flux, surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux, surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux, temperature_at_2m, specific_humidity_at_2m, x_wind_at_10m, y_wind_at_10m, surface_skin_temperature_over_ocean_interstitial, surface_air_pressure, instantaneous_cosine_of_zenith_angle, soil_upward_latent_heat_flux, canopy_upward_latent_heat_flux, transpiration_flux, snow_deposition_sublimation_upward_latent_heat_flux, surface_snow_area_fraction, snow_freezing_rain_upward_latent_heat_flux, instantaneous_surface_potential_evaporation, instantaneous_surface_ground_heat_flux, air_temperature_at_lowest_model_layer_for_diag, water_vapor_specific_humidity_at_lowest_model_layer_for_diag, x_wind_at_lowest_model_layer_for_diag, y_wind_at_lowest_model_layer_for_diag, instantaneous_surface_downwelling_longwave_flux_for_coupling, instantaneous_surface_downwelling_shortwave_flux_for_coupling, cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep, instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling, cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, instantaneous_surface_net_downward_longwave_flux_for_coupling, cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep, instantaneous_temperature_at_2m_for_coupling, instantaneous_specific_humidity_at_2m_for_coupling, instantaneous_x_wind_at_10m_for_coupling, instantaneous_y_wind_at_10m_for_coupling, instantaneous_surface_skin_temperature_for_coupling, instantaneous_surface_air_pressure_for_coupling, instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling, instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling, instantaneous_surface_net_downward_shortwave_flux_for_coupling, cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep, cumulative_surface_ground_heat_flux_multiplied_by_timestep, cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep, cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep, cumulative_transpiration_flux_multiplied_by_timestep, cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep, cumulative_surface_snow_area_fraction_multiplied_by_timestep, cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep, cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep, total_runoff, surface_runoff, surface_runoff_flux, subsurface_runoff_flux +DEBUG: Variables in subroutine GFS_surface_generic_post_finalize: +DEBUG: Variables in subroutine GFS_surface_generic_post_init: +DEBUG: Parsing file cu_ntiedtke.F90 with registry OrderedDict([('cu_ntiedtke', {'cu_ntiedtke': {'cu_ntiedtke_init': [77, 93], 'cu_ntiedtke_finalize': [98, 99], 'cu_ntiedtke_run': [112, 311]}})]) +DEBUG: Skipping blank table cu_ntiedtke_finalize +DEBUG: Module name: cu_ntiedtke +DEBUG: Scheme name: cu_ntiedtke +DEBUG: Variables in subroutine cu_ntiedtke_init: mpi_rank, mpi_root, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cu_ntiedtke_finalize: +DEBUG: Variables in subroutine cu_ntiedtke_run: ccpp_error_message, ccpp_error_flag, x_wind_updated_by_physics, y_wind_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, air_temperature, water_vapor_specific_humidity, moisture_tendency_due_to_dynamics, temperature_tendency_due_to_dynamics, convective_transportable_tracers, geopotential, geopotential_at_interface, air_pressure, air_pressure_at_interface, omega, kinematic_surface_upward_latent_heat_flux, kinematic_surface_upward_sensible_heat_flux, lwe_thickness_of_deep_convective_precipitation_amount, sea_land_ice_mask, horizontal_loop_extent, horizontal_dimension, vertical_dimension, time_step_for_physics, cell_size, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, number_of_tracers_for_convective_transport, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover +DEBUG: Parsing file rrtmg_sw_cloud_optics.F90 with registry OrderedDict([('mo_rrtmg_sw_cloud_optics', {})]) +DEBUG: Parsing file rrtmgp_sw_rte.F90 with registry OrderedDict([('rrtmgp_sw_rte', {'rrtmgp_sw_rte': {'rrtmgp_sw_rte_run': [25, 158], 'rrtmgp_sw_rte_init': [17, 18], 'rrtmgp_sw_rte_finalize': [162, 163]}})]) +DEBUG: Module name: rrtmgp_sw_rte +DEBUG: Scheme name: rrtmgp_sw_rte +DEBUG: Variables in subroutine rrtmgp_sw_rte_run: flag_to_calc_sw, horizontal_loop_extent, vertical_dimension, daytime_points_dimension, daytime_points, cosine_of_zenith_angle, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, coefficients_for_sw_gas_optics, shortwave_optical_properties_for_clear_sky, shortwave_optical_properties_for_cloudy_atmosphere, shortwave_optical_properties_for_aerosols, surface_albedo_nearIR_direct, surface_albedo_nearIR_diffuse, surface_albedo_uvvis_dir, surface_albedo_uvvis_dif, toa_incident_sw_flux_by_spectral_point, number_of_active_gases_used_by_RRTMGP, list_of_active_gases_used_by_RRTMGP, components_of_surface_downward_shortwave_fluxes, RRTMGP_sw_flux_profile_upward_allsky, RRTMGP_sw_flux_profile_downward_allsky, RRTMGP_sw_flux_profile_upward_clrsky, RRTMGP_sw_flux_profile_downward_clrsky, RRTMGP_sw_heating_rate_spectral, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmgp_sw_rte_init: +DEBUG: Variables in subroutine rrtmgp_sw_rte_finalize: +DEBUG: Parsing file rrtmgp_lw_pre.F90 with registry OrderedDict([('rrtmgp_lw_pre', {'rrtmgp_lw_pre': {'rrtmgp_lw_pre_finalize': [60, 61], 'rrtmgp_lw_pre_init': [16, 17], 'rrtmgp_lw_pre_run': [24, 56]}})]) +DEBUG: Module name: rrtmgp_lw_pre +DEBUG: Scheme name: rrtmgp_lw_pre +DEBUG: Variables in subroutine rrtmgp_lw_pre_finalize: +DEBUG: Variables in subroutine rrtmgp_lw_pre_init: +DEBUG: Variables in subroutine rrtmgp_lw_pre_run: flag_to_calc_lw, horizontal_loop_extent, longitude, latitude, sea_land_ice_mask_real, surface_roughness_length, surface_snow_thickness_water_equivalent, surface_snow_area_fraction_over_land, surface_skin_temperature, standard_deviation_of_subgrid_orography, coefficients_for_lw_gas_optics, surface_longwave_emissivity, surface_emissivity_in_each_RRTMGP_LW_band, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_rrtmg_post.F90 with registry OrderedDict([('GFS_rrtmg_post', {'GFS_rrtmg_post': {'GFS_rrtmg_post_init': [8, 9], 'GFS_rrtmg_post_run': [13, 166], 'GFS_rrtmg_post_finalize': [169, 170]}})]) +DEBUG: Skipping blank table GFS_rrtmg_post_init +DEBUG: Skipping blank table GFS_rrtmg_post_finalize +DEBUG: Module name: GFS_rrtmg_post +DEBUG: Scheme name: GFS_rrtmg_post +DEBUG: Variables in subroutine GFS_rrtmg_post_init: +DEBUG: Variables in subroutine GFS_rrtmg_post_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_diag_type_instance, GFS_radtend_type_instance, GFS_statein_type_instance, GFS_coupling_type_instance, components_of_surface_downward_shortwave_fluxes, horizontal_loop_extent, number_of_vertical_layers_for_radiation_calculations, extra_top_layer, vertical_index_difference_between_layer_and_upper_bound, vertical_index_difference_between_layer_and_lower_bound, vertical_index_difference_between_inout_and_local, time_step_for_radiation, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, cloud_area_fraction_for_radiation, model_layer_number_at_cloud_top, model_layer_number_at_cloud_base, total_cloud_fraction, cloud_optical_depth_layers_at_10mu_band, cloud_optical_depth_layers_at_0p55mu_band, daytime_points_dimension, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmg_post_finalize: +DEBUG: Parsing file GFS_rrtmgp_sw_post.F90 with registry OrderedDict([('GFS_rrtmgp_sw_post', {'GFS_rrtmgp_sw_post': {'GFS_rrtmgp_sw_post_finalize': [247, 248], 'GFS_rrtmgp_sw_post_run': [23, 243], 'GFS_rrtmgp_sw_post_init': [15, 16]}})]) +DEBUG: Module name: GFS_rrtmgp_sw_post +DEBUG: Scheme name: GFS_rrtmgp_sw_post +DEBUG: Variables in subroutine GFS_rrtmgp_sw_post_finalize: +DEBUG: Variables in subroutine GFS_rrtmgp_sw_post_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_diag_type_instance, GFS_radtend_type_instance, GFS_coupling_type_instance, GFS_statein_type_instance, components_of_surface_downward_shortwave_fluxes, horizontal_loop_extent, air_pressure_at_interface_for_RRTMGP_in_hPa, surface_albedo_nearIR_direct, surface_albedo_nearIR_diffuse, surface_albedo_uvvis_dir, surface_albedo_uvvis_dif, daytime_points_dimension, daytime_points, RRTMGP_sw_flux_profile_upward_allsky, RRTMGP_sw_flux_profile_downward_allsky, RRTMGP_sw_flux_profile_upward_clrsky, RRTMGP_sw_flux_profile_downward_clrsky, time_step_for_radiation, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, cloud_area_fraction_for_radiation, model_layer_number_at_cloud_top, model_layer_number_at_cloud_base, total_cloud_fraction, RRTMGP_cloud_optical_depth_layers_at_0_55mu_band, coefficients_for_sw_gas_optics, RRTMGP_sw_fluxes, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_sw_post_init: +DEBUG: Parsing file GFS_PBL_generic.F90 with registry OrderedDict([('GFS_PBL_generic_common', {}), ('GFS_PBL_generic_pre', {}), ('GFS_PBL_generic_post', {})]) +DEBUG: Parsing file GFS_PBL_generic.F90 with registry OrderedDict([('GFS_PBL_generic_common', {}), ('GFS_PBL_generic_pre', {'GFS_PBL_generic_pre': {'GFS_PBL_generic_pre_run': [58, 257], 'GFS_PBL_generic_pre_finalize': [52, 53], 'GFS_PBL_generic_pre_init': [50, 51]}}), ('GFS_PBL_generic_post', {})]) +DEBUG: Module name: GFS_PBL_generic_pre +DEBUG: Scheme name: GFS_PBL_generic_pre +DEBUG: Variables in subroutine GFS_PBL_generic_pre_run: horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, number_of_tracers, index_for_water_vapor, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, index_for_rain_number_concentration, index_for_snow_number_concentration, index_for_graupel_number_concentration, index_for_water_friendly_aerosols, index_for_ice_friendly_aerosols, index_for_graupel, index_for_ozone, index_for_turbulent_kinetic_energy, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, index_for_mass_weighted_rime_factor, flag_for_aerosol_convective_transport_and_PBL_diffusion, index_for_first_chemical_tracer, number_of_chemical_tracers, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_wsm6_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, flag_for_chemistry_coupling, flag_for_aerosol_physics, flag_for_hedmf, flag_for_shoc, flag_for_scale_aware_TKE_moist_EDMF_PBL, tracer_concentration, vertically_diffused_tracer_concentration, flag_for_canopy_heat_storage, surface_roughness_fraction_factor, latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, kinematic_surface_upward_sensible_heat_flux, kinematic_surface_upward_latent_heat_flux, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_upward_latent_heat_flux_reduction_factor, surface_upward_sensible_heat_flux_reduction_factor, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_PBL_generic_pre_finalize: +DEBUG: Variables in subroutine GFS_PBL_generic_pre_init: +DEBUG: Parsing file GFS_PBL_generic.F90 with registry OrderedDict([('GFS_PBL_generic_common', {}), ('GFS_PBL_generic_pre', {'GFS_PBL_generic_pre': {'GFS_PBL_generic_pre_run': [58, 257], 'GFS_PBL_generic_pre_finalize': [52, 53], 'GFS_PBL_generic_pre_init': [50, 51]}}), ('GFS_PBL_generic_post', {'GFS_PBL_generic_post': {'GFS_PBL_generic_post_init': [261, 262], 'GFS_PBL_generic_post_finalize': [263, 264], 'GFS_PBL_generic_post_run': [268, 540]}})]) +DEBUG: Module name: GFS_PBL_generic_post +DEBUG: Scheme name: GFS_PBL_generic_post +DEBUG: Variables in subroutine GFS_PBL_generic_post_init: +DEBUG: Variables in subroutine GFS_PBL_generic_post_finalize: +DEBUG: Variables in subroutine GFS_PBL_generic_post_run: horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, number_of_tracers, index_for_water_vapor, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, index_for_rain_water, index_for_snow_water, index_for_liquid_cloud_number_concentration, index_for_ice_cloud_number_concentration, index_for_rain_number_concentration, index_for_snow_number_concentration, index_for_graupel_number_concentration, index_for_water_friendly_aerosols, index_for_ice_friendly_aerosols, index_for_graupel, index_for_ozone, index_for_turbulent_kinetic_energy, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, index_for_mass_weighted_rime_factor, flag_for_aerosol_convective_transport_and_PBL_diffusion, index_for_first_chemical_tracer, number_of_chemical_tracers, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_wsm6_microphysics_scheme, flag_for_zhao_carr_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, flag_for_chemistry_coupling, flag_for_aerosol_physics, flag_for_hedmf, flag_for_shoc, flag_for_scale_aware_TKE_moist_EDMF_PBL, kinematic_surface_upward_sensible_heat_flux, surface_upward_latent_heat_flux_reduction_factor, surface_upward_sensible_heat_flux_reduction_factor, ccpp_error_message, ccpp_error_flag, flag_for_flux_coupling, flag_diagnostics, flag_diagnostics_3D, flag_idealized_physics, flag_for_scale_aware_Shinhong_PBL, flag_for_ysu, tendency_of_vertically_diffused_tracer_concentration, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, time_step_for_dynamics, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, tendency_of_tracers_due_to_model_physics, cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep, cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep, cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep, cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep, instantaneous_surface_x_momentum_flux_for_coupling, instantaneous_surface_y_momentum_flux_for_coupling, instantaneous_surface_upward_sensible_heat_flux_for_coupling, instantaneous_surface_upward_latent_heat_flux_for_coupling, cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep, cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep, cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep, cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep, instantaneous_surface_x_momentum_flux_for_diag, instantaneous_surface_y_momentum_flux_for_diag, instantaneous_surface_upward_sensible_heat_flux_for_diag, instantaneous_surface_upward_latent_heat_flux_for_diag, cumulative_change_in_temperature_due_to_PBL, cumulative_change_in_x_wind_due_to_PBL, cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_y_wind_due_to_PBL, cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag, cumulative_change_in_water_vapor_specific_humidity_due_to_PBL, cumulative_change_in_ozone_mixing_ratio_due_to_PBL, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, ratio_of_vapor_to_dry_air_gas_constants_minus_one, latent_heat_of_vaporization_of_water_at_0C, air_temperature_at_lowest_model_layer_for_diag, water_vapor_specific_humidity_at_lowest_model_layer_for_diag, air_pressure, instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling, sea_area_fraction, flag_for_cice, surface_x_momentum_flux_for_coupling, surface_y_momentum_flux_for_coupling, surface_upward_sensible_heat_flux_for_coupling, surface_upward_latent_heat_flux_for_coupling, flag_nonzero_wet_surface_fraction, flag_nonzero_land_surface_fraction, flag_nonzero_sea_ice_surface_fraction, wind_speed_at_lowest_model_layer, surface_wind_stress_over_ocean, kinematic_surface_upward_sensible_heat_flux_over_ocean, kinematic_surface_upward_latent_heat_flux_over_ocean, x_wind_at_lowest_model_layer, y_wind_at_lowest_model_layer, instantaneous_atmosphere_heat_diffusivity, atmosphere_heat_diffusivity +DEBUG: Parsing file rrtmgp_sw_aerosol_optics.F90 with registry OrderedDict([('rrtmgp_sw_aerosol_optics', {'rrtmgp_sw_aerosol_optics': {'rrtmgp_sw_aerosol_optics_init': [16, 17], 'rrtmgp_sw_aerosol_optics_finalize': [81, 82], 'rrtmgp_sw_aerosol_optics_run': [24, 77]}})]) +DEBUG: Module name: rrtmgp_sw_aerosol_optics +DEBUG: Scheme name: rrtmgp_sw_aerosol_optics +DEBUG: Variables in subroutine rrtmgp_sw_aerosol_optics_init: +DEBUG: Variables in subroutine rrtmgp_sw_aerosol_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_sw_aerosol_optics_run: flag_to_calc_sw, horizontal_loop_extent, vertical_dimension, number_of_tracers, number_of_aerosol_tracers_MG, daytime_points_dimension, daytime_points, air_pressure_at_interface_for_RRTMGP_in_hPa, air_pressure_at_layer_for_RRTMGP_in_hPa, dimensionless_exner_function_at_model_layers, virtual_temperature, relative_humidity, sea_land_ice_mask_real, chemical_tracers, aerosol_number_concentration_from_gocart_aerosol_climatology, longitude, latitude, coefficients_for_lw_gas_optics, coefficients_for_sw_gas_optics, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, shortwave_optical_properties_for_aerosols, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_surface_loop_control.F90 with registry OrderedDict([('GFS_surface_loop_control_part1', {'GFS_surface_loop_control_part1': {'GFS_surface_loop_control_part1_run': [20, 40], 'GFS_surface_loop_control_part1_finalize': [8, 9], 'GFS_surface_loop_control_part1_init': [6, 7]}}), ('GFS_surface_loop_control_part2', {})]) +DEBUG: Module name: GFS_surface_loop_control_part1 +DEBUG: Scheme name: GFS_surface_loop_control_part1 +DEBUG: Variables in subroutine GFS_surface_loop_control_part1_run: horizontal_loop_extent, ccpp_loop_counter, wind_speed_at_lowest_model_layer, flag_for_guess_run, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_surface_loop_control_part1_finalize: +DEBUG: Variables in subroutine GFS_surface_loop_control_part1_init: +DEBUG: Parsing file GFS_surface_loop_control.F90 with registry OrderedDict([('GFS_surface_loop_control_part1', {'GFS_surface_loop_control_part1': {'GFS_surface_loop_control_part1_run': [20, 40], 'GFS_surface_loop_control_part1_finalize': [8, 9], 'GFS_surface_loop_control_part1_init': [6, 7]}}), ('GFS_surface_loop_control_part2', {'GFS_surface_loop_control_part2': {'GFS_surface_loop_control_part2_run': [62, 90], 'GFS_surface_loop_control_part2_finalize': [50, 51], 'GFS_surface_loop_control_part2_init': [48, 49]}})]) +DEBUG: Module name: GFS_surface_loop_control_part2 +DEBUG: Scheme name: GFS_surface_loop_control_part2 +DEBUG: Variables in subroutine GFS_surface_loop_control_part2_run: horizontal_loop_extent, ccpp_loop_counter, wind_speed_at_lowest_model_layer, flag_for_guess_run, ccpp_error_message, ccpp_error_flag, flag_for_iteration, flag_nonzero_land_surface_fraction, flag_nonzero_wet_surface_fraction, flag_nonzero_sea_ice_surface_fraction, flag_for_nsstm_run +DEBUG: Variables in subroutine GFS_surface_loop_control_part2_finalize: +DEBUG: Variables in subroutine GFS_surface_loop_control_part2_init: +DEBUG: Parsing file rrtmgp_lw_aerosol_optics.F90 with registry OrderedDict([('rrtmgp_lw_aerosol_optics', {'rrtmgp_lw_aerosol_optics': {'rrtmgp_lw_aerosol_optics_init': [16, 17], 'rrtmgp_lw_aerosol_optics_finalize': [65, 66], 'rrtmgp_lw_aerosol_optics_run': [24, 61]}})]) +DEBUG: Module name: rrtmgp_lw_aerosol_optics +DEBUG: Scheme name: rrtmgp_lw_aerosol_optics +DEBUG: Variables in subroutine rrtmgp_lw_aerosol_optics_init: +DEBUG: Variables in subroutine rrtmgp_lw_aerosol_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_lw_aerosol_optics_run: flag_to_calc_lw, horizontal_loop_extent, vertical_dimension, number_of_tracers, number_of_aerosol_tracers_MG, air_pressure_at_interface_for_RRTMGP_in_hPa, air_pressure_at_layer_for_RRTMGP_in_hPa, dimensionless_exner_function_at_model_layers, virtual_temperature, relative_humidity, sea_land_ice_mask_real, chemical_tracers, aerosol_number_concentration_from_gocart_aerosol_climatology, longitude, latitude, coefficients_for_lw_gas_optics, coefficients_for_sw_gas_optics, atmosphere_optical_thickness_due_to_ambient_aerosol_particles, longwave_optical_properties_for_aerosols, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file cnvc90.f with registry OrderedDict([('cnvc90', {'cnvc90': {'cnvc90_finalize': [124, 125], 'cnvc90_init': [8, 9], 'cnvc90_run': [19, 120]}})]) +DEBUG: Skipping blank table cnvc90_finalize +DEBUG: Skipping blank table cnvc90_init +DEBUG: Module name: cnvc90 +DEBUG: Scheme name: cnvc90 +DEBUG: Variables in subroutine cnvc90_finalize: +DEBUG: Variables in subroutine cnvc90_init: +DEBUG: Variables in subroutine cnvc90_run: convective_cloud_switch, horizontal_loop_extent, horizontal_dimension, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, vertical_index_at_cloud_base, vertical_index_at_cloud_top, vertical_dimension, air_pressure_at_interface, accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90, smallest_cloud_base_vertical_index_encountered_thus_far, largest_cloud_top_vertical_index_encountered_thus_far, fraction_of_convective_cloud, pressure_at_bottom_of_convective_cloud, pressure_at_top_of_convective_cloud, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file maximum_hourly_diagnostics.F90 with registry OrderedDict([('maximum_hourly_diagnostics', {'maximum_hourly_diagnostics': {'maximum_hourly_diagnostics_run': [18, 102], 'maximum_hourly_diagnostics_finalize': [11, 12], 'maximum_hourly_diagnostics_init': [9, 10]}})]) +DEBUG: Module name: maximum_hourly_diagnostics +DEBUG: Scheme name: maximum_hourly_diagnostics +DEBUG: Variables in subroutine maximum_hourly_diagnostics_run: horizontal_loop_extent, vertical_dimension, flag_reset_maximum_hourly_fields, flag_for_radar_reflectivity, flag_for_microphysics_scheme, flag_for_gfdl_microphysics_scheme, flag_for_thompson_microphysics_scheme, flag_for_fer_hires_microphysics_scheme, gravitational_acceleration, geopotential, air_temperature_updated_by_physics, radar_reflectivity_10cm, maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval, maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval, x_wind_at_10m, y_wind_at_10m, maximum_u_wind_at_10m_over_maximum_hourly_time_interval, maximum_v_wind_at_10m_over_maximum_hourly_time_interval, maximum_wind_at_10m_over_maximum_hourly_time_interval, surface_air_pressure, temperature_at_2m, specific_humidity_at_2m, maximum_temperature_at_2m_over_maximum_hourly_time_interval, minimum_temperature_at_2m_over_maximum_hourly_time_interval, maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval, minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine maximum_hourly_diagnostics_finalize: +DEBUG: Variables in subroutine maximum_hourly_diagnostics_init: +DEBUG: Parsing file radsw_main.f with registry OrderedDict([('rrtmg_sw', {'rrtmg_sw': {'rrtmg_sw_init': [340, 341], 'rrtmg_sw_run': [426, 1091], 'rrtmg_sw_finalize': [1094, 1095]}})]) +DEBUG: Module name: rrtmg_sw +DEBUG: Scheme name: rrtmg_sw +DEBUG: Variables in subroutine rrtmg_sw_init: +DEBUG: Variables in subroutine rrtmg_sw_run: air_pressure_at_layer_for_radiation_in_hPa, air_pressure_at_interface_for_radiation_in_hPa, air_temperature_at_layer_for_radiation, air_temperature_at_interface_for_radiation, water_vapor_specific_humidity_at_layer_for_radiation, ozone_concentration_at_layer_for_radiation, volume_mixing_ratio_co2, volume_mixing_ratio_n2o, volume_mixing_ratio_ch4, volume_mixing_ratio_o2, volume_mixing_ratio_co, volume_mixing_ratio_cfc11, volume_mixing_ratio_cfc12, volume_mixing_ratio_cfc22, volume_mixing_ratio_ccl4, seed_random_numbers_sw, aerosol_optical_depth_for_shortwave_bands_01_16, aerosol_single_scattering_albedo_for_shortwave_bands_01_16, aerosol_asymmetry_parameter_for_shortwave_bands_01_16, surface_albedo_due_to_near_IR_direct, surface_albedo_due_to_near_IR_diffused, surface_albedo_due_to_UV_and_VIS_direct, surface_albedo_due_to_UV_and_VIS_diffused, layer_thickness_for_radiation, layer_pressure_thickness_for_radiation, cloud_decorrelation_length, cosine_of_zenith_angle, solar_constant, daytime_points_dimension, daytime_points, horizontal_loop_extent, adjusted_vertical_layer_dimension_for_radiation, adjusted_vertical_level_dimension_for_radiation, flag_print, total_cloud_fraction, flag_to_calc_sw, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels, sw_fluxes_top_atmosphere, sw_fluxes_sfc, cloud_optical_depth_layers_at_0p55mu_band, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, components_of_surface_downward_shortwave_fluxes, cloud_liquid_water_path, mean_effective_radius_for_liquid_cloud, cloud_ice_water_path, mean_effective_radius_for_ice_cloud, cloud_rain_water_path, mean_effective_radius_for_rain_drop, cloud_snow_water_path, mean_effective_radius_for_snow_flake, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmg_sw_finalize: +DEBUG: Parsing file samfshalcnv.f with registry OrderedDict([('samfshalcnv', {'samfshalcnv': {'samfshalcnv_run': [43, 1782], 'samfshalcnv_finalize': [17, 18], 'samfshalcnv_init': [11, 12]}})]) +DEBUG: Skipping blank table samfshalcnv_finalize +DEBUG: Skipping blank table samfshalcnv_init +DEBUG: Module name: samfshalcnv +DEBUG: Scheme name: samfshalcnv +DEBUG: Variables in subroutine samfshalcnv_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, number_of_aerosol_tracers_for_convection, number_of_chemical_tracers, specific_heat_of_liquid_water_at_constant_pressure, specific_heat_of_dry_air_at_constant_pressure, specific_heat_of_water_vapor_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gravitational_acceleration, latent_heat_of_vaporization_of_water_at_0C, gas_constant_dry_air, gas_constant_water_vapor, temperature_at_zero_celsius, time_step_for_physics, index_for_turbulent_kinetic_energy_convective_transport_tracer, number_of_tracers_for_samf, air_pressure_difference_between_midlayers, air_pressure, surface_air_pressure, geopotential, convective_transportable_tracers, water_vapor_specific_humidity_updated_by_physics, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, coefficients_for_aerosol_scavenging, lwe_thickness_of_shallow_convective_precipitation_amount, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, sea_land_ice_mask, cell_area, omega, number_of_hydrometeors, atmosphere_boundary_layer_thickness, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, entrainment_rate_coefficient_shallow_convection, rain_conversion_parameter_shallow_convection, detrainment_conversion_parameter_shallow_convection, momentum_transport_reduction_factor_pgf_shallow_convection, aerosol_aware_parameter_shallow_convection, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine samfshalcnv_finalize: +DEBUG: Variables in subroutine samfshalcnv_init: +DEBUG: Parsing file GFS_time_vary_pre.fv3.F90 with registry OrderedDict([('GFS_time_vary_pre', {'GFS_time_vary_pre': {'GFS_time_vary_pre_finalize': [27, 37], 'GFS_time_vary_pre_run': [41, 136], 'GFS_time_vary_pre_init': [12, 23]}})]) +DEBUG: Module name: GFS_time_vary_pre +DEBUG: Scheme name: GFS_time_vary_pre +DEBUG: Variables in subroutine GFS_time_vary_pre_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_time_vary_pre_run: ccpp_error_message, ccpp_error_flag, forecast_date_and_time, date_and_time_at_model_initialization, time_step_for_physics, flag_for_land_surface_scheme, flag_for_noahmp_land_surface_scheme, number_of_timesteps_between_shortwave_radiation_calls, number_of_timesteps_between_longwave_radiation_calls, date_and_time_at_model_initialization_reordered, flag_debug, mpi_rank, mpi_root, number_of_timesteps_between_surface_cycling_calls, seconds_elapsed_since_model_initialization, forecast_time_at_previous_timestep, time_since_diagnostics_zeroed, forecast_time, index_of_time_step, julian_day, number_of_days_in_year, index_for_diagnostic_printout, flag_print, flag_diagnostics, flag_to_calc_sw, flag_to_calc_lw, forecast_hour_of_the_day +DEBUG: Variables in subroutine GFS_time_vary_pre_init: ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_rrtmg_setup.F90 with registry OrderedDict([('GFS_rrtmg_setup', {'GFS_rrtmg_setup': {'GFS_rrtmg_setup_run': [259, 284], 'GFS_rrtmg_setup_finalize': [288, 298], 'GFS_rrtmg_setup_init': [27, 255]}})]) +DEBUG: Module name: GFS_rrtmg_setup +DEBUG: Scheme name: GFS_rrtmg_setup +DEBUG: Variables in subroutine GFS_rrtmg_setup_run: date_and_time_at_model_initialization, forecast_date_and_time, frequency_for_shortwave_radiation, time_step_for_dynamics, flag_to_calc_sw, mpi_rank, equation_of_time, sine_of_solar_declination_angle, cosine_of_solar_declination_angle, solar_constant, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmg_setup_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmg_setup_init: mpi_rank, ccpp_error_message, ccpp_error_flag, vertical_sigma_coordinate_for_radiation_initialization, number_of_vertical_layers_for_radiation_calculations, flag_for_initial_time_date_control, flag_for_solar_constant, flag_for_using_prescribed_global_mean_co2_value, flag_for_default_aerosol_effect_in_shortwave_radiation, flag_for_using_climatology_albedo, flag_for_surface_emissivity_control, index_for_liquid_cloud_condensate, array_dimension_of_2d_arrays_for_microphysics, array_dimension_of_3d_arrays_for_microphysics, number_of_3d_arrays_associated_with_pdf_based_clouds, index_for_ozone, flag_for_max_random_overlap_clouds_for_shortwave_radiation, flag_for_max_random_overlap_clouds_for_longwave_radiation, flag_for_sw_clouds_without_sub_grid_approximation, flag_for_lw_clouds_without_sub_grid_approximation, flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation, flag_for_CRICK_proof_cloud_water, flag_for_cloud_condensate_normalized_by_cloud_cover, flag_for_microphysics_scheme, flag_for_precipitation_effect_on_radiation, date_and_time_at_model_initialization_reordered, flag_for_vertical_index_direction_control, horizontal_loop_extent, aerosol_optical_properties_for_longwave_bands_01_16, aerosol_optical_properties_for_shortwave_bands_01_16, atmosphere_optical_thickness_due_to_ambient_aerosol_particles +DEBUG: Parsing file rrtmgp_sw_gas_optics.F90 with registry OrderedDict([('rrtmgp_sw_gas_optics', {'rrtmgp_sw_gas_optics': {'rrtmgp_sw_gas_optics_init': [18, 220], 'rrtmgp_sw_gas_optics_finalize': [285, 286], 'rrtmgp_sw_gas_optics_run': [227, 281]}})]) +DEBUG: Module name: rrtmgp_sw_gas_optics +DEBUG: Scheme name: rrtmgp_sw_gas_optics +DEBUG: Variables in subroutine rrtmgp_sw_gas_optics_init: directory_for_rte_rrtmgp_source_code, rrtmgp_kdistribution_sw, number_of_active_gases_used_by_RRTMGP, list_of_active_gases_used_by_RRTMGP, mpi_rank, mpi_root, mpi_comm, ccpp_error_message, ccpp_error_flag, coefficients_for_sw_gas_optics +DEBUG: Variables in subroutine rrtmgp_sw_gas_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_sw_gas_optics_run: number_of_active_gases_used_by_RRTMGP, list_of_active_gases_used_by_RRTMGP, ccpp_error_message, ccpp_error_flag, coefficients_for_sw_gas_optics, flag_to_calc_sw, horizontal_loop_extent, vertical_dimension, daytime_points_dimension, daytime_points, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, air_temperature_at_interface_for_RRTMGP, toa_incident_sw_flux_by_spectral_point, Gas_concentrations_for_RRTMGP_suite, solar_constant, shortwave_optical_properties_for_clear_sky +DEBUG: Parsing file rrtmg_sw_post.F90 with registry OrderedDict([('rrtmg_sw_post', {'rrtmg_sw_post': {'rrtmg_sw_post_init': [8, 9], 'rrtmg_sw_post_finalize': [103, 104], 'rrtmg_sw_post_run': [16, 100]}})]) +DEBUG: Skipping blank table rrtmg_sw_post_init +DEBUG: Skipping blank table rrtmg_sw_post_finalize +DEBUG: Module name: rrtmg_sw_post +DEBUG: Scheme name: rrtmg_sw_post +DEBUG: Variables in subroutine rrtmg_sw_post_init: +DEBUG: Variables in subroutine rrtmg_sw_post_finalize: +DEBUG: Variables in subroutine rrtmg_sw_post_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_diag_type_instance, GFS_radtend_type_instance, GFS_coupling_type_instance, horizontal_loop_extent, extra_top_layer, daytime_points_dimension, number_of_vertical_layers_for_radiation_calculations, vertical_index_difference_between_inout_and_local, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels, tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels, surface_albedo_due_to_near_IR_direct, surface_albedo_due_to_near_IR_diffused, surface_albedo_due_to_UV_and_VIS_direct, surface_albedo_due_to_UV_and_VIS_diffused, components_of_surface_downward_shortwave_fluxes, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_SCNV_generic.F90 with registry OrderedDict([('GFS_SCNV_generic_pre', {'GFS_SCNV_generic_pre': {'GFS_SCNV_generic_pre_finalize': [6, 7], 'GFS_SCNV_generic_pre_init': [4, 5], 'GFS_SCNV_generic_pre_run': [11, 38]}}), ('GFS_SCNV_generic_post', {})]) +DEBUG: Module name: GFS_SCNV_generic_pre +DEBUG: Scheme name: GFS_SCNV_generic_pre +DEBUG: Variables in subroutine GFS_SCNV_generic_pre_finalize: +DEBUG: Variables in subroutine GFS_SCNV_generic_pre_init: +DEBUG: Variables in subroutine GFS_SCNV_generic_pre_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, air_temperature_save, water_vapor_specific_humidity_save, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file GFS_SCNV_generic.F90 with registry OrderedDict([('GFS_SCNV_generic_pre', {'GFS_SCNV_generic_pre': {'GFS_SCNV_generic_pre_finalize': [6, 7], 'GFS_SCNV_generic_pre_init': [4, 5], 'GFS_SCNV_generic_pre_run': [11, 38]}}), ('GFS_SCNV_generic_post', {'GFS_SCNV_generic_post': {'GFS_SCNV_generic_post_run': [49, 125], 'GFS_SCNV_generic_post_init': [42, 43], 'GFS_SCNV_generic_post_finalize': [44, 45]}})]) +DEBUG: Module name: GFS_SCNV_generic_post +DEBUG: Scheme name: GFS_SCNV_generic_post +DEBUG: Variables in subroutine GFS_SCNV_generic_post_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, air_temperature_save, water_vapor_specific_humidity_save, ccpp_error_message, ccpp_error_flag, number_of_tracers_for_convective_transport, flag_diagnostics, flag_for_chemistry_coupling, dynamics_to_physics_timestep_ratio, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection, cumulative_change_in_temperature_due_to_shal_convection, cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection, convective_transportable_tracers, flag_shallow_convective_cloud, lwe_thickness_of_shallow_convective_precipitation_amount, number_of_3d_arrays_associated_with_pdf_based_clouds, array_dimension_of_3d_arrays_for_microphysics, number_of_convective_3d_cloud_fields, convective_cloud_cover, convective_cloud_water_mixing_ratio, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, cumulative_lwe_thickness_of_convective_precipitation_amount, cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket, convective_cloud_water_mixing_ratio_in_phy_f3d, convective_cloud_cover_in_phy_f3d, flag_for_mass_flux_shallow_convection_scheme, flag_for_sas_shallow_convection_scheme, flag_for_samf_shallow_convection_scheme +DEBUG: Variables in subroutine GFS_SCNV_generic_post_init: +DEBUG: Variables in subroutine GFS_SCNV_generic_post_finalize: +DEBUG: Parsing file satmedmfvdif.F with registry OrderedDict([('satmedmfvdif', {'satmedmfvdif': {'satmedmfvdif_init': [9, 23], 'satmedmfvdif_finalize': [24, 25], 'satmedmfvdif_run': [46, 1466]}})]) +DEBUG: Module name: satmedmfvdif +DEBUG: Scheme name: satmedmfvdif +DEBUG: Variables in subroutine satmedmfvdif_init: choice_of_scale_aware_TKE_moist_EDMF_PBL, choice_of_original_scale_aware_TKE_moist_EDMF_PBL, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine satmedmfvdif_finalize: +DEBUG: Variables in subroutine satmedmfvdif_run: ccpp_error_message, ccpp_error_flag, horizontal_dimension, horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate_vertical_diffusion_tracer, index_for_turbulent_kinetic_energy_vertical_diffusion_tracer, gravitational_acceleration, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, gas_constant_water_vapor, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, cell_area, dimensionless_exner_function_at_lowest_model_interface, bulk_richardson_number_at_lowest_model_level, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, surface_skin_temperature, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_wind_stress, wind_speed_at_lowest_model_layer, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, flag_TKE_dissipation_heating, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_boundary_layer_thickness, index_of_highest_temperature_inversion, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level +DEBUG: Parsing file GFS_stochastics.F90 with registry OrderedDict([('GFS_stochastics', {'GFS_stochastics': {'GFS_stochastics_run': [22, 210], 'GFS_stochastics_finalize': [6, 7], 'GFS_stochastics_init': [4, 5]}})]) +DEBUG: Module name: GFS_stochastics +DEBUG: Scheme name: GFS_stochastics +DEBUG: Variables in subroutine GFS_stochastics_run: horizontal_loop_extent, vertical_dimension, index_of_time_step, flag_for_stochastic_surface_physics_perturbations, flag_for_mountain_blocking, flag_for_stochastic_shum_option, flag_for_stochastic_skeb_option, level_of_dividing_streamline, weights_for_stochastic_sppt_perturbation, flag_for_cellular_automata, flag_for_global_cellular_automata, cellular_automata_global_pattern, vertical_weight_for_ca, vertical_sigma_coordinate_for_radiation_initialization, weights_for_stochastic_skeb_perturbation_of_x_wind, weights_for_stochastic_skeb_perturbation_of_y_wind, weights_for_stochastic_shum_perturbation, weights_for_stochastic_sppt_perturbation_flipped, weights_for_stochastic_skeb_perturbation_of_x_wind_flipped, weights_for_stochastic_skeb_perturbation_of_y_wind_flipped, weights_for_stochastic_shum_perturbation_flipped, dissipation_estimate_of_air_temperature_at_model_layers, x_wind, y_wind, air_temperature, water_vapor_specific_humidity, x_wind_updated_by_physics, y_wind_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step, lwe_thickness_of_precipitation_amount_on_dynamics_timestep, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep, accumulated_lwe_thickness_of_precipitation_amount, cumulative_lwe_thickness_of_convective_precipitation_amount, accumulated_lwe_thickness_of_precipitation_amount_in_bucket, cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket, flag_for_flux_coupling, lwe_thickness_of_precipitation_amount_for_coupling, lwe_thickness_of_snow_amount_for_coupling, tendency_of_lwe_thickness_of_precipitation_amount_for_coupling, tendency_of_lwe_thickness_of_snow_amount_for_coupling, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_stochastics_finalize: +DEBUG: Variables in subroutine GFS_stochastics_init: +DEBUG: Parsing file rrtmgp_sw_cloud_sampling.F90 with registry OrderedDict([('rrtmgp_sw_cloud_sampling', {'rrtmgp_sw_cloud_sampling': {'rrtmgp_sw_cloud_sampling_run': [31, 92], 'rrtmgp_sw_cloud_sampling_finalize': [96, 97], 'rrtmgp_sw_cloud_sampling_init': [17, 24]}})]) +DEBUG: Module name: rrtmgp_sw_cloud_sampling +DEBUG: Scheme name: rrtmgp_sw_cloud_sampling +DEBUG: Variables in subroutine rrtmgp_sw_cloud_sampling_run: flag_to_calc_sw, horizontal_loop_extent, daytime_points_dimension, vertical_dimension, initial_permutation_seed_sw, daytime_points, seed_random_numbers_sw, total_cloud_fraction, coefficients_for_sw_gas_optics, shortwave_optical_properties_for_cloudy_atmosphere_by_band, shortwave_optical_properties_for_cloudy_atmosphere, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmgp_sw_cloud_sampling_finalize: +DEBUG: Variables in subroutine rrtmgp_sw_cloud_sampling_init: initial_permutation_seed_sw, coefficients_for_sw_gas_optics +DEBUG: Parsing file shinhongvdif.F90 with registry OrderedDict([('shinhongvdif', {'shinhongvdif': {'shinhongvdif_run': [23, 1183], 'shinhongvdif_finalize': [13, 14], 'shinhongvdif_init': [11, 12]}})]) +DEBUG: Module name: shinhongvdif +DEBUG: Scheme name: shinhongvdif +DEBUG: Variables in subroutine shinhongvdif_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, x_wind, y_wind, air_temperature, tracer_concentration, air_pressure, air_pressure_at_interface, dimensionless_exner_function_at_model_layers, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_tracers_due_to_model_physics, number_of_tracers, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, index_for_ice_cloud_condensate, geopotential_at_interface, geopotential, surface_air_pressure, surface_roughness_length, surface_wind_stress, atmosphere_boundary_layer_thickness, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, sea_land_ice_mask, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, wind_speed_at_lowest_model_layer, bulk_richardson_number_at_lowest_model_level, gravitational_acceleration, gas_constant_dry_air, specific_heat_of_dry_air_at_constant_pressure, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, ratio_of_dry_air_to_water_vapor_gas_constants, latent_heat_of_vaporization_of_water_at_0C, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, time_step_for_physics, vertical_index_at_top_of_atmosphere_boundary_layer, x_wind_at_10m, y_wind_at_10m, cell_size, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine shinhongvdif_finalize: +DEBUG: Variables in subroutine shinhongvdif_init: +DEBUG: Parsing file h2ophys.f with registry OrderedDict([('h2ophys', {'h2ophys': {'h2ophys_init': [12, 13], 'h2ophys_run': [21, 125], 'h2ophys_finalize': [131, 132]}})]) +DEBUG: Skipping blank table h2ophys_init +DEBUG: Skipping blank table h2ophys_finalize +DEBUG: Module name: h2ophys +DEBUG: Scheme name: h2ophys +DEBUG: Variables in subroutine h2ophys_init: +DEBUG: Variables in subroutine h2ophys_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, vertical_dimension_of_h2o_forcing_data, time_step_for_physics, water_vapor_specific_humidity_updated_by_physics, natural_log_of_h2o_forcing_data_pressure_levels, air_pressure, h2o_forcing, number_of_coefficients_in_h2o_forcing_data, flag_diagnostics_3D, mpi_rank, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine h2ophys_finalize: +DEBUG: Parsing file moninedmf.f with registry OrderedDict([('hedmf', {'hedmf': {'hedmf_run': [52, 1114], 'hedmf_init': [10, 24], 'hedmf_finalize': [25, 26]}})]) +DEBUG: Module name: hedmf +DEBUG: Scheme name: hedmf +DEBUG: Variables in subroutine hedmf_run: horizontal_dimension, horizontal_loop_extent, vertical_dimension, number_of_vertical_diffusion_tracers, index_for_liquid_cloud_condensate, tendency_of_y_wind_due_to_model_physics, tendency_of_x_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, tendency_of_vertically_diffused_tracer_concentration, x_wind, y_wind, air_temperature, vertically_diffused_tracer_concentration, tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step, tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step, zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes, dimensionless_exner_function_at_lowest_model_interface, bulk_richardson_number_at_lowest_model_level, surface_roughness_length, x_wind_at_10m, y_wind_at_10m, Monin_Obukhov_similarity_function_for_momentum, Monin_Obukhov_similarity_function_for_heat, surface_skin_temperature, kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness, kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness, surface_wind_stress, wind_speed_at_lowest_model_layer, vertical_index_at_top_of_atmosphere_boundary_layer, air_pressure_at_interface, air_pressure_difference_between_midlayers, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, time_step_for_physics, flag_TKE_dissipation_heating, instantaneous_surface_x_momentum_flux, instantaneous_surface_y_momentum_flux, instantaneous_surface_upward_sensible_heat_flux, instantaneous_surface_upward_latent_heat_flux, atmosphere_boundary_layer_thickness, countergradient_mixing_term_for_temperature, countergradient_mixing_term_for_water_vapor, atmosphere_heat_diffusivity, index_of_highest_temperature_inversion, atmosphere_momentum_diffusivity_background, atmosphere_heat_diffusivity_background, diffusivity_background_sigma_level, flag_print, horizontal_index_of_printed_column, atmosphere_heat_diffusivity_background_maximum, atmosphere_diffusivity_coefficient_factor, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine hedmf_init: atmosphere_diffusivity_coefficient_factor, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine hedmf_finalize: +DEBUG: Parsing file rrtmgp_aux.F90 with registry OrderedDict([('rrtmgp_aux', {})]) +DEBUG: Parsing file m_micro_interstitial.F90 with registry OrderedDict([('m_micro_pre', {'m_micro_pre': {'m_micro_pre_init': [10, 11], 'm_micro_pre_finalize': [124, 125], 'm_micro_pre_run': [19, 119]}}), ('m_micro_post', {})]) +DEBUG: Skipping blank table m_micro_pre_init +DEBUG: Skipping blank table m_micro_pre_finalize +DEBUG: Module name: m_micro_pre +DEBUG: Scheme name: m_micro_pre +DEBUG: Variables in subroutine m_micro_pre_init: +DEBUG: Variables in subroutine m_micro_pre_finalize: +DEBUG: Variables in subroutine m_micro_pre_run: horizontal_loop_extent, vertical_dimension, flag_for_shoc, flag_skip_macro, number_of_frozen_precipitation_species, flag_mg3_as_mg2, ice_water_mixing_ratio_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, rain_number_concentration_updated_by_physics, snow_number_concentration_updated_by_physics, graupel_number_concentration_updated_by_physics, subgrid_scale_cloud_fraction_from_shoc, convective_cloud_cover, convective_cloud_water_mixing_ratio, cloud_phase_transition_threshold_temperature, cloud_phase_transition_denominator, air_temperature_updated_by_physics, local_rain_water_mixing_ratio, local_snow_water_mixing_ratio, local_graupel_mixing_ratio, local_rain_number_concentration, local_snow_number_concentration, local_graupel_number_concentration, cloud_fraction_for_MG, cloud_condensed_water_mixing_ratio_convective_transport_tracer, ice_water_mixing_ratio_convective_transport_tracer, convective_cloud_volume_fraction, ccpp_error_message, ccpp_error_flag +DEBUG: Parsing file m_micro_interstitial.F90 with registry OrderedDict([('m_micro_pre', {'m_micro_pre': {'m_micro_pre_init': [10, 11], 'm_micro_pre_finalize': [124, 125], 'm_micro_pre_run': [19, 119]}}), ('m_micro_post', {'m_micro_post': {'m_micro_post_init': [136, 137], 'm_micro_post_run': [143, 237], 'm_micro_post_finalize': [242, 243]}})]) +DEBUG: Skipping blank table m_micro_post_init +DEBUG: Skipping blank table m_micro_post_finalize +DEBUG: Module name: m_micro_post +DEBUG: Scheme name: m_micro_post +DEBUG: Variables in subroutine m_micro_post_init: +DEBUG: Variables in subroutine m_micro_post_run: horizontal_loop_extent, vertical_dimension, number_of_frozen_precipitation_species, flag_mg3_as_mg2, ice_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, rain_number_concentration_updated_by_physics, snow_number_concentration_updated_by_physics, graupel_number_concentration_updated_by_physics, local_rain_water_mixing_ratio, local_snow_water_mixing_ratio, local_graupel_mixing_ratio, local_rain_number_concentration, local_snow_number_concentration, local_graupel_number_concentration, ccpp_error_message, ccpp_error_flag, lwe_thickness_of_ice_amount_on_dynamics_timestep, lwe_thickness_of_snow_amount_on_dynamics_timestep, lwe_thickness_of_graupel_amount_on_dynamics_timestep, time_step_for_physics +DEBUG: Variables in subroutine m_micro_post_finalize: +DEBUG: Parsing file gfdl_fv_sat_adj.F90 with registry OrderedDict([('fv_sat_adj', {'fv_sat_adj': {'fv_sat_adj_finalize': [160, 177], 'fv_sat_adj_run': [191, 312], 'fv_sat_adj_init': [104, 154]}})]) +DEBUG: Module name: fv_sat_adj +DEBUG: Scheme name: fv_sat_adj +DEBUG: Variables in subroutine fv_sat_adj_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine fv_sat_adj_run: ccpp_error_message, ccpp_error_flag, time_step_for_remapping_for_fast_physics, ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind, starting_x_direction_index, ending_x_direction_index, starting_x_direction_index_domain, ending_x_direction_index_domain, top_layer_index_for_fast_physics, vertical_dimension_for_fast_physics, vertical_dimension_for_thickness_at_Lagrangian_surface, starting_y_direction_index, ending_y_direction_index, starting_y_direction_index_domain, ending_y_direction_index_domain, number_of_ghost_zones, flag_for_hydrostatic_solver_for_fast_physics, flag_for_fast_microphysics_energy_conservation, atmosphere_energy_content_in_column, atmosphere_energy_content_at_Lagrangian_surface, number_of_gases_for_multi_gases_physics, gas_tracers_for_multi_gas_physics_at_Lagrangian_surface, water_vapor_specific_humidity_at_Lagrangian_surface, cloud_liquid_water_specific_humidity_at_Lagrangian_surface, cloud_ice_specific_humidity_at_Lagrangian_surface, cloud_rain_specific_humidity_at_Lagrangian_surface, cloud_snow_specific_humidity_at_Lagrangian_surface, cloud_graupel_specific_humidity_at_Lagrangian_surface, surface_geopotential_at_Lagrangian_surface, log_pressure_at_Lagrangian_surface, thickness_at_Lagrangian_surface, pressure_thickness_at_Lagrangian_surface, virtual_temperature_at_Lagrangian_surface, finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa, cloud_condensed_water_specific_humidity_at_Lagrangian_surface, kappa_dry_for_fast_physics, cappa_moist_gas_constant_at_Lagrangian_surface, cell_area_for_fast_physics, tendency_of_air_temperature_at_Lagrangian_surface, flag_for_tendency_of_air_temperature_at_Lagrangian_surface, flag_for_the_last_step_of_k_split_remapping, flag_for_inline_cloud_fraction_calculation, cloud_fraction_at_Lagrangian_surface, omp_threads_for_fast_physics +DEBUG: Variables in subroutine fv_sat_adj_init: ccpp_error_message, ccpp_error_flag, top_layer_index_for_fast_physics, number_of_gases_for_multi_gases_physics, flag_for_saturation_adjustment_for_microphysics_in_dynamics, number_of_water_species, gas_constants_for_multi_gases_physics, specific_heat_capacities_for_multi_gases_physics, mpi_rank_for_fast_physics, mpi_root_for_fast_physics +DEBUG: Parsing file cu_gf_driver.F90 with registry OrderedDict([('cu_gf_driver', {'cu_gf_driver': {'cu_gf_driver_run': [55, 685], 'cu_gf_driver_init': [18, 34], 'cu_gf_driver_finalize': [39, 40]}})]) +DEBUG: Skipping blank table cu_gf_driver_finalize +DEBUG: Module name: cu_gf_driver +DEBUG: Scheme name: cu_gf_driver +DEBUG: Variables in subroutine cu_gf_driver_run: number_of_tracers, cell_area, horizontal_loop_extent, horizontal_dimension, vertical_dimension, time_step_for_physics, conv_activity_counter, temperature_tendency_due_to_dynamics, moisture_tendency_due_to_dynamics, geopotential, lwe_thickness_of_deep_convective_precipitation_amount, water_vapor_specific_humidity_updated_by_physics, air_temperature_updated_by_physics, cloud_work_function, x_wind_updated_by_physics, y_wind_updated_by_physics, air_temperature, omega, water_vapor_specific_humidity, air_pressure, surface_air_pressure, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, sea_land_ice_mask, kinematic_surface_upward_sensible_heat_flux, kinematic_surface_upward_latent_heat_flux, ice_water_mixing_ratio_convective_transport_tracer, cloud_condensed_water_mixing_ratio_convective_transport_tracer, atmosphere_boundary_layer_thickness, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, flag_for_mass_flux_shallow_convection_scheme, water_friendly_aerosol_number_concentration, gas_constant_dry_air, tracer_concentration_updated_by_physics, index_for_ice_cloud_number_concentration, index_for_liquid_cloud_number_concentration, flag_for_microphysics_scheme, flag_for_thompson_microphysics_scheme, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cu_gf_driver_init: ccpp_error_message, ccpp_error_flag, mpi_rank, mpi_root +DEBUG: Variables in subroutine cu_gf_driver_finalize: +DEBUG: Parsing file samfdeepcnv.f with registry OrderedDict([('samfdeepcnv', {'samfdeepcnv': {'samfdeepcnv_run': [63, 2824], 'samfdeepcnv_finalize': [18, 19], 'samfdeepcnv_init': [12, 13]}})]) +DEBUG: Skipping blank table samfdeepcnv_finalize +DEBUG: Skipping blank table samfdeepcnv_init +DEBUG: Module name: samfdeepcnv +DEBUG: Scheme name: samfdeepcnv +DEBUG: Variables in subroutine samfdeepcnv_run: horizontal_loop_extent, horizontal_dimension, vertical_dimension, number_of_aerosol_tracers_for_convection, number_of_chemical_tracers, specific_heat_of_liquid_water_at_constant_pressure, specific_heat_of_dry_air_at_constant_pressure, specific_heat_of_water_vapor_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ratio_of_vapor_to_dry_air_gas_constants_minus_one, gravitational_acceleration, latent_heat_of_vaporization_of_water_at_0C, gas_constant_dry_air, gas_constant_water_vapor, temperature_at_zero_celsius, time_step_for_physics, index_for_turbulent_kinetic_energy_convective_transport_tracer, number_of_tracers_for_samf, air_pressure_difference_between_midlayers, air_pressure, surface_air_pressure, geopotential, convective_transportable_tracers, water_vapor_specific_humidity_updated_by_physics, air_temperature_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, coefficients_for_aerosol_scavenging, threshold_for_perturbed_vertical_velocity, flag_for_cellular_automata, flag_for_global_cellular_automata_closure, flag_for_global_cellular_automata_entr, flag_for_global_cellular_automata_trigger, fraction_of_cellular_automata_for_deep_convection, physics_field_for_coupling, cloud_work_function, lwe_thickness_of_deep_convective_precipitation_amount, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, sea_land_ice_mask, cell_area, omega, number_of_hydrometeors, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, vertical_velocity_for_updraft, convective_cloud_fraction_for_microphysics, detrained_mass_flux, tendency_of_cloud_water_due_to_convective_microphysics, convective_cloud_volume_fraction, ice_fraction_in_convective_tower, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, entrainment_rate_coefficient_deep_convection, rain_conversion_parameter_deep_convection, detrainment_conversion_parameter_deep_convection, downdraft_fraction_reaching_surface_over_land_deep_convection, downdraft_fraction_reaching_surface_over_ocean_deep_convection, rain_evaporation_coefficient_deep_convection, rain_evaporation_coefficient_over_land_deep_convection, momentum_transport_reduction_factor_pgf_deep_convection, aerosol_aware_parameter_deep_convection, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine samfdeepcnv_finalize: +DEBUG: Variables in subroutine samfdeepcnv_init: +DEBUG: Parsing file rrtmgp_lw_gas_optics.F90 with registry OrderedDict([('rrtmgp_lw_gas_optics', {'rrtmgp_lw_gas_optics': {'rrtmgp_lw_gas_optics_init': [18, 220], 'rrtmgp_lw_gas_optics_finalize': [264, 265], 'rrtmgp_lw_gas_optics_run': [227, 260]}})]) +DEBUG: Module name: rrtmgp_lw_gas_optics +DEBUG: Scheme name: rrtmgp_lw_gas_optics +DEBUG: Variables in subroutine rrtmgp_lw_gas_optics_init: directory_for_rte_rrtmgp_source_code, rrtmgp_kdistribution_lw, number_of_active_gases_used_by_RRTMGP, list_of_active_gases_used_by_RRTMGP, mpi_rank, mpi_root, mpi_comm, ccpp_error_message, ccpp_error_flag, coefficients_for_lw_gas_optics +DEBUG: Variables in subroutine rrtmgp_lw_gas_optics_finalize: +DEBUG: Variables in subroutine rrtmgp_lw_gas_optics_run: ccpp_error_message, ccpp_error_flag, coefficients_for_lw_gas_optics, flag_to_calc_lw, horizontal_loop_extent, vertical_dimension, air_pressure_at_layer_for_RRTMGP_in_hPa, air_pressure_at_interface_for_RRTMGP_in_hPa, air_temperature_at_layer_for_RRTMGP, air_temperature_at_interface_for_RRTMGP, surface_ground_temperature_for_radiation, Gas_concentrations_for_RRTMGP_suite, longwave_optical_properties_for_clear_sky, longwave_source_function +DEBUG: Parsing file rrtmg_lw_cloud_optics.F90 with registry OrderedDict([('mo_rrtmg_lw_cloud_optics', {})]) +DEBUG: Parsing file mp_thompson.F90 with registry OrderedDict([('mp_thompson', {'mp_thompson': {'mp_thompson_run': [91, 278], 'mp_thompson_finalize': [285, 295], 'mp_thompson_init': [16, 84]}})]) +DEBUG: Module name: mp_thompson +DEBUG: Scheme name: mp_thompson +DEBUG: Variables in subroutine mp_thompson_run: horizontal_loop_extent, vertical_dimension, gravitational_acceleration, gas_constant_dry_air, water_vapor_specific_humidity_updated_by_physics, cloud_condensed_water_mixing_ratio_updated_by_physics, rain_water_mixing_ratio_updated_by_physics, ice_water_mixing_ratio_updated_by_physics, snow_water_mixing_ratio_updated_by_physics, graupel_mixing_ratio_updated_by_physics, ice_number_concentration_updated_by_physics, rain_number_concentration_updated_by_physics, flag_for_aerosol_physics, cloud_droplet_number_concentration_updated_by_physics, water_friendly_aerosol_number_concentration_updated_by_physics, ice_friendly_aerosol_number_concentration_updated_by_physics, tendency_of_water_friendly_aerosols_at_surface, tendency_of_ice_friendly_aerosols_at_surface, air_temperature_updated_by_physics, air_pressure, geopotential_at_interface, omega, time_step_for_physics, lwe_thickness_of_explicit_precipitation_amount, lwe_thickness_of_explicit_rain_amount, lwe_thickness_of_graupel_amount, lwe_thickness_of_ice_amount, lwe_thickness_of_snow_amount, ratio_of_snowfall_to_rainfall, radar_reflectivity_10cm, flag_for_resetting_radar_reflectivity_calculation, flag_for_radar_reflectivity, effective_radius_of_stratiform_cloud_liquid_water_particle_in_um, effective_radius_of_stratiform_cloud_ice_particle_in_um, effective_radius_of_stratiform_cloud_snow_particle_in_um, mpi_comm, mpi_rank, mpi_root, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mp_thompson_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine mp_thompson_init: horizontal_loop_extent, vertical_dimension, flag_for_aerosol_physics, tendency_of_water_friendly_aerosols_at_surface, tendency_of_ice_friendly_aerosols_at_surface, mpi_comm, mpi_rank, mpi_root, ccpp_error_message, ccpp_error_flag, water_friendly_aerosol_number_concentration, ice_friendly_aerosol_number_concentration, omp_threads, flag_for_microphysics_scheme, flag_for_thompson_microphysics_scheme +DEBUG: Parsing file rrtmg_lw_pre.F90 with registry OrderedDict([('rrtmg_lw_pre', {'rrtmg_lw_pre': {'rrtmg_lw_pre_run': [14, 36], 'rrtmg_lw_pre_init': [9, 10], 'rrtmg_lw_pre_finalize': [39, 40]}})]) +DEBUG: Skipping blank table rrtmg_lw_pre_init +DEBUG: Skipping blank table rrtmg_lw_pre_finalize +DEBUG: Module name: rrtmg_lw_pre +DEBUG: Scheme name: rrtmg_lw_pre +DEBUG: Variables in subroutine rrtmg_lw_pre_run: GFS_control_type_instance, GFS_grid_type_instance, GFS_sfcprop_type_instance, GFS_radtend_type_instance, horizontal_loop_extent, surface_ground_temperature_for_radiation, surface_air_temperature_for_radiation, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rrtmg_lw_pre_init: +DEBUG: Variables in subroutine rrtmg_lw_pre_finalize: +DEBUG: Parsing file cires_ugwp.F90 with registry OrderedDict([('cires_ugwp', {'cires_ugwp': {'cires_ugwp_run': [113, 273], 'cires_ugwp_finalize': [81, 92], 'cires_ugwp_init': [29, 71]}})]) +DEBUG: Module name: cires_ugwp +DEBUG: Scheme name: cires_ugwp +DEBUG: Variables in subroutine cires_ugwp_run: do_ugwp, mpi_rank, mpi_root, horizontal_loop_extent, vertical_dimension, number_of_tracers, time_step_for_physics, index_of_time_step, number_of_equatorial_longitude_points, orography, orography_unfiltered, standard_deviation_of_subgrid_orography, number_of_statistical_measures_of_subgrid_orography, convexity_of_subgrid_orography, asymmetry_of_subgrid_orography, fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height, angle_from_east_of_maximum_subgrid_orographic_variations, slope_of_subgrid_orography, anisotropy_of_subgrid_orography, maximum_subgrid_orography, turb_oro_form_drag_flag, diag_ugwp_flag, multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag, latitude, latitude_degree, sine_of_latitude, cosine_of_latitude, cell_area, x_wind, y_wind, air_temperature, tracer_concentration, air_pressure_at_interface, air_pressure, dimensionless_exner_function_at_model_layers, geopotential_at_interface, geopotential, air_pressure_difference_between_midlayers, vertical_index_at_top_of_atmosphere_boundary_layer, instantaneous_x_stress_due_to_gravity_wave_drag, instantaneous_y_stress_due_to_gravity_wave_drag, tendency_of_x_wind_due_to_ugwp, tendency_of_y_wind_due_to_ugwp, tendency_of_air_temperature_due_to_ugwp, eddy_mixing_due_to_ugwp, instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag, instantaneous_momentum_flux_due_to_mountain_blocking_drag, instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag, instantaneous_momentum_flux_due_to_nonstationary_gravity_wave, height_of_mountain_blocking, height_of_low_level_wave_breaking, height_of_launch_level_of_orographic_gravity_wave, instantaneous_change_in_x_wind_due_to_mountain_blocking_drag, instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag, instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag, time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag, time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag, time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag, tendency_of_x_wind_due_to_model_physics, tendency_of_y_wind_due_to_model_physics, tendency_of_air_temperature_due_to_model_physics, level_of_dividing_streamline, gravitational_acceleration, pi, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, gas_constant_water_vapor, ratio_of_vapor_to_dry_air_gas_constants_minus_one, lwe_thickness_of_precipitation_amount_on_dynamics_timestep, index_for_turbulent_kinetic_energy, turbulent_kinetic_energy, tendency_of_turbulent_kinetic_energy_due_to_model_physics, flag_print, horizontal_index_of_printed_column, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cires_ugwp_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cires_ugwp_init: do_ugwp, mpi_rank, mpi_root, vertical_dimension, time_step_for_physics, number_of_equatorial_longitude_points, multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag, ccpp_error_message, ccpp_error_flag, iounit_namelist, namelist_filename_for_internal_file_reads, iounit_log, namelist_filename, number_of_latitude_points, a_parameter_of_the_hybrid_coordinate, b_parameter_of_the_hybrid_coordinate, multiplication_factors_for_convective_gravity_wave_drag, pressure_cutoff_for_rayleigh_damping, time_scale_for_rayleigh_damping, standard_atmospheric_pressure +DEBUG: Parsing file rascnv.F90 with registry OrderedDict([('rascnv', {'rascnv': {'rascnv_init': [61, 140], 'rascnv_finalize': [145, 152], 'rascnv_run': [225, 898]}})]) +DEBUG: Module name: rascnv +DEBUG: Scheme name: rascnv +DEBUG: Variables in subroutine rascnv_init: mpi_rank, time_step_for_physics, gravitational_acceleration, specific_heat_of_dry_air_at_constant_pressure, gas_constant_dry_air, gas_constant_water_vapor, latent_heat_of_vaporization_of_water_at_0C, latent_heat_of_fusion_of_water_at_0C, ratio_of_vapor_to_dry_air_gas_constants_minus_one, temperature_at_zero_celsius, triple_point_temperature_of_water, specific_heat_of_water_vapor_at_constant_pressure, specific_heat_of_liquid_water_at_constant_pressure, specific_heat_of_ice_at_constant_pressure, ratio_of_dry_air_to_water_vapor_gas_constants, ratio_of_dry_air_to_water_vapor_gas_constants_minus_one, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rascnv_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine rascnv_run: mpi_rank, time_step_for_physics, ccpp_error_message, ccpp_error_flag, horizontal_loop_extent, horizontal_dimension, vertical_dimension, number_of_tracers_for_samf, time_step_for_dynamics, multiplication_factor_for_critical_cloud_workfunction, cell_area, minimum_scaling_factor_for_critical_relative_humidity, inverse_scaling_factor_for_critical_relative_humidity, coefficient_from_cloud_ice_to_snow_ras, coefficient_from_cloud_water_to_rain_ras, cloud_condensed_water_ice_conversion_threshold_ras, condensate_fraction_detrained_in_updraft_layers, flag_flip, random_number_array, array_dimension_of_random_number, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, index_for_turbulent_kinetic_energy_convective_transport_tracer, index_of_time_step, critical_relative_humidity, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, x_wind_updated_by_physics, y_wind_updated_by_physics, convective_transportable_tracers, coefficients_for_aerosol_scavenging, air_pressure_at_interface, air_pressure, dimensionless_exner_function_at_model_interfaces, dimensionless_exner_function_at_model_layers, geopotential, geopotential_at_interface, vertical_index_at_top_of_atmosphere_boundary_layer, surface_drag_coefficient_for_momentum_in_air, lwe_thickness_of_deep_convective_precipitation_amount, vertical_index_at_cloud_base, vertical_index_at_cloud_top, flag_deep_convection, surface_wind_enhancement_due_to_convection, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, mass_fraction_of_convective_cloud_liquid_water, mass_fraction_of_convective_cloud_ice, vertical_velocity_for_updraft, convective_cloud_fraction_for_microphysics, detrained_mass_flux, tendency_of_cloud_water_due_to_convective_microphysics, convective_cloud_volume_fraction, ice_fraction_in_convective_tower, number_concentration_of_cloud_liquid_water_particles_for_detrainment, number_concentration_of_ice_crystals_for_detrainment +DEBUG: Parsing file cs_conv_aw_adj.F90 with registry OrderedDict([('cs_conv_aw_adj', {'cs_conv_aw_adj': {'cs_conv_aw_adj_run': [20, 92], 'cs_conv_aw_adj_finalize': [12, 13], 'cs_conv_aw_adj_init': [10, 11]}})]) +DEBUG: Module name: cs_conv_aw_adj +DEBUG: Scheme name: cs_conv_aw_adj +DEBUG: Variables in subroutine cs_conv_aw_adj_run: horizontal_dimension, vertical_dimension, flag_for_Chikira_Sugiyama_deep_convection, flag_for_Arakawa_Wu_adjustment, flag_for_shoc, number_of_tracers, number_of_hydrometeors, index_for_liquid_cloud_condensate, index_for_cloud_amount, number_of_tracers_for_cloud_condensate, gravitational_acceleration, convective_updraft_area_fraction, air_temperature_updated_by_physics, tracer_concentration_updated_by_physics, air_temperature_save, tracer_concentration_save, air_pressure_at_interface, cloud_fraction_for_MG, subgrid_scale_cloud_fraction_from_shoc, lwe_thickness_of_explicit_precipitation_amount, flag_for_microphysics_scheme, flag_for_morrison_gettelman_microphysics_scheme, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine cs_conv_aw_adj_finalize: +DEBUG: Variables in subroutine cs_conv_aw_adj_init: +DEBUG: Parsing file GFS_DCNV_generic.F90 with registry OrderedDict([('GFS_DCNV_generic_pre', {'GFS_DCNV_generic_pre': {'GFS_DCNV_generic_pre_run': [14, 62], 'GFS_DCNV_generic_pre_init': [4, 5], 'GFS_DCNV_generic_pre_finalize': [6, 7]}}), ('GFS_DCNV_generic_post', {})]) +DEBUG: Module name: GFS_DCNV_generic_pre +DEBUG: Scheme name: GFS_DCNV_generic_pre +DEBUG: Variables in subroutine GFS_DCNV_generic_pre_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, flag_for_convective_gravity_wave_drag, flag_for_chemistry_coupling, x_wind_updated_by_physics, y_wind_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, x_wind_save, y_wind_save, air_temperature_save, water_vapor_specific_humidity_save, fraction_of_cellular_automata_for_deep_convection, instantaneous_water_vapor_specific_humidity_tendency_due_to_convection, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_DCNV_generic_pre_init: +DEBUG: Variables in subroutine GFS_DCNV_generic_pre_finalize: +DEBUG: Parsing file GFS_DCNV_generic.F90 with registry OrderedDict([('GFS_DCNV_generic_pre', {'GFS_DCNV_generic_pre': {'GFS_DCNV_generic_pre_run': [14, 62], 'GFS_DCNV_generic_pre_init': [4, 5], 'GFS_DCNV_generic_pre_finalize': [6, 7]}}), ('GFS_DCNV_generic_post', {'GFS_DCNV_generic_post': {'GFS_DCNV_generic_post_init': [66, 67], 'GFS_DCNV_generic_post_run': [73, 142], 'GFS_DCNV_generic_post_finalize': [68, 69]}})]) +DEBUG: Module name: GFS_DCNV_generic_post +DEBUG: Scheme name: GFS_DCNV_generic_post +DEBUG: Variables in subroutine GFS_DCNV_generic_post_init: +DEBUG: Variables in subroutine GFS_DCNV_generic_post_run: horizontal_loop_extent, vertical_dimension, flag_diagnostics_3D, x_wind_updated_by_physics, y_wind_updated_by_physics, air_temperature_updated_by_physics, water_vapor_specific_humidity_updated_by_physics, x_wind_save, y_wind_save, air_temperature_save, water_vapor_specific_humidity_save, ccpp_error_message, ccpp_error_flag, flag_diagnostics, flag_for_ras_deep_convection, flag_for_Chikira_Sugiyama_deep_convection, dynamics_to_physics_timestep_ratio, lwe_thickness_of_deep_convective_precipitation_amount, time_step_for_dynamics, cloud_work_function, instantaneous_atmosphere_updraft_convective_mass_flux, instantaneous_atmosphere_downdraft_convective_mass_flux, instantaneous_atmosphere_detrainment_convective_mass_flux, gravitational_acceleration, number_of_3d_arrays_associated_with_pdf_based_clouds, array_dimension_of_3d_arrays_for_microphysics, number_of_convective_3d_cloud_fields, lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep, cumulative_cloud_work_function, cumulative_change_in_temperature_due_to_deep_convection, cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection, cumulative_change_in_x_wind_due_to_deep_convection, cumulative_change_in_y_wind_due_to_deep_convection, cumulative_atmosphere_updraft_convective_mass_flux, cumulative_atmosphere_downdraft_convective_mass_flux, cumulative_atmosphere_detrainment_convective_mass_flux, convective_cloud_water_mixing_ratio, convective_cloud_cover, convective_cloud_water_mixing_ratio_in_phy_f3d, convective_cloud_cover_in_phy_f3d +DEBUG: Variables in subroutine GFS_DCNV_generic_post_finalize: +DEBUG: Parsing file GFS_rad_time_vary.fv3.F90 with registry OrderedDict([('GFS_rad_time_vary', {'GFS_rad_time_vary': {'GFS_rad_time_vary_init': [9, 10], 'GFS_rad_time_vary_run': [16, 74], 'GFS_rad_time_vary_finalize': [78, 79]}})]) +DEBUG: Skipping blank table GFS_rad_time_vary_init +DEBUG: Skipping blank table GFS_rad_time_vary_finalize +DEBUG: Module name: GFS_rad_time_vary +DEBUG: Scheme name: GFS_rad_time_vary +DEBUG: Variables in subroutine GFS_rad_time_vary_init: +DEBUG: Variables in subroutine GFS_rad_time_vary_run: GFS_control_type_instance, GFS_data_type_instance_all_blocks, omp_threads, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rad_time_vary_finalize: +DEBUG: Parsing file GFS_rrtmgp_setup.F90 with registry OrderedDict([('GFS_rrtmgp_setup', {'GFS_rrtmgp_setup': {'GFS_rrtmgp_setup_init': [27, 95], 'GFS_rrtmgp_setup_finalize': [128, 138], 'GFS_rrtmgp_setup_run': [99, 124]}})]) +DEBUG: Module name: GFS_rrtmgp_setup +DEBUG: Scheme name: GFS_rrtmgp_setup +DEBUG: Variables in subroutine GFS_rrtmgp_setup_init: GFS_control_type_instance, vertical_sigma_coordinate_for_radiation_initialization, number_of_vertical_layers_for_radiation_calculations, flag_for_initial_time_date_control, flag_for_solar_constant, flag_for_using_prescribed_global_mean_co2_value, flag_for_default_aerosol_effect_in_shortwave_radiation, flag_for_using_climatology_albedo, flag_for_surface_emissivity_control, index_for_liquid_cloud_condensate, array_dimension_of_3d_arrays_for_microphysics, index_for_ozone, flag_for_max_random_overlap_clouds_for_shortwave_radiation, flag_for_max_random_overlap_clouds_for_longwave_radiation, flag_for_sw_clouds_without_sub_grid_approximation, flag_for_lw_clouds_without_sub_grid_approximation, flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation, flag_for_CRICK_proof_cloud_water, flag_for_cloud_condensate_normalized_by_cloud_cover, flag_for_microphysics_scheme, flag_for_precipitation_effect_on_radiation, date_and_time_at_model_initialization_reordered, flag_for_vertical_index_direction_control, mpi_rank, ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_setup_finalize: ccpp_error_message, ccpp_error_flag +DEBUG: Variables in subroutine GFS_rrtmgp_setup_run: mpi_rank, ccpp_error_message, ccpp_error_flag, date_and_time_at_model_initialization, forecast_date_and_time, frequency_for_shortwave_radiation, time_step_for_dynamics, flag_to_calc_sw, equation_of_time, sine_of_solar_declination_angle, cosine_of_solar_declination_angle, solar_constant +INFO: filtering out variable GFS_stateout_type_instance +INFO: filtering out variable Gas_concentrations_for_RRTMGP_suite +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_10mu_band +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_lw_fluxes +INFO: filtering out variable RRTMGP_lw_heating_rate_spectral +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_sw_fluxes +INFO: filtering out variable RRTMGP_sw_heating_rate_spectral +INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme +INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip +INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology +INFO: filtering out variable air_pressure_at_interface_for_RRTMGP_in_hPa +INFO: filtering out variable air_pressure_at_layer_for_RRTMGP_in_hPa +INFO: filtering out variable air_temperature_at_interface_for_RRTMGP +INFO: filtering out variable air_temperature_at_layer_for_RRTMGP +INFO: filtering out variable area_fraction_of_wet_canopy +INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface +INFO: filtering out variable atmosphere_energy_content_in_column +INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl +INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc +INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl +INFO: filtering out variable baseline_surface_roughness_length +INFO: filtering out variable canopy_air_temperature +INFO: filtering out variable canopy_air_vapor_pressure +INFO: filtering out variable canopy_intercepted_ice_mass +INFO: filtering out variable canopy_intercepted_liquid_water +INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface +INFO: filtering out variable ccn_number_concentration +INFO: filtering out variable ccpp_block_number +INFO: filtering out variable cell_area_for_fast_physics +INFO: filtering out variable cell_size +INFO: filtering out variable characteristic_grid_length_scale +INFO: filtering out variable chemical_tracers +INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable cloud_area_fraction +INFO: filtering out variable cloud_base_mass_flux +INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface +INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_droplet_number_concentration +INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics +INFO: filtering out variable cloud_fraction_at_Lagrangian_surface +INFO: filtering out variable cloud_fraction_for_MG +INFO: filtering out variable cloud_fraction_updated_by_physics +INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_phase_transition_denominator +INFO: filtering out variable cloud_phase_transition_threshold_temperature +INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_specie_mix_flag +INFO: filtering out variable cloudpdf +INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras +INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras +INFO: filtering out variable coefficients_for_lw_cloud_optics +INFO: filtering out variable coefficients_for_lw_gas_optics +INFO: filtering out variable coefficients_for_sw_cloud_optics +INFO: filtering out variable coefficients_for_sw_gas_optics +INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers +INFO: filtering out variable conv_activity_counter +INFO: filtering out variable convective_updraft_area_fraction +INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces +INFO: filtering out variable couple_sgs_clouds_to_radiation_flag +INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable density_of_frozen_precipitation +INFO: filtering out variable depth_of_soil_levels_for_land_surface_model +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS +INFO: filtering out variable dimensionless_exner_function_at_model_interfaces +INFO: filtering out variable directory_for_rte_rrtmgp_source_code +INFO: filtering out variable do_myjsfc +INFO: filtering out variable do_mynnsfclay +INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable edmf_flag +INFO: filtering out variable edmf_momentum_transport_flag +INFO: filtering out variable edmf_partition_flag +INFO: filtering out variable edmf_tke_transport_flag +INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um +INFO: filtering out variable emdf_updraft_area +INFO: filtering out variable emdf_updraft_cloud_water +INFO: filtering out variable emdf_updraft_entrainment_rate +INFO: filtering out variable emdf_updraft_theta_l +INFO: filtering out variable emdf_updraft_total_water +INFO: filtering out variable emdf_updraft_vertical_velocity +INFO: filtering out variable ending_x_direction_index +INFO: filtering out variable ending_x_direction_index_domain +INFO: filtering out variable ending_y_direction_index +INFO: filtering out variable ending_y_direction_index_domain +INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS +INFO: filtering out variable equilibrium_soil_water_content +INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation +INFO: filtering out variable fast_soil_pool_mass_content_of_carbon +INFO: filtering out variable fine_root_mass +INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa +INFO: filtering out variable flag_arakawa_wu_downdraft +INFO: filtering out variable flag_convective_tracer_transport +INFO: filtering out variable flag_flip +INFO: filtering out variable flag_flux_form_CS +INFO: filtering out variable flag_for_2015_ozone_physics +INFO: filtering out variable flag_for_canopy_stomatal_resistance_option +INFO: filtering out variable flag_for_cloud_effective_radii +INFO: filtering out variable flag_for_dynamic_vegetation_option +INFO: filtering out variable flag_for_fast_microphysics_energy_conservation +INFO: filtering out variable flag_for_frozen_soil_permeability_option +INFO: filtering out variable flag_for_frozen_soil_physics +INFO: filtering out variable flag_for_ground_snow_surface_albedo_option +INFO: filtering out variable flag_for_hydrostatic_heating_from_physics +INFO: filtering out variable flag_for_hydrostatic_solver +INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics +INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics +INFO: filtering out variable flag_for_individual_cloud_species_advected +INFO: filtering out variable flag_for_inline_cloud_fraction_calculation +INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option +INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme +INFO: filtering out variable flag_for_precipitation_partition_option +INFO: filtering out variable flag_for_radiation_transfer_option +INFO: filtering out variable flag_for_reading_leaf_area_index_from_input +INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation +INFO: filtering out variable flag_for_restart +INFO: filtering out variable flag_for_runoff_and_groundwater_option +INFO: filtering out variable flag_for_sas_deep_convection_scheme +INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics +INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option +INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option +INFO: filtering out variable flag_for_supercooled_liquid_water_option +INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option +INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping +INFO: filtering out variable flag_mg3_as_mg2 +INFO: filtering out variable flag_skip_macro +INFO: filtering out variable fraction_of_cloud_top_water_scavenged +INFO: filtering out variable fraction_of_tracer_scavenged +INFO: filtering out variable gas_constants_for_multi_gases_physics +INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface +INFO: filtering out variable gf_memory_counter +INFO: filtering out variable graupel_mixing_ratio_updated_by_physics +INFO: filtering out variable graupel_number_concentration_updated_by_physics +INFO: filtering out variable grav_settling +INFO: filtering out variable ground_temperature_for_noahmp +INFO: filtering out variable gwd_opt +INFO: filtering out variable h2o_forcing +INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable ice_friendly_aerosol_number_concentration +INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable ice_number_concentration +INFO: filtering out variable ice_number_concentration_updated_by_physics +INFO: filtering out variable ice_supersaturation_threshold +INFO: filtering out variable ice_water_mixing_ratio +INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics +INFO: filtering out variable in_number_concentration +INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer +INFO: filtering out variable initial_permutation_seed_lw +INFO: filtering out variable initial_permutation_seed_sw +INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_x_momentum_flux_from_form_drag +INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_y_momentum_flux_from_form_drag +INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd +INFO: filtering out variable k_level_of_highest_reaching_plume +INFO: filtering out variable kappa_dry_for_fast_physics +INFO: filtering out variable kinematic_buoyancy_flux_from_shoc +INFO: filtering out variable kinematic_surface_latent_heat_flux +INFO: filtering out variable lake_water_storage +INFO: filtering out variable latitude_index_in_debug_printouts +INFO: filtering out variable layer_bottom_depth_from_snow_surface +INFO: filtering out variable leaf_area_index +INFO: filtering out variable leaf_mass +INFO: filtering out variable limit_for_temperature_tendency_for_microphysics +INFO: filtering out variable liquid_water_density +INFO: filtering out variable list_of_active_gases_used_by_RRTMGP +INFO: filtering out variable local_graupel_mixing_ratio +INFO: filtering out variable local_graupel_number_concentration +INFO: filtering out variable local_rain_number_concentration +INFO: filtering out variable local_rain_water_mixing_ratio +INFO: filtering out variable local_snow_number_concentration +INFO: filtering out variable local_snow_water_mixing_ratio +INFO: filtering out variable log_pressure_at_Lagrangian_surface +INFO: filtering out variable longwave_optical_properties_for_aerosols +INFO: filtering out variable longwave_optical_properties_for_clear_sky +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable longwave_source_function +INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics +INFO: filtering out variable maximum_column_heating_rate +INFO: filtering out variable maximum_mass_flux +INFO: filtering out variable maximum_updraft_velocity_at_cloud_base +INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency +INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency +INFO: filtering out variable mg_allow_supersat_after_sed +INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow +INFO: filtering out variable mg_bergeron_efficiency_factor +INFO: filtering out variable mg_cloud_water_variance +INFO: filtering out variable mg_drop_concentration_constant +INFO: filtering out variable mg_flag_drop_concentration_constant +INFO: filtering out variable mg_flag_for_cloud_ice_processes +INFO: filtering out variable mg_flag_for_gmao_ice_formulation +INFO: filtering out variable mg_flag_for_graupel +INFO: filtering out variable mg_flag_for_hail +INFO: filtering out variable mg_flag_for_heterogeneous_freezing +INFO: filtering out variable mg_flag_for_liu_liquid_treatment +INFO: filtering out variable mg_flag_for_sb2001_autoconversion +INFO: filtering out variable mg_flag_for_uniform_subcolumns +INFO: filtering out variable mg_flag_graupel_concentration_constant +INFO: filtering out variable mg_flag_ice_concentration_constant +INFO: filtering out variable mg_graupel_concentration_constant +INFO: filtering out variable mg_ice_concentration_constant +INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio +INFO: filtering out variable mg_minimum_rh_for_ice +INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice +INFO: filtering out variable mg_tuning_factor_for_alphas +INFO: filtering out variable mg_type_of_precip_fraction_method +INFO: filtering out variable minimum_value_of_specific_humidity +INFO: filtering out variable mix_total_water_flag +INFO: filtering out variable mixing_length +INFO: filtering out variable mixing_length_flag +INFO: filtering out variable moisture_from_previous_timestep +INFO: filtering out variable moisture_tendency_due_to_dynamics +INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable mpi_comm +INFO: filtering out variable mpi_rank_for_fast_physics +INFO: filtering out variable mpi_root_for_fast_physics +INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction +INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels +INFO: filtering out variable nondimensional_snow_age +INFO: filtering out variable normalized_soil_wetness_for_land_surface_model +INFO: filtering out variable number_of_active_gases_used_by_RRTMGP +INFO: filtering out variable number_of_aerosol_tracers_MG +INFO: filtering out variable number_of_angles_used_in_gaussian_quadrature +INFO: filtering out variable number_of_cloud_types_CS +INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data +INFO: filtering out variable number_of_frozen_precipitation_species +INFO: filtering out variable number_of_gases_for_multi_gases_physics +INFO: filtering out variable number_of_ghost_zones +INFO: filtering out variable number_of_plumes +INFO: filtering out variable number_of_rrtmgp_ice_roughness +INFO: filtering out variable number_of_snow_layers +INFO: filtering out variable number_of_spectral_wave_trancation_for_sas +INFO: filtering out variable number_of_tracers_for_CS +INFO: filtering out variable number_of_tracers_plus_one +INFO: filtering out variable number_of_water_species +INFO: filtering out variable omp_threads_for_fast_physics +INFO: filtering out variable ozone_mixing_ratio +INFO: filtering out variable potential_temperature_at_2m +INFO: filtering out variable potential_temperature_at_viscous_sublayer_top +INFO: filtering out variable prandtl_number +INFO: filtering out variable pressure_thickness_at_Lagrangian_surface +INFO: filtering out variable q_prime_squared +INFO: filtering out variable rain_number_concentration_updated_by_physics +INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics +INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind +INFO: filtering out variable reciprocal_of_obukhov_length +INFO: filtering out variable relative_humidity +INFO: filtering out variable rrtmgp_cloud_optics_flag +INFO: filtering out variable rrtmgp_coeff_lw_cloud_optics +INFO: filtering out variable rrtmgp_coeff_sw_cloud_optics +INFO: filtering out variable rrtmgp_kdistribution_lw +INFO: filtering out variable rrtmgp_kdistribution_sw +INFO: filtering out variable secant_of_diffusivity_angle_each_RRTMGP_LW_band +INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation +INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term +INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface +INFO: filtering out variable shortwave_optical_properties_for_aerosols +INFO: filtering out variable shortwave_optical_properties_for_clear_sky +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable slow_soil_pool_mass_content_of_carbon +INFO: filtering out variable snow_albedo_at_previous_time_step +INFO: filtering out variable snow_layer_ice +INFO: filtering out variable snow_layer_liquid_water +INFO: filtering out variable snow_mass_at_previous_time_step +INFO: filtering out variable snow_number_concentration_updated_by_physics +INFO: filtering out variable snow_precipitation_rate_at_surface +INFO: filtering out variable snow_temperature +INFO: filtering out variable snow_temperature_bottom_first_layer +INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics +INFO: filtering out variable soil_temperature_for_land_surface_model +INFO: filtering out variable soil_vertical_dimension_for_land_surface_model +INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table +INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics +INFO: filtering out variable specific_heat_of_ice_at_constant_pressure +INFO: filtering out variable specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable stability_function_for_heat +INFO: filtering out variable starting_x_direction_index +INFO: filtering out variable starting_x_direction_index_domain +INFO: filtering out variable starting_y_direction_index +INFO: filtering out variable starting_y_direction_index_domain +INFO: filtering out variable stem_area_index +INFO: filtering out variable stem_mass +INFO: filtering out variable subgrid_cloud_fraction_pbl +INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl +INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc +INFO: filtering out variable surface_albedo_nearIR_diffuse +INFO: filtering out variable surface_albedo_nearIR_direct +INFO: filtering out variable surface_albedo_uvvis_dif +INFO: filtering out variable surface_albedo_uvvis_dir +INFO: filtering out variable surface_condensation_mass +INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp +INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp +INFO: filtering out variable surface_emissivity_in_each_RRTMGP_LW_band +INFO: filtering out variable surface_exchange_coefficient_for_heat +INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m +INFO: filtering out variable surface_exchange_coefficient_for_moisture +INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m +INFO: filtering out variable surface_friction_velocity_drag +INFO: filtering out variable surface_geopotential_at_Lagrangian_surface +INFO: filtering out variable surface_latent_heat +INFO: filtering out variable surface_layer_evaporation_switch +INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes +INFO: filtering out variable surface_stability_parameter +INFO: filtering out variable t_prime_q_prime +INFO: filtering out variable t_prime_squared +INFO: filtering out variable temperature_from_previous_timestep +INFO: filtering out variable temperature_tendency_due_to_dynamics +INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics +INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable theta_star +INFO: filtering out variable thickness_at_Lagrangian_surface +INFO: filtering out variable time_step_for_remapping_for_fast_physics +INFO: filtering out variable tke_advect +INFO: filtering out variable tke_at_mass_points +INFO: filtering out variable tke_budget +INFO: filtering out variable tke_dissipative_heating_factor +INFO: filtering out variable toa_incident_sw_flux_by_spectral_point +INFO: filtering out variable top_layer_index_for_fast_physics +INFO: filtering out variable total_accumulated_snowfall +INFO: filtering out variable triple_point_temperature_of_water +INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer +INFO: filtering out variable u_wind_component_at_viscous_sublayer_top +INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS +INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS +INFO: filtering out variable v_wind_component_at_viscous_sublayer_top +INFO: filtering out variable vegetation_temperature +INFO: filtering out variable vertical_dimension_for_fast_physics +INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface +INFO: filtering out variable vertical_dimension_of_h2o_forcing_data +INFO: filtering out variable virtual_temperature +INFO: filtering out variable virtual_temperature_at_Lagrangian_surface +INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model +INFO: filtering out variable water_friendly_aerosol_number_concentration +INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable water_storage_in_aquifer +INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil +INFO: filtering out variable water_table_depth +INFO: filtering out variable water_table_recharge_when_deep +INFO: filtering out variable water_table_recharge_when_shallow +INFO: filtering out variable water_vapor_mixing_ratio_at_surface +INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top +INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top +INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable wood_mass +INFO: filtering out variable x_momentum_tendency_from_blocking_drag +INFO: filtering out variable x_momentum_tendency_from_form_drag +INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_blocking_drag +INFO: filtering out variable y_momentum_tendency_from_form_drag +INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd +INFO: Checking optional arguments in physics schemes ... +DEBUG: Optional argument cloud_ice_water_path to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument cloud_ice_water_path to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument cloud_liquid_water_path to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument cloud_liquid_water_path to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument cloud_rain_water_path to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument cloud_rain_water_path to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument cloud_snow_water_path to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument cloud_snow_water_path to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument components_of_surface_downward_shortwave_fluxes to subroutine rrtmgp_sw_rte_run in module rrtmgp_sw_rte is required, keep in list +DEBUG: Optional argument components_of_surface_downward_shortwave_fluxes to subroutine GFS_rrtmgp_sw_post_run in module GFS_rrtmgp_sw_post is required, keep in list +DEBUG: Optional argument components_of_surface_downward_shortwave_fluxes to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument fraction_of_ice_water_cloud to subroutine mp_fer_hires_init in module mp_fer_hires is required, keep in list +DEBUG: Optional argument fraction_of_rain_water_cloud to subroutine mp_fer_hires_init in module mp_fer_hires is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_ice_cloud to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_ice_cloud to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_liquid_cloud to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_liquid_cloud to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_rain_drop to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_rain_drop to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_snow_flake to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument mean_effective_radius_for_snow_flake to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +DEBUG: Optional argument rime_factor to subroutine mp_fer_hires_init in module mp_fer_hires is required, keep in list +DEBUG: Optional argument tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels to subroutine rrtmg_lw_run in module rrtmg_lw is required, keep in list +DEBUG: Optional argument tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels to subroutine rrtmg_sw_run in module rrtmg_sw is required, keep in list +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Comparing metadata for requested and provided variables ... +DEBUG: Requested variable GFS_cldprop_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Cldprop in module GFS_typedefs +DEBUG: Requested variable GFS_cldprop_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Cldprop in module GFS_typedefs +DEBUG: Requested variable GFS_cldprop_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Cldprop in module GFS_typedefs +DEBUG: Requested variable GFS_control_type_instance in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_abort SCHEME_GFS_abort SUBROUTINE_GFS_abort_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_suite_interstitial_rad_reset SCHEME_GFS_suite_interstitial_rad_reset SUBROUTINE_GFS_suite_interstitial_rad_reset_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_suite_interstitial_phys_reset SCHEME_GFS_suite_interstitial_phys_reset SUBROUTINE_GFS_suite_interstitial_phys_reset_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_init matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_control_type_instance in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control in module CCPP_data +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_coupling_type_instance in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Coupling in module GFS_typedefs +DEBUG: Requested variable GFS_data_type_instance_all_blocks in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target GFS_Data in module CCPP_data +DEBUG: Requested variable GFS_data_type_instance_all_blocks in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target GFS_Data in module CCPP_data +DEBUG: Requested variable GFS_data_type_instance_all_blocks in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run matched to target GFS_Data in module CCPP_data +DEBUG: Requested variable GFS_diag_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_diag_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_diag_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_diag_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_diag_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_diag_type_instance in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_grid_type_instance in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Grid in module GFS_typedefs +DEBUG: Requested variable GFS_interstitial_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Interstitial(cdata%thrd_no) in module CCPP_data +DEBUG: Requested variable GFS_interstitial_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Interstitial(cdata%thrd_no) in module CCPP_data +DEBUG: Requested variable GFS_interstitial_type_instance in MODULE_GFS_suite_interstitial_rad_reset SCHEME_GFS_suite_interstitial_rad_reset SUBROUTINE_GFS_suite_interstitial_rad_reset_run matched to target GFS_Interstitial(cdata%thrd_no) in module CCPP_data +DEBUG: Requested variable GFS_interstitial_type_instance in MODULE_GFS_suite_interstitial_phys_reset SCHEME_GFS_suite_interstitial_phys_reset SUBROUTINE_GFS_suite_interstitial_phys_reset_run matched to target GFS_Interstitial(cdata%thrd_no) in module CCPP_data +DEBUG: Requested variable GFS_interstitial_type_instance_all_threads in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target GFS_Interstitial in module CCPP_data +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_init matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_radtend_type_instance in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_sfcprop_type_instance in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_statein_type_instance in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Data(cdata%blk_no)%Statein in module GFS_typedefs +DEBUG: Requested variable GFS_tbd_type_instance in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd in module GFS_typedefs +DEBUG: Requested variable GFS_tbd_type_instance in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Data(cdata%blk_no)%Tbd in module GFS_typedefs +DEBUG: Requested variable GFS_tbd_type_instance in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Data(cdata%blk_no)%Tbd in module GFS_typedefs +DEBUG: Requested variable GFS_tbd_type_instance in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffhh in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fh2_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_heat_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffhh_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ffmm in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10 in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%fm10_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ice in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_land in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ocean in module GFS_typedefs +DEBUG: Requested variable Monin_Obukhov_similarity_function_for_momentum_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ffmm_ocean in module GFS_typedefs +DEBUG: Requested variable a_parameter_of_the_hybrid_coordinate in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%ak in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Tbd%acv in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_graupel_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totgrp in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_graupel_amount_in_bucket in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totgrpb in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_ice_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totice in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_ice_amount_in_bucket in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%toticeb in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_precipitation_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totprcp in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_precipitation_amount in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totprcp in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totprcpb in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totprcpb in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_snow_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totsnw in module GFS_typedefs +DEBUG: Requested variable accumulated_lwe_thickness_of_snow_amount_in_bucket in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%totsnwb in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_layer_dimension_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%lmk in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_layer_dimension_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%lmk in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_layer_dimension_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%lmk in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_level_dimension_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%lmp in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_level_dimension_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%lmp in module GFS_typedefs +DEBUG: Requested variable adjusted_vertical_level_dimension_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%lmp in module GFS_typedefs +DEBUG: Requested variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,3) in module GFS_typedefs +DEBUG: Requested variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,3) in module GFS_typedefs +DEBUG: Requested variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,3) in module GFS_typedefs +DEBUG: Requested variable aerosol_aware_parameter_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%asolfac_deep in module GFS_typedefs +DEBUG: Requested variable aerosol_aware_parameter_shallow_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%asolfac_shal in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_depth_for_longwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,1) in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_depth_for_longwave_bands_01_16 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,1) in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_depth_for_shortwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,1) in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_depth_for_shortwave_bands_01_16 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,1) in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_properties_for_longwave_bands_01_16 in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Interstitial(cdata%thrd_no)%faerlw in module GFS_typedefs +DEBUG: Requested variable aerosol_optical_properties_for_shortwave_bands_01_16 in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Interstitial(cdata%thrd_no)%faersw in module GFS_typedefs +DEBUG: Requested variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,2) in module GFS_typedefs +DEBUG: Requested variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%faerlw(:,:,:,2) in module GFS_typedefs +DEBUG: Requested variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,2) in module GFS_typedefs +DEBUG: Requested variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%faersw(:,:,:,2) in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Data(cdata%blk_no)%Statein%prsi in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface_for_radiation_in_hPa in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%plvl in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface_for_radiation_in_hPa in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%plvl in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_interface_for_radiation_in_hPa in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%plvl in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_layer_for_radiation_in_hPa in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%plyr in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_layer_for_radiation_in_hPa in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%plyr in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_layer_for_radiation_in_hPa in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%plyr in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_at_lowest_model_layer in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsl(:,1) in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_pressure_difference_between_midlayers in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%del in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_interface_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tlvl in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_interface_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%tlvl in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_interface_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%tlvl in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_layer_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tlyr in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_layer_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%tlyr in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_layer_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%tlyr in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%tgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer_for_diag in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%t1 in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%t1 in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_lowest_model_layer_updated_by_physics in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0(:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_at_previous_time_step in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,3) in module GFS_typedefs +DEBUG: Requested variable air_temperature_lapse_rate_constant in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target rlapse in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_save in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_t in module GFS_typedefs +DEBUG: Requested variable air_temperature_two_time_steps_back in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,1) in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cu_ntiedtke_post SCHEME_cu_ntiedtke_post SUBROUTINE_cu_ntiedtke_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable air_temperature_updated_by_physics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gt0 in module GFS_typedefs +DEBUG: Requested variable angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%theta in module GFS_typedefs +DEBUG: Requested variable angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%theta in module GFS_typedefs +DEBUG: Requested variable angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%theta in module GFS_typedefs +DEBUG: Requested variable angle_from_east_of_maximum_subgrid_orographic_variations in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%theta in module GFS_typedefs +DEBUG: Requested variable anisotropy_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gamma in module GFS_typedefs +DEBUG: Requested variable anisotropy_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%gamma in module GFS_typedefs +DEBUG: Requested variable anisotropy_of_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%gamma in module GFS_typedefs +DEBUG: Requested variable anisotropy_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%gamma in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_2d_arrays_for_microphysics in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%num_p2d in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_3d_arrays_for_microphysics in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%num_p3d in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_3d_arrays_for_microphysics in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%num_p3d in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_3d_arrays_for_microphysics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%num_p3d in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_3d_arrays_for_microphysics in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%num_p3d in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_random_number in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%nrcm in module GFS_typedefs +DEBUG: Requested variable array_dimension_of_random_number in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%nrcm in module GFS_typedefs +DEBUG: Requested variable asymmetry_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%oa4 in module GFS_typedefs +DEBUG: Requested variable asymmetry_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%oa4 in module GFS_typedefs +DEBUG: Requested variable asymmetry_of_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%oa4 in module GFS_typedefs +DEBUG: Requested variable asymmetry_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%oa4 in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_boundary_layer_thickness in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Intdiag%hpbl in module GFS_typedefs +DEBUG: Requested variable atmosphere_diffusivity_coefficient_factor in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_init matched to target GFS_Control%moninq_fac in module GFS_typedefs +DEBUG: Requested variable atmosphere_diffusivity_coefficient_factor in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%moninq_fac in module GFS_typedefs +DEBUG: Requested variable atmosphere_diffusivity_coefficient_factor in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%moninq_fac in module GFS_typedefs +DEBUG: Requested variable atmosphere_diffusivity_coefficient_factor in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_init matched to target GFS_Control%moninq_fac in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dkt in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dkt in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dkt in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dkt in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dkt in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%xkzm_h in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background_maximum in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%xkzminv in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background_maximum in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%xkzminv in module GFS_typedefs +DEBUG: Requested variable atmosphere_heat_diffusivity_background_maximum in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%xkzminv in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_momentum_diffusivity_background in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%xkzm_m in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Interstitial(cdata%thrd_no)%aerodp in module GFS_typedefs +DEBUG: Requested variable b_parameter_of_the_hybrid_coordinate in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%bk in module GFS_typedefs +DEBUG: Requested variable bounded_vegetation_area_fraction in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%sigmaf in module GFS_typedefs +DEBUG: Requested variable bounded_vegetation_area_fraction in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%sigmaf in module GFS_typedefs +DEBUG: Requested variable bounded_vegetation_area_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%sigmaf in module GFS_typedefs +DEBUG: Requested variable bounded_vegetation_area_fraction in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sigmaf in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%rb in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ice in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ice in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ice in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_land in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_land in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_land in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ocean in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ocean in module GFS_typedefs +DEBUG: Requested variable bulk_richardson_number_at_lowest_model_level_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%rb_ocean in module GFS_typedefs +DEBUG: Requested variable canopy_upward_latent_heat_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%evcw in module GFS_typedefs +DEBUG: Requested variable canopy_upward_latent_heat_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%evcw in module GFS_typedefs +DEBUG: Requested variable canopy_upward_latent_heat_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%evcw in module GFS_typedefs +DEBUG: Requested variable canopy_upward_latent_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evcw in module GFS_typedefs +DEBUG: Requested variable canopy_water_amount in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%canopy in module GFS_typedefs +DEBUG: Requested variable canopy_water_amount in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%canopy in module GFS_typedefs +DEBUG: Requested variable canopy_water_amount in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%canopy in module GFS_typedefs +DEBUG: Requested variable ccpp_error_flag in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_abort SCHEME_GFS_abort SUBROUTINE_GFS_abort_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_ntiedtke_post SCHEME_cu_ntiedtke_post SUBROUTINE_cu_ntiedtke_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_rad_reset SCHEME_GFS_suite_interstitial_rad_reset SUBROUTINE_GFS_suite_interstitial_rad_reset_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_phys_reset SCHEME_GFS_suite_interstitial_phys_reset SUBROUTINE_GFS_suite_interstitial_phys_reset_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_finalize matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_flag in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target cdata%errflg in module ccpp_types +DEBUG: Requested variable ccpp_error_message in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_abort SCHEME_GFS_abort SUBROUTINE_GFS_abort_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_abort SCHEME_GFS_abort SUBROUTINE_GFS_abort_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_ini_fini_test SCHEME_GFS_suite_ini_fini_test SUBROUTINE_GFS_suite_ini_fini_test_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_ntiedtke_post SCHEME_cu_ntiedtke_post SUBROUTINE_cu_ntiedtke_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_ntiedtke_post SCHEME_cu_ntiedtke_post SUBROUTINE_cu_ntiedtke_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_rad_reset SCHEME_GFS_suite_interstitial_rad_reset SUBROUTINE_GFS_suite_interstitial_rad_reset_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_rad_reset SCHEME_GFS_suite_interstitial_rad_reset SUBROUTINE_GFS_suite_interstitial_rad_reset_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_phys_reset SCHEME_GFS_suite_interstitial_phys_reset SUBROUTINE_GFS_suite_interstitial_phys_reset_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_phys_reset SCHEME_GFS_suite_interstitial_phys_reset SUBROUTINE_GFS_suite_interstitial_phys_reset_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_fv_sat_adj SCHEME_fv_sat_adj SUBROUTINE_fv_sat_adj_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_finalize matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_finalize from len=* to len=512 +DEBUG: Requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target cdata%errmsg in module ccpp_types +DEBUG: Update kind information for requested variable ccpp_error_message in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run from len=* to len=512 +DEBUG: Requested variable ccpp_loop_counter in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable ccpp_loop_counter in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable ccpp_loop_counter in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable ccpp_loop_counter in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable ccpp_loop_counter in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable ccpp_loop_counter in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target cdata%loop_cnt in module ccpp_types +DEBUG: Requested variable cell_area in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cell_area in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Grid%area in module GFS_typedefs +DEBUG: Requested variable cellular_automata_global_pattern in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%ca1 in module GFS_typedefs +DEBUG: Requested variable cloud_area_fraction_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%cldsa in module GFS_typedefs +DEBUG: Requested variable cloud_area_fraction_for_radiation in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cldsa in module GFS_typedefs +DEBUG: Requested variable cloud_area_fraction_for_radiation in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%cldsa in module GFS_typedefs +DEBUG: Requested variable cloud_area_fraction_for_radiation in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cldsa in module GFS_typedefs +DEBUG: Requested variable cloud_area_fraction_for_radiation in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cldsa in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_conversion_threshold in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%wminco in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_convective_transport_tracer in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_save in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_save in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_save in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_save in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_save in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_condensed_water_mixing_ratio_updated_by_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntcw) in module GFS_typedefs +DEBUG: Requested variable cloud_decorrelation_length in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%de_lgth in module GFS_typedefs +DEBUG: Requested variable cloud_decorrelation_length in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%de_lgth in module GFS_typedefs +DEBUG: Requested variable cloud_decorrelation_length in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%de_lgth in module GFS_typedefs +DEBUG: Requested variable cloud_decorrelation_length in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%de_lgth in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_ice_water_path in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_liquid_water_path in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cloud_optical_depth_layers_at_0p55mu_band in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cldtausw in module GFS_typedefs +DEBUG: Requested variable cloud_optical_depth_layers_at_0p55mu_band in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%cldtausw in module GFS_typedefs +DEBUG: Requested variable cloud_optical_depth_layers_at_10mu_band in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%cldtaulw in module GFS_typedefs +DEBUG: Requested variable cloud_optical_depth_layers_at_10mu_band in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cldtaulw in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_rain_water_path in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_snow_water_path in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cloud_top_entrainment_instability_value in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%ctei_r in module GFS_typedefs +DEBUG: Requested variable cloud_work_function in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cld1d in module GFS_typedefs +DEBUG: Requested variable cloud_work_function in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%cld1d in module GFS_typedefs +DEBUG: Requested variable cloud_work_function in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cld1d in module GFS_typedefs +DEBUG: Requested variable cloud_work_function in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cld1d in module GFS_typedefs +DEBUG: Requested variable coefficient_c_0 in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%c_0 in module GFS_typedefs +DEBUG: Requested variable coefficient_c_d in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%c_d in module GFS_typedefs +DEBUG: Requested variable coefficient_for_evaporation_of_rainfall in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%evpco in module GFS_typedefs +DEBUG: Requested variable coefficient_from_cloud_ice_to_snow in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%psautco in module GFS_typedefs +DEBUG: Requested variable coefficient_from_cloud_water_to_rain in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%prautco in module GFS_typedefs +DEBUG: Requested variable coefficient_w_0 in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%w_0 in module GFS_typedefs +DEBUG: Requested variable coefficient_w_d in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%w_d in module GFS_typedefs +DEBUG: Requested variable coefficients_for_aerosol_scavenging in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%fscav in module GFS_typedefs +DEBUG: Requested variable coefficients_for_aerosol_scavenging in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%fscav in module GFS_typedefs +DEBUG: Requested variable coefficients_for_aerosol_scavenging in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%fscav in module GFS_typedefs +DEBUG: Requested variable column_precipitable_water in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%pwat in module GFS_typedefs +DEBUG: Requested variable components_of_surface_downward_shortwave_fluxes in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Interstitial(cdata%thrd_no)%scmpsw in module GFS_typedefs +DEBUG: Requested variable components_of_surface_downward_shortwave_fluxes in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%scmpsw in module GFS_typedefs +DEBUG: Requested variable components_of_surface_downward_shortwave_fluxes in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%scmpsw in module GFS_typedefs +DEBUG: Requested variable components_of_surface_downward_shortwave_fluxes in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%scmpsw in module GFS_typedefs +DEBUG: Requested variable components_of_surface_downward_shortwave_fluxes in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%scmpsw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvc in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover_in_phy_f3d in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvc) in module GFS_typedefs +DEBUG: Requested variable convective_cloud_cover_in_phy_f3d in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvc) in module GFS_typedefs +DEBUG: Requested variable convective_cloud_fraction_for_microphysics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cf_upi in module GFS_typedefs +DEBUG: Requested variable convective_cloud_fraction_for_microphysics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cf_upi in module GFS_typedefs +DEBUG: Requested variable convective_cloud_fraction_for_microphysics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cf_upi in module GFS_typedefs +DEBUG: Requested variable convective_cloud_fraction_for_microphysics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cf_upi in module GFS_typedefs +DEBUG: Requested variable convective_cloud_fraction_for_microphysics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cf_upi in module GFS_typedefs +DEBUG: Requested variable convective_cloud_switch in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Control%clstp in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_volume_fraction in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clcn in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cnvw in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio_in_phy_f3d in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvw) in module GFS_typedefs +DEBUG: Requested variable convective_cloud_water_mixing_ratio_in_phy_f3d in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,GFS_Control%ncnvw) in module GFS_typedefs +DEBUG: Requested variable convective_precipitation_rate_from_previous_timestep in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%draincprv in module GFS_typedefs +DEBUG: Requested variable convective_precipitation_rate_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%draincprv in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convective_transportable_tracers in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw in module GFS_typedefs +DEBUG: Requested variable convexity_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%oc in module GFS_typedefs +DEBUG: Requested variable convexity_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%oc in module GFS_typedefs +DEBUG: Requested variable convexity_of_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%oc in module GFS_typedefs +DEBUG: Requested variable convexity_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%oc in module GFS_typedefs +DEBUG: Requested variable cosine_of_latitude in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Grid%coslat in module GFS_typedefs +DEBUG: Requested variable cosine_of_latitude in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Grid%coslat in module GFS_typedefs +DEBUG: Requested variable cosine_of_solar_declination_angle in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%cdec in module GFS_typedefs +DEBUG: Requested variable cosine_of_solar_declination_angle in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%cdec in module GFS_typedefs +DEBUG: Requested variable cosine_of_solar_declination_angle in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%cdec in module GFS_typedefs +DEBUG: Requested variable cosine_of_zenith_angle in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%coszen in module GFS_typedefs +DEBUG: Requested variable cosine_of_zenith_angle in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Data(cdata%blk_no)%Radtend%coszen in module GFS_typedefs +DEBUG: Requested variable cosine_of_zenith_angle in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Radtend%coszen in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_temperature in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%gamt in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_temperature in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%gamt in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_temperature in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%gamt in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_water_vapor in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%gamq in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_water_vapor in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%gamq in module GFS_typedefs +DEBUG: Requested variable countergradient_mixing_term_for_water_vapor in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%gamq in module GFS_typedefs +DEBUG: Requested variable critical_cloud_top_entrainment_instability_criteria in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%ctei_rm in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%rhc in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity_at_PBL_top in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%crtrh(2) in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity_at_surface in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%crtrh(1) in module GFS_typedefs +DEBUG: Requested variable critical_relative_humidity_at_top_of_atmosphere in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%crtrh(3) in module GFS_typedefs +DEBUG: Requested variable cumulative_atmosphere_detrainment_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%det_mf in module GFS_typedefs +DEBUG: Requested variable cumulative_atmosphere_downdraft_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dwn_mf in module GFS_typedefs +DEBUG: Requested variable cumulative_atmosphere_updraft_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%upd_mf in module GFS_typedefs +DEBUG: Requested variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%evcwa in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,9) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,9) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,7) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,7) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_temperature in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_concentration_due_to_temperature in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,8) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,5) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_PBL in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_PBL in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_deep_convection in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_longwave_radiation in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_microphysics in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_microphysics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,6) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,7) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,7) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_shal_convection in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,5) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_shal_convection in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,5) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_temperature_due_to_shortwave_radiation in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dt3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,4) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dq3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_PBL in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_PBL in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,1) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,3) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt(:,:,2) in module GFS_typedefs +DEBUG: Requested variable cumulative_cloud_work_function in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cldwrk in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcp in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcp in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcp in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcpb in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcpb in module GFS_typedefs +DEBUG: Requested variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cnvprcpb in module GFS_typedefs +DEBUG: Requested variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sbsnoa in module GFS_typedefs +DEBUG: Requested variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%snohfa in module GFS_typedefs +DEBUG: Requested variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%evbsa in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dnirdf_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvisdf_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dnirbm_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvisbm_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dlwsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dswsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_ground_heat_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%gflux in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nnirdf_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nvisdf_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nnirbm_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nvisbm_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nlwsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nswsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_pressure_multiplied_by_timestep in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%psmean in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_snow_area_fraction_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%snowca in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dqsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dqsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ep in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dtsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dtsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dtsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ulwsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dusfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dusfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dusfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvsfc_cpl in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dvsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dvsfc in module GFS_typedefs +DEBUG: Requested variable cumulative_transpiration_flux_multiplied_by_timestep in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%transa in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%idat in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%idat in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%idat in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization_reordered in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%idate in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization_reordered in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%idate in module GFS_typedefs +DEBUG: Requested variable date_and_time_at_model_initialization_reordered in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%idate in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Interstitial(cdata%thrd_no)%idxday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable daytime_points_dimension in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Interstitial(cdata%thrd_no)%nday in module GFS_typedefs +DEBUG: Requested variable deep_soil_temperature in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tg3 in module GFS_typedefs +DEBUG: Requested variable deep_soil_temperature in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tg3 in module GFS_typedefs +DEBUG: Requested variable deep_soil_temperature in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tg3 in module GFS_typedefs +DEBUG: Requested variable detrained_mass_flux in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_mfd in module GFS_typedefs +DEBUG: Requested variable detrained_mass_flux in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_mfd in module GFS_typedefs +DEBUG: Requested variable detrained_mass_flux in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_mfd in module GFS_typedefs +DEBUG: Requested variable detrained_mass_flux in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_mfd in module GFS_typedefs +DEBUG: Requested variable detrained_mass_flux in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_mfd in module GFS_typedefs +DEBUG: Requested variable detrainment_conversion_parameter_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%c1_deep in module GFS_typedefs +DEBUG: Requested variable detrainment_conversion_parameter_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%c1_deep in module GFS_typedefs +DEBUG: Requested variable detrainment_conversion_parameter_shallow_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%c1_shal in module GFS_typedefs +DEBUG: Requested variable detrainment_conversion_parameter_shallow_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%c1_shal in module GFS_typedefs +DEBUG: Requested variable dewpoint_temperature_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dpt2m in module GFS_typedefs +DEBUG: Requested variable diag_ugwp_flag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%ldiag_ugwp in module GFS_typedefs +DEBUG: Requested variable diag_ugwp_flag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%ldiag_ugwp in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable diffusivity_background_sigma_level in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%xkzm_s in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_interface in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%prsik(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk(:,1) in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dimensionless_exner_function_at_model_layers in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Statein%prslk in module GFS_typedefs +DEBUG: Requested variable dissipation_estimate_of_air_temperature_at_model_layers in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Statein%diss_est in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_heat_content in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xt in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_heat_content in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xt in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_heat_content in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xt in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_thickness in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xz in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_thickness in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xz in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_thickness in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xz in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_x_current in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xu in module GFS_typedefs +DEBUG: Requested variable diurnal_thermocline_layer_y_current in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xv in module GFS_typedefs +DEBUG: Requested variable do_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%do_ugwp in module GFS_typedefs +DEBUG: Requested variable do_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%do_ugwp in module GFS_typedefs +DEBUG: Requested variable dominant_freezing_rain_type in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tdomzr in module GFS_typedefs +DEBUG: Requested variable dominant_rain_type in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tdomr in module GFS_typedefs +DEBUG: Requested variable dominant_sleet_type in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tdomip in module GFS_typedefs +DEBUG: Requested variable dominant_snow_type in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tdoms in module GFS_typedefs +DEBUG: Requested variable downdraft_fraction_reaching_surface_over_land_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%betal_deep in module GFS_typedefs +DEBUG: Requested variable downdraft_fraction_reaching_surface_over_land_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%betal_deep in module GFS_typedefs +DEBUG: Requested variable downdraft_fraction_reaching_surface_over_ocean_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%betas_deep in module GFS_typedefs +DEBUG: Requested variable downdraft_fraction_reaching_surface_over_ocean_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%betas_deep in module GFS_typedefs +DEBUG: Requested variable duration_of_sunshine in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%suntim in module GFS_typedefs +DEBUG: Requested variable dynamics_to_physics_timestep_ratio in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%frain in module GFS_typedefs +DEBUG: Requested variable dynamics_to_physics_timestep_ratio in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%frain in module GFS_typedefs +DEBUG: Requested variable dynamics_to_physics_timestep_ratio in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%frain in module GFS_typedefs +DEBUG: Requested variable eddy_mixing_due_to_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_kdis in module GFS_typedefs +DEBUG: Requested variable entrainment_rate_coefficient_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%clam_deep in module GFS_typedefs +DEBUG: Requested variable entrainment_rate_coefficient_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%clam_deep in module GFS_typedefs +DEBUG: Requested variable entrainment_rate_coefficient_shallow_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%clam_shal in module GFS_typedefs +DEBUG: Requested variable entrainment_rate_coefficient_shallow_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%clam_shal in module GFS_typedefs +DEBUG: Requested variable equation_of_time in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%slag in module GFS_typedefs +DEBUG: Requested variable equation_of_time in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%slag in module GFS_typedefs +DEBUG: Requested variable equation_of_time in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%slag in module GFS_typedefs +DEBUG: Requested variable explicit_rainfall_rate_from_previous_timestep in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%drainncprv in module GFS_typedefs +DEBUG: Requested variable explicit_rainfall_rate_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%drainncprv in module GFS_typedefs +DEBUG: Requested variable extra_top_layer in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target LTP in module GFS_typedefs +DEBUG: Requested variable extra_top_layer in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target LTP in module GFS_typedefs +DEBUG: Requested variable extra_top_layer in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target LTP in module GFS_typedefs +DEBUG: Requested variable flag_TKE_dissipation_heating in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%dspheat in module GFS_typedefs +DEBUG: Requested variable flag_TKE_dissipation_heating in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%dspheat in module GFS_typedefs +DEBUG: Requested variable flag_TKE_dissipation_heating in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%dspheat in module GFS_typedefs +DEBUG: Requested variable flag_TKE_dissipation_heating in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%dspheat in module GFS_typedefs +DEBUG: Requested variable flag_debug in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%debug in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_deep_convection in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kcnv in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%lssav in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_diagnostics_3D in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%ldiag3d in module GFS_typedefs +DEBUG: Requested variable flag_for_Arakawa_Wu_adjustment in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run matched to target GFS_Control%do_aw in module GFS_typedefs +DEBUG: Requested variable flag_for_Arakawa_Wu_adjustment in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%do_aw in module GFS_typedefs +DEBUG: Requested variable flag_for_Arakawa_Wu_adjustment in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%do_aw in module GFS_typedefs +DEBUG: Requested variable flag_for_Arakawa_Wu_adjustment in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%do_aw in module GFS_typedefs +DEBUG: Requested variable flag_for_CRICK_proof_cloud_water in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%crick_proof in module GFS_typedefs +DEBUG: Requested variable flag_for_CRICK_proof_cloud_water in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%crick_proof in module GFS_typedefs +DEBUG: Requested variable flag_for_Chikira_Sugiyama_deep_convection in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%cscnv in module GFS_typedefs +DEBUG: Requested variable flag_for_Chikira_Sugiyama_deep_convection in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%cscnv in module GFS_typedefs +DEBUG: Requested variable flag_for_Chikira_Sugiyama_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%cscnv in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_convective_transport_and_PBL_diffusion in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%trans_aero in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_convective_transport_and_PBL_diffusion in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%trans_aero in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_aerosol_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%ltaerosol in module GFS_typedefs +DEBUG: Requested variable flag_for_canopy_heat_storage in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%lheatstrg in module GFS_typedefs +DEBUG: Requested variable flag_for_canopy_heat_storage in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%lheatstrg in module GFS_typedefs +DEBUG: Requested variable flag_for_cellular_automata in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%do_ca in module GFS_typedefs +DEBUG: Requested variable flag_for_cellular_automata in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%do_ca in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_chemistry_coupling in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%cplchm in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cice in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_cice in module GFS_typedefs +DEBUG: Requested variable flag_for_cloud_condensate_normalized_by_cloud_cover in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ccnorm in module GFS_typedefs +DEBUG: Requested variable flag_for_cloud_condensate_normalized_by_cloud_cover in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ccnorm in module GFS_typedefs +DEBUG: Requested variable flag_for_convective_gravity_wave_drag in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Control%do_cnvgwd in module GFS_typedefs +DEBUG: Requested variable flag_for_convective_gravity_wave_drag in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%do_cnvgwd in module GFS_typedefs +DEBUG: Requested variable flag_for_convective_transport_of_tracers in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%trans_trac in module GFS_typedefs +DEBUG: Requested variable flag_for_default_aerosol_effect_in_shortwave_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%iaer in module GFS_typedefs +DEBUG: Requested variable flag_for_default_aerosol_effect_in_shortwave_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%iaer in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_fer_hires_microphysics_scheme in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%imp_physics_fer_hires in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_first_time_step in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target GFS_Control%first_time_step in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_flux_coupling in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%cplflx in module GFS_typedefs +DEBUG: Requested variable flag_for_fractional_grid in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%frac_grid in module GFS_typedefs +DEBUG: Requested variable flag_for_fractional_grid in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%frac_grid in module GFS_typedefs +DEBUG: Requested variable flag_for_fractional_grid in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%frac_grid in module GFS_typedefs +DEBUG: Requested variable flag_for_fractional_grid in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%frac_grid in module GFS_typedefs +DEBUG: Requested variable flag_for_gf_deep_convection_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imfdeepcnv_gf in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_gfdl_microphysics_scheme in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%imp_physics_gfdl in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%ca_global in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%ca_global in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%ca_global in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata_closure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%ca_closure in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata_entr in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%ca_entr in module GFS_typedefs +DEBUG: Requested variable flag_for_global_cellular_automata_trigger in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%ca_trigger in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_guess_run in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_guess in module GFS_typedefs +DEBUG: Requested variable flag_for_hedmf in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%hybedmf in module GFS_typedefs +DEBUG: Requested variable flag_for_hedmf in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%hybedmf in module GFS_typedefs +DEBUG: Requested variable flag_for_initial_time_date_control in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ictm in module GFS_typedefs +DEBUG: Requested variable flag_for_initial_time_date_control in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ictm in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_iteration in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%flag_iter in module GFS_typedefs +DEBUG: Requested variable flag_for_land_surface_scheme in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Control%lsm in module GFS_typedefs +DEBUG: Requested variable flag_for_land_surface_scheme in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%lsm in module GFS_typedefs +DEBUG: Requested variable flag_for_land_surface_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%lsm in module GFS_typedefs +DEBUG: Requested variable flag_for_land_surface_scheme in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lsm in module GFS_typedefs +DEBUG: Requested variable flag_for_lw_clouds_without_sub_grid_approximation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%isubc_lw in module GFS_typedefs +DEBUG: Requested variable flag_for_lw_clouds_without_sub_grid_approximation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%isubc_lw in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_deep_convection_scheme in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_init matched to target GFS_Control%imfdeepcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_deep_convection_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imfdeepcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_shallow_convection_scheme in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%imfshalcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_shallow_convection_scheme in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target GFS_Control%imfshalcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_shallow_convection_scheme in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%imfshalcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_mass_flux_shallow_convection_scheme in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%imfshalcnv in module GFS_typedefs +DEBUG: Requested variable flag_for_max_random_overlap_clouds_for_longwave_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%iovr_lw in module GFS_typedefs +DEBUG: Requested variable flag_for_max_random_overlap_clouds_for_longwave_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%iovr_lw in module GFS_typedefs +DEBUG: Requested variable flag_for_max_random_overlap_clouds_for_shortwave_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%iovr_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_max_random_overlap_clouds_for_shortwave_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%iovr_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_microphysics_scheme in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%imp_physics in module GFS_typedefs +DEBUG: Requested variable flag_for_moorthi_stratus in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%mstrat in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_morrison_gettelman_microphysics_scheme in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%imp_physics_mg in module GFS_typedefs +DEBUG: Requested variable flag_for_mountain_blocking in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%use_zmtnblck in module GFS_typedefs +DEBUG: Requested variable flag_for_noahmp_land_surface_scheme in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Control%lsm_noahmp in module GFS_typedefs +DEBUG: Requested variable flag_for_noahmp_land_surface_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%lsm_noahmp in module GFS_typedefs +DEBUG: Requested variable flag_for_noahmp_land_surface_scheme in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lsm_noahmp in module GFS_typedefs +DEBUG: Requested variable flag_for_nsstm_run in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%nstf_name(1) in module GFS_typedefs +DEBUG: Requested variable flag_for_nsstm_run in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Control%nstf_name(1) in module GFS_typedefs +DEBUG: Requested variable flag_for_nsstm_run in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Control%nstf_name(1) in module GFS_typedefs +DEBUG: Requested variable flag_for_old_PBL_scheme in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%old_monin in module GFS_typedefs +DEBUG: Requested variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%icliq_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%icliq_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_ozone_physics in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_init matched to target GFS_Control%oz_phys in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_effect_on_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%norad_precip in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_effect_on_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%norad_precip in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%srflag in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%srflag in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%srflag in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%srflag in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%srflag in module GFS_typedefs +DEBUG: Requested variable flag_for_precipitation_type_algorithm in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%cal_pre in module GFS_typedefs +DEBUG: Requested variable flag_for_radar_reflectivity in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%lradar in module GFS_typedefs +DEBUG: Requested variable flag_for_radar_reflectivity in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%lradar in module GFS_typedefs +DEBUG: Requested variable flag_for_radar_reflectivity in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%lradar in module GFS_typedefs +DEBUG: Requested variable flag_for_ras_deep_convection in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ras in module GFS_typedefs +DEBUG: Requested variable flag_for_ras_deep_convection in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%ras in module GFS_typedefs +DEBUG: Requested variable flag_for_reduced_drag_coefficient_over_sea in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Control%redrag in module GFS_typedefs +DEBUG: Requested variable flag_for_ruc_land_surface_scheme in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%lsm_ruc in module GFS_typedefs +DEBUG: Requested variable flag_for_ruc_land_surface_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%lsm_ruc in module GFS_typedefs +DEBUG: Requested variable flag_for_samf_shallow_convection_scheme in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%imfshalcnv_samf in module GFS_typedefs +DEBUG: Requested variable flag_for_sas_shallow_convection_scheme in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target GFS_Control%imfshalcnv_sas in module GFS_typedefs +DEBUG: Requested variable flag_for_sas_shallow_convection_scheme in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%imfshalcnv_sas in module GFS_typedefs +DEBUG: Requested variable flag_for_scale_aware_Shinhong_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%shinhong in module GFS_typedefs +DEBUG: Requested variable flag_for_scale_aware_TKE_moist_EDMF_PBL in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%satmedmf in module GFS_typedefs +DEBUG: Requested variable flag_for_scale_aware_TKE_moist_EDMF_PBL in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%satmedmf in module GFS_typedefs +DEBUG: Requested variable flag_for_scale_aware_TKE_moist_EDMF_PBL in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%satmedmf in module GFS_typedefs +DEBUG: Requested variable flag_for_shallow_convection in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%shal_cnv in module GFS_typedefs +DEBUG: Requested variable flag_for_shallow_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target GFS_Control%shal_cnv in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_init matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_shoc in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%do_shoc in module GFS_typedefs +DEBUG: Requested variable flag_for_solar_constant in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%isol in module GFS_typedefs +DEBUG: Requested variable flag_for_solar_constant in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%isol in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_shum_option in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%do_shum in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_skeb_option in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%do_skeb in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_surface_perturbations in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%do_sfcperts in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_surface_physics_perturbations in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%do_sppt in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_surface_physics_perturbations in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%do_sppt in module GFS_typedefs +DEBUG: Requested variable flag_for_stochastic_surface_physics_perturbations in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%do_sppt in module GFS_typedefs +DEBUG: Requested variable flag_for_surface_emissivity_control in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%iems in module GFS_typedefs +DEBUG: Requested variable flag_for_surface_emissivity_control in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%iems in module GFS_typedefs +DEBUG: Requested variable flag_for_surface_roughness_option_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Control%sfc_z0_type in module GFS_typedefs +DEBUG: Requested variable flag_for_sw_clouds_without_sub_grid_approximation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%isubc_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_sw_clouds_without_sub_grid_approximation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%isubc_sw in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_thompson_microphysics_scheme in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%imp_physics_thompson in module GFS_typedefs +DEBUG: Requested variable flag_for_using_climatology_albedo in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ialb in module GFS_typedefs +DEBUG: Requested variable flag_for_using_climatology_albedo in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ialb in module GFS_typedefs +DEBUG: Requested variable flag_for_using_prescribed_global_mean_co2_value in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ico2 in module GFS_typedefs +DEBUG: Requested variable flag_for_using_prescribed_global_mean_co2_value in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ico2 in module GFS_typedefs +DEBUG: Requested variable flag_for_vertical_index_direction_control in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%iflip in module GFS_typedefs +DEBUG: Requested variable flag_for_vertical_index_direction_control in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%iflip in module GFS_typedefs +DEBUG: Requested variable flag_for_wave_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Control%cplwav in module GFS_typedefs +DEBUG: Requested variable flag_for_wave_coupling_to_atm in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%cplwav2atm in module GFS_typedefs +DEBUG: Requested variable flag_for_wave_coupling_to_atm in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%cplwav2atm in module GFS_typedefs +DEBUG: Requested variable flag_for_wsm6_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_wsm6 in module GFS_typedefs +DEBUG: Requested variable flag_for_wsm6_microphysics_scheme in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%imp_physics_wsm6 in module GFS_typedefs +DEBUG: Requested variable flag_for_wsm6_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_wsm6 in module GFS_typedefs +DEBUG: Requested variable flag_for_wsm6_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_wsm6 in module GFS_typedefs +DEBUG: Requested variable flag_for_ysu in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%do_ysu in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_zhao_carr in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_microphysics_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imp_physics_zhao_carr in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_microphysics_scheme in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%imp_physics_zhao_carr in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_microphysics_scheme in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%imp_physics_zhao_carr in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_pdf_microphysics_scheme in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%imp_physics_zhao_carr_pdf in module GFS_typedefs +DEBUG: Requested variable flag_for_zhao_carr_pdf_microphysics_scheme in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%imp_physics_zhao_carr_pdf in module GFS_typedefs +DEBUG: Requested variable flag_idealized_physics in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%lsidea in module GFS_typedefs +DEBUG: Requested variable flag_idealized_physics in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%lsidea in module GFS_typedefs +DEBUG: Requested variable flag_idealized_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%lsidea in module GFS_typedefs +DEBUG: Requested variable flag_idealized_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%lsidea in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_lake_surface_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%lake in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_lake_surface_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%lake in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_land_surface_fraction in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%dry in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_ocean_surface_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%ocean in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_ocean_surface_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%ocean in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_sea_ice_surface_fraction in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%icy in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_nonzero_wet_surface_fraction in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%wet in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_print in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%lprnt in module GFS_typedefs +DEBUG: Requested variable flag_reset_maximum_hourly_fields in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%reset in module GFS_typedefs +DEBUG: Requested variable flag_reset_maximum_hourly_fields in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Interstitial(cdata%thrd_no)%reset in module GFS_typedefs +DEBUG: Requested variable flag_shallow_convective_cloud in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%shcnvcw in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_lw in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target GFS_Control%lslwr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable flag_to_calc_sw in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%lsswr in module GFS_typedefs +DEBUG: Requested variable forecast_date_and_time in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%jdat in module GFS_typedefs +DEBUG: Requested variable forecast_date_and_time in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%jdat in module GFS_typedefs +DEBUG: Requested variable forecast_date_and_time in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%jdat in module GFS_typedefs +DEBUG: Requested variable forecast_hour_of_the_day in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%solhr in module GFS_typedefs +DEBUG: Requested variable forecast_hour_of_the_day in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%solhr in module GFS_typedefs +DEBUG: Requested variable forecast_hour_of_the_day in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%solhr in module GFS_typedefs +DEBUG: Requested variable forecast_time in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%fhour in module GFS_typedefs +DEBUG: Requested variable forecast_time in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Control%fhour in module GFS_typedefs +DEBUG: Requested variable forecast_time in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Control%fhour in module GFS_typedefs +DEBUG: Requested variable forecast_time in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%fhour in module GFS_typedefs +DEBUG: Requested variable forecast_time_at_previous_timestep in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%phour in module GFS_typedefs +DEBUG: Requested variable fraction_of_cellular_automata_for_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Coupling%ca_deep in module GFS_typedefs +DEBUG: Requested variable fraction_of_cellular_automata_for_deep_convection in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%ca_deep in module GFS_typedefs +DEBUG: Requested variable fraction_of_convective_cloud in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Cldprop%cv in module GFS_typedefs +DEBUG: Requested variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clx in module GFS_typedefs +DEBUG: Requested variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%clx in module GFS_typedefs +DEBUG: Requested variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%clx in module GFS_typedefs +DEBUG: Requested variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%clx in module GFS_typedefs +DEBUG: Requested variable fraction_of_ice_water_cloud in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%f_ice in module GFS_typedefs +DEBUG: Requested variable fraction_of_ice_water_cloud in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Interstitial(cdata%thrd_no)%f_ice in module GFS_typedefs +DEBUG: Requested variable fraction_of_ice_water_cloud in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Interstitial(cdata%thrd_no)%f_ice in module GFS_typedefs +DEBUG: Requested variable fraction_of_rain_water_cloud in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%f_rain in module GFS_typedefs +DEBUG: Requested variable fraction_of_rain_water_cloud in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Interstitial(cdata%thrd_no)%f_rain in module GFS_typedefs +DEBUG: Requested variable fraction_of_rain_water_cloud in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Interstitial(cdata%thrd_no)%f_rain in module GFS_typedefs +DEBUG: Requested variable free_convection_layer_thickness in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%d_conv in module GFS_typedefs +DEBUG: Requested variable freezing_point_temperature_of_seawater in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_tice in module GFS_typedefs +DEBUG: Requested variable freezing_point_temperature_of_seawater in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target con_tice in module GFS_typedefs +DEBUG: Requested variable freezing_point_temperature_of_seawater in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target con_tice in module GFS_typedefs +DEBUG: Requested variable frequency_for_shortwave_radiation in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%fhswr in module GFS_typedefs +DEBUG: Requested variable frequency_for_shortwave_radiation in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%fhswr in module GFS_typedefs +DEBUG: Requested variable frequency_for_shortwave_radiation in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%fhswr in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_dry_air in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_rd in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable gas_constant_water_vapor in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_rv in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Statein%phil in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_at_interface in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Statein%phii in module GFS_typedefs +DEBUG: Requested variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Interstitial(cdata%thrd_no)%del_gz in module GFS_typedefs +DEBUG: Requested variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Interstitial(cdata%thrd_no)%del_gz in module GFS_typedefs +DEBUG: Requested variable graupel_precipitation_rate_from_previous_timestep in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dgraupelprv in module GFS_typedefs +DEBUG: Requested variable graupel_precipitation_rate_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dgraupelprv in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable gravitational_acceleration in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target con_g in module GFS_typedefs +DEBUG: Requested variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%ctei_rml in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%work1 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%work2 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%work2 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%work2 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%work2 in module GFS_typedefs +DEBUG: Requested variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%work2 in module GFS_typedefs +DEBUG: Requested variable height_above_ground_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlvl in module GFS_typedefs +DEBUG: Requested variable height_above_ground_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlvl in module GFS_typedefs +DEBUG: Requested variable height_above_ground_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlvl in module GFS_typedefs +DEBUG: Requested variable height_above_ground_at_lowest_model_layer in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlvl in module GFS_typedefs +DEBUG: Requested variable height_above_ground_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlvl in module GFS_typedefs +DEBUG: Requested variable height_of_launch_level_of_orographic_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zogw in module GFS_typedefs +DEBUG: Requested variable height_of_launch_level_of_orographic_gravity_wave in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%zogw in module GFS_typedefs +DEBUG: Requested variable height_of_low_level_wave_breaking in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zlwb in module GFS_typedefs +DEBUG: Requested variable height_of_low_level_wave_breaking in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%zlwb in module GFS_typedefs +DEBUG: Requested variable height_of_mountain_blocking in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zmtb in module GFS_typedefs +DEBUG: Requested variable height_of_mountain_blocking in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%zmtb in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_dimension in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%blksz2(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_index_of_printed_column in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%ipr in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_init matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable horizontal_loop_extent in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%blksz(cdata%blk_no) in module GFS_typedefs +DEBUG: Requested variable ice_fraction_in_convective_tower in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_fice in module GFS_typedefs +DEBUG: Requested variable ice_fraction_in_convective_tower in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_fice in module GFS_typedefs +DEBUG: Requested variable ice_fraction_in_convective_tower in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_fice in module GFS_typedefs +DEBUG: Requested variable ice_fraction_in_convective_tower in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_fice in module GFS_typedefs +DEBUG: Requested variable ice_fraction_in_convective_tower in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_fice in module GFS_typedefs +DEBUG: Requested variable ice_precipitation_rate_from_previous_timestep in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%diceprv in module GFS_typedefs +DEBUG: Requested variable ice_precipitation_rate_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%diceprv in module GFS_typedefs +DEBUG: Requested variable ice_vertical_dimension in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%kice in module GFS_typedefs +DEBUG: Requested variable ice_vertical_dimension in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Control%kice in module GFS_typedefs +DEBUG: Requested variable ice_vertical_dimension in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Control%kice in module GFS_typedefs +DEBUG: Requested variable ice_vertical_dimension in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%kice in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_convective_transport_tracer in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%clw(:,:,1) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_save in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_save in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_save in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_save in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) in module GFS_typedefs +DEBUG: Requested variable ice_water_mixing_ratio_save in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntiw) in module GFS_typedefs +DEBUG: Requested variable index_for_cloud_amount in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntclamt in module GFS_typedefs +DEBUG: Requested variable index_for_cloud_amount in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntclamt in module GFS_typedefs +DEBUG: Requested variable index_for_cloud_amount in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%ntclamt in module GFS_typedefs +DEBUG: Requested variable index_for_diagnostic_printout in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%ipt in module GFS_typedefs +DEBUG: Requested variable index_for_first_chemical_tracer in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntchs in module GFS_typedefs +DEBUG: Requested variable index_for_first_chemical_tracer in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntchs in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntgl in module GFS_typedefs +DEBUG: Requested variable index_for_graupel_number_concentration in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntgnc in module GFS_typedefs +DEBUG: Requested variable index_for_graupel_number_concentration in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntgnc in module GFS_typedefs +DEBUG: Requested variable index_for_graupel_number_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntgnc in module GFS_typedefs +DEBUG: Requested variable index_for_graupel_number_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntgnc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_condensate in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%ntiw in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_cloud_number_concentration in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%ntinc in module GFS_typedefs +DEBUG: Requested variable index_for_ice_friendly_aerosols in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntia in module GFS_typedefs +DEBUG: Requested variable index_for_ice_friendly_aerosols in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntia in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_condensate in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ntcw in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_liquid_cloud_number_concentration in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%ntlnc in module GFS_typedefs +DEBUG: Requested variable index_for_mass_weighted_rime_factor in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%nqrimef in module GFS_typedefs +DEBUG: Requested variable index_for_mass_weighted_rime_factor in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%nqrimef in module GFS_typedefs +DEBUG: Requested variable index_for_ozone in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntoz in module GFS_typedefs +DEBUG: Requested variable index_for_ozone in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntoz in module GFS_typedefs +DEBUG: Requested variable index_for_ozone in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%ntoz in module GFS_typedefs +DEBUG: Requested variable index_for_ozone in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%ntoz in module GFS_typedefs +DEBUG: Requested variable index_for_rain_number_concentration in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntrnc in module GFS_typedefs +DEBUG: Requested variable index_for_rain_number_concentration in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntrnc in module GFS_typedefs +DEBUG: Requested variable index_for_rain_number_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntrnc in module GFS_typedefs +DEBUG: Requested variable index_for_rain_number_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntrnc in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_rain_water in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntrw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_number_concentration in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntsnc in module GFS_typedefs +DEBUG: Requested variable index_for_snow_number_concentration in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntsnc in module GFS_typedefs +DEBUG: Requested variable index_for_snow_number_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntsnc in module GFS_typedefs +DEBUG: Requested variable index_for_snow_number_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntsnc in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_snow_water in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntsw in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%ntke in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntke in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntke in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntke in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%ntke in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_convective_transport_tracer in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ntk in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_convective_transport_tracer in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ntk in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_convective_transport_tracer in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ntk in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%ntkev in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%ntkev in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%ntkev in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ntkev in module GFS_typedefs +DEBUG: Requested variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%ntkev in module GFS_typedefs +DEBUG: Requested variable index_for_water_friendly_aerosols in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntwa in module GFS_typedefs +DEBUG: Requested variable index_for_water_friendly_aerosols in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntwa in module GFS_typedefs +DEBUG: Requested variable index_for_water_vapor in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntqv in module GFS_typedefs +DEBUG: Requested variable index_for_water_vapor in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntqv in module GFS_typedefs +DEBUG: Requested variable index_for_water_vapor in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntqv in module GFS_typedefs +DEBUG: Requested variable index_of_dtlm_start in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%ifd in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_highest_temperature_inversion in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%kinver in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable index_of_time_step in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%kdt in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_detrainment_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dt_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_downdraft_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dd_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_heat_diffusivity in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dkt in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_atmosphere_updraft_convective_mass_flux in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ud_mf in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_mtb in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_mtb in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_ogw in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_ogw in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_tms in module GFS_typedefs +DEBUG: Requested variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt_tms in module GFS_typedefs +DEBUG: Requested variable instantaneous_cosine_of_zenith_angle in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%xcosz in module GFS_typedefs +DEBUG: Requested variable instantaneous_cosine_of_zenith_angle in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%xcosz in module GFS_typedefs +DEBUG: Requested variable instantaneous_cosine_of_zenith_angle in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%xcosz in module GFS_typedefs +DEBUG: Requested variable instantaneous_cosine_of_zenith_angle in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%xcosz in module GFS_typedefs +DEBUG: Requested variable instantaneous_cosine_of_zenith_angle in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%xcosz in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_mountain_blocking_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_mtb in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_mountain_blocking_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_mtb in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_ngw in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_ngw in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_ogw in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_ogw in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_tofd in module GFS_typedefs +DEBUG: Requested variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%tau_tofd in module GFS_typedefs +DEBUG: Requested variable instantaneous_specific_humidity_at_2m_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%q2mi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_air_pressure_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%psurfi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dnirdfi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvisdfi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dnirbmi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvisbmi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_longwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dlwsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_downwelling_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dswsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_ground_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%gfluxi in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nnirdfi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nvisdfi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nnirbmi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nvisbmi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_longwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nlwsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_net_downward_shortwave_flux_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%nswsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_potential_evaporation in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%epi in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_skin_temperature_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%tsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dqsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux_for_diag in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dqsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_latent_heat_flux_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dqsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dtsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%ushfsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dtsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux_for_diag in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dtsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_upward_sensible_heat_flux_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dtsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dusfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_x_momentum_flux_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dusfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfc1 in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvsfci_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_surface_y_momentum_flux_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dvsfci in module GFS_typedefs +DEBUG: Requested variable instantaneous_temperature_at_2m_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%t2mi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqdti in module GFS_typedefs +DEBUG: Requested variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqdti in module GFS_typedefs +DEBUG: Requested variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqdti in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_stress_due_to_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dusfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_x_wind_at_10m_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%u10mi_cpl in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_stress_due_to_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dvsfcg in module GFS_typedefs +DEBUG: Requested variable instantaneous_y_wind_at_10m_for_coupling in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%v10mi_cpl in module GFS_typedefs +DEBUG: Requested variable internal_ice_temperature in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tiice in module GFS_typedefs +DEBUG: Requested variable internal_ice_temperature in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tiice in module GFS_typedefs +DEBUG: Requested variable internal_ice_temperature in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tiice in module GFS_typedefs +DEBUG: Requested variable internal_ice_temperature in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tiice in module GFS_typedefs +DEBUG: Requested variable inverse_scaling_factor_for_critical_relative_humidity in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%dxinv in module GFS_typedefs +DEBUG: Requested variable inverse_scaling_factor_for_critical_relative_humidity in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%dxinv in module GFS_typedefs +DEBUG: Requested variable iounit_log in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%logunit in module GFS_typedefs +DEBUG: Requested variable iounit_log in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%logunit in module GFS_typedefs +DEBUG: Requested variable iounit_namelist in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target GFS_Control%nlunit in module GFS_typedefs +DEBUG: Requested variable iounit_namelist in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%nlunit in module GFS_typedefs +DEBUG: Requested variable iounit_namelist in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target GFS_Control%nlunit in module GFS_typedefs +DEBUG: Requested variable iounit_namelist in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target GFS_Control%nlunit in module GFS_typedefs +DEBUG: Requested variable iounit_namelist in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%nlunit in module GFS_typedefs +DEBUG: Requested variable joules_per_calorie_constant in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_jcal in module GFS_typedefs +DEBUG: Requested variable joules_per_calorie_constant in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_jcal in module GFS_typedefs +DEBUG: Requested variable julian_day in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%julian in module GFS_typedefs +DEBUG: Requested variable julian_day in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%julian in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%evap in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_over_ocean in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evap_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%evapq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ice in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_land in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_over_ocean in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hflx_ocean in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%hflxq in module GFS_typedefs +DEBUG: Requested variable lake_area_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%lakefrac in module GFS_typedefs +DEBUG: Requested variable lake_area_fraction in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%lakefrac in module GFS_typedefs +DEBUG: Requested variable lake_area_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%lakefrac in module GFS_typedefs +DEBUG: Requested variable lake_area_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%lakefrac in module GFS_typedefs +DEBUG: Requested variable lake_ice_minimum in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%min_lakeice in module GFS_typedefs +DEBUG: Requested variable lake_ice_minimum in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%min_lakeice in module GFS_typedefs +DEBUG: Requested variable land_area_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%landfrac in module GFS_typedefs +DEBUG: Requested variable land_area_fraction in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%landfrac in module GFS_typedefs +DEBUG: Requested variable land_area_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%landfrac in module GFS_typedefs +DEBUG: Requested variable land_area_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%landfrac in module GFS_typedefs +DEBUG: Requested variable land_area_fraction_for_microphysics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%frland in module GFS_typedefs +DEBUG: Requested variable land_area_fraction_for_microphysics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%frland in module GFS_typedefs +DEBUG: Requested variable land_area_fraction_for_microphysics in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%frland in module GFS_typedefs +DEBUG: Requested variable land_area_fraction_for_microphysics in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%frland in module GFS_typedefs +DEBUG: Requested variable largest_cloud_top_vertical_index_encountered_thus_far in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Tbd%acvt in module GFS_typedefs +DEBUG: Requested variable latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%e0fac in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_fusion_of_water_at_0C in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_hfus in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latent_heat_of_vaporization_of_water_at_0C in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_hvap in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat in module GFS_typedefs +DEBUG: Requested variable latitude_degree in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Grid%xlat_d in module GFS_typedefs +DEBUG: Requested variable layer_pressure_thickness_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%delr in module GFS_typedefs +DEBUG: Requested variable layer_pressure_thickness_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%delr in module GFS_typedefs +DEBUG: Requested variable layer_pressure_thickness_for_radiation in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%delr in module GFS_typedefs +DEBUG: Requested variable layer_pressure_thickness_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%delr in module GFS_typedefs +DEBUG: Requested variable layer_thickness_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%dzlyr in module GFS_typedefs +DEBUG: Requested variable layer_thickness_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%dzlyr in module GFS_typedefs +DEBUG: Requested variable layer_thickness_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%dzlyr in module GFS_typedefs +DEBUG: Requested variable level_of_dividing_streamline in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zmtnblck in module GFS_typedefs +DEBUG: Requested variable level_of_dividing_streamline in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zmtnblck in module GFS_typedefs +DEBUG: Requested variable level_of_dividing_streamline in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zmtnblck in module GFS_typedefs +DEBUG: Requested variable level_of_dividing_streamline in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zmtnblck in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable longitude in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Grid%xlon in module GFS_typedefs +DEBUG: Requested variable lw_fluxes_sfc in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Radtend%sfcflw in module GFS_typedefs +DEBUG: Requested variable lw_fluxes_top_atmosphere in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Intdiag%topflw in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_for_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%rainc_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%raincprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%raincprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rainc in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rainc in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rainc in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rainc in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rainc in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_deep_convective_precipitation_amount in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%raincd in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_precipitation_amount in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Interstitial(cdata%thrd_no)%prcpmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_rain_amount in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%rainmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_rain_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%rainmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_rain_amount in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Interstitial(cdata%thrd_no)%rainmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%rainncprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%rainncprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%graupelmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%graupelmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Interstitial(cdata%thrd_no)%graupelmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount_from_previous_timestep in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%graupelprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%graupelprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%graupel in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_graupel_amount_on_dynamics_timestep in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%graupel in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%icemp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%icemp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Interstitial(cdata%thrd_no)%icemp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount_from_previous_timestep in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%iceprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%iceprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ice in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_ice_amount_on_dynamics_timestep in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ice in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%rain_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%rain_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%rain_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rain in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rain in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rain in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_shallow_convective_precipitation_amount in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%raincs in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_shallow_convective_precipitation_amount in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%raincs in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_shallow_convective_precipitation_amount in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%raincs in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%snowmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snowmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Interstitial(cdata%thrd_no)%snowmp in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%snow_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%snow_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%snow_cpl in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_from_previous_timestep in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowprv in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%snow in module GFS_typedefs +DEBUG: Requested variable lwe_thickness_of_snow_amount_on_dynamics_timestep in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%snow in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%pertzt in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_leaf_area_index in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%pertlai in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_momentum_roughness_length in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%pertz0 in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_soil_type_b_parameter in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%pertshc in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_vegetation_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%pertvegf in module GFS_typedefs +DEBUG: Requested variable magnitude_of_perturbation_of_vegetation_fraction in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%pertvegf in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_ice in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%qicn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_ice in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%qicn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_ice in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%qicn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_ice in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%qicn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_ice in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%qicn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_liquid_water in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%qlcn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_liquid_water in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%qlcn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_liquid_water in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%qlcn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_liquid_water in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%qlcn in module GFS_typedefs +DEBUG: Requested variable mass_fraction_of_convective_cloud_liquid_water in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%qlcn in module GFS_typedefs +DEBUG: Requested variable maximum_critical_relative_humidity in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%rhcmax in module GFS_typedefs +DEBUG: Requested variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refdmax in module GFS_typedefs +DEBUG: Requested variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refdmax263k in module GFS_typedefs +DEBUG: Requested variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rh02max in module GFS_typedefs +DEBUG: Requested variable maximum_specific_humidity_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%spfhmax in module GFS_typedefs +DEBUG: Requested variable maximum_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%elvmax in module GFS_typedefs +DEBUG: Requested variable maximum_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%elvmax in module GFS_typedefs +DEBUG: Requested variable maximum_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%elvmax in module GFS_typedefs +DEBUG: Requested variable maximum_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%elvmax in module GFS_typedefs +DEBUG: Requested variable maximum_temperature_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tmpmax in module GFS_typedefs +DEBUG: Requested variable maximum_temperature_at_2m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%t02max in module GFS_typedefs +DEBUG: Requested variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10max in module GFS_typedefs +DEBUG: Requested variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10max in module GFS_typedefs +DEBUG: Requested variable maximum_vegetation_area_fraction in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmax in module GFS_typedefs +DEBUG: Requested variable maximum_vegetation_area_fraction in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmax in module GFS_typedefs +DEBUG: Requested variable maximum_vegetation_area_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmax in module GFS_typedefs +DEBUG: Requested variable maximum_vegetation_area_fraction in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmax in module GFS_typedefs +DEBUG: Requested variable maximum_wind_at_10m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%wind10mmax in module GFS_typedefs +DEBUG: Requested variable maximum_wind_at_10m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%spd10max in module GFS_typedefs +DEBUG: Requested variable maximum_x_wind_at_10m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10mmax in module GFS_typedefs +DEBUG: Requested variable maximum_y_wind_at_10m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10mmax in module GFS_typedefs +DEBUG: Requested variable mean_change_over_depth_in_sea_water_temperature in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtzm in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_ice_cloud in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,5) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_liquid_cloud in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,3) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_rain_drop in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,7) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable mean_effective_radius_for_snow_flake in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,9) in module GFS_typedefs +DEBUG: Requested variable minimum_large_ice_fraction in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Control%flgmin in module GFS_typedefs +DEBUG: Requested variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%rh02min in module GFS_typedefs +DEBUG: Requested variable minimum_scaling_factor_for_critical_relative_humidity in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%dxmin in module GFS_typedefs +DEBUG: Requested variable minimum_scaling_factor_for_critical_relative_humidity in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%dxmin in module GFS_typedefs +DEBUG: Requested variable minimum_sea_ice_concentration in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target cimin in module GFS_typedefs +DEBUG: Requested variable minimum_specific_humidity_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%spfhmin in module GFS_typedefs +DEBUG: Requested variable minimum_temperature_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tmpmin in module GFS_typedefs +DEBUG: Requested variable minimum_temperature_at_2m_over_maximum_hourly_time_interval in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%t02min in module GFS_typedefs +DEBUG: Requested variable minimum_vegetation_area_fraction in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmin in module GFS_typedefs +DEBUG: Requested variable minimum_vegetation_area_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmin in module GFS_typedefs +DEBUG: Requested variable minimum_vegetation_area_fraction in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%shdmin in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_base in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%mbota in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_base in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mbota in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_base in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%mbota in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_base in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mbota in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_base in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mbota in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_top in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%mtopa in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_top in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mtopa in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_top in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%mtopa in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_top in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mtopa in module GFS_typedefs +DEBUG: Requested variable model_layer_number_at_cloud_top in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%mtopa in module GFS_typedefs +DEBUG: Requested variable momentum_transport_reduction_factor_pgf_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%pgcon_deep in module GFS_typedefs +DEBUG: Requested variable momentum_transport_reduction_factor_pgf_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%pgcon_deep in module GFS_typedefs +DEBUG: Requested variable momentum_transport_reduction_factor_pgf_shallow_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%pgcon_shal in module GFS_typedefs +DEBUG: Requested variable momentum_transport_reduction_factor_pgf_shallow_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%pgcon_shal in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_rank in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%me in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable mpi_root in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%master in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_convective_gravity_wave_drag in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Control%cgwf in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_convective_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%cgwf in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%cdmbgwd in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%cdmbgwd in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%cdmbgwd in module GFS_typedefs +DEBUG: Requested variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%cdmbgwd in module GFS_typedefs +DEBUG: Requested variable namelist_filename in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%fn_nml in module GFS_typedefs +DEBUG: Update kind information for requested variable namelist_filename in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init from len=* to len=64 +DEBUG: Requested variable namelist_filename in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%fn_nml in module GFS_typedefs +DEBUG: Update kind information for requested variable namelist_filename in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init from len=* to len=64 +DEBUG: Requested variable namelist_filename_for_internal_file_reads in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init matched to target GFS_Control%input_nml_file in module GFS_typedefs +DEBUG: Update kind information for requested variable namelist_filename_for_internal_file_reads in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_init from len=* to len=256 +DEBUG: Requested variable namelist_filename_for_internal_file_reads in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%input_nml_file in module GFS_typedefs +DEBUG: Update kind information for requested variable namelist_filename_for_internal_file_reads in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init from len=* to len=256 +DEBUG: Requested variable natural_log_of_ozone_forcing_data_pressure_levels in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Interstitial(cdata%thrd_no)%oz_pres in module GFS_typedefs +DEBUG: Requested variable natural_log_of_ozone_forcing_data_pressure_levels in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Interstitial(cdata%thrd_no)%oz_pres in module GFS_typedefs +DEBUG: Requested variable netcdf_float_fillvalue in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target huge in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tprcp in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tprcp in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tprcp in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tprcp in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ice in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ice in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ice in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_land in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_land in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_land in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_land in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ocean in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ocean in module GFS_typedefs +DEBUG: Requested variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tprcp_ocean in module GFS_typedefs +DEBUG: Requested variable normalized_soil_wetness in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%wet1 in module GFS_typedefs +DEBUG: Requested variable normalized_soil_wetness in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%wet1 in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_cloud_liquid_water_particles_for_detrainment in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_ndrop in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_cloud_liquid_water_particles_for_detrainment in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_ndrop in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_cloud_liquid_water_particles_for_detrainment in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_ndrop in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_cloud_liquid_water_particles_for_detrainment in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_ndrop in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_cloud_liquid_water_particles_for_detrainment in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_ndrop in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_ice_crystals_for_detrainment in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_nice in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_ice_crystals_for_detrainment in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_nice in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_ice_crystals_for_detrainment in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_nice in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_ice_crystals_for_detrainment in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_nice in module GFS_typedefs +DEBUG: Requested variable number_concentration_of_ice_crystals_for_detrainment in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_nice in module GFS_typedefs +DEBUG: Requested variable number_of_3d_arrays_associated_with_pdf_based_clouds in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%npdf3d in module GFS_typedefs +DEBUG: Requested variable number_of_3d_arrays_associated_with_pdf_based_clouds in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%npdf3d in module GFS_typedefs +DEBUG: Requested variable number_of_3d_arrays_associated_with_pdf_based_clouds in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%npdf3d in module GFS_typedefs +DEBUG: Requested variable number_of_aerosol_tracers_for_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%itc in module GFS_typedefs +DEBUG: Requested variable number_of_aerosol_tracers_for_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%itc in module GFS_typedefs +DEBUG: Requested variable number_of_chemical_tracers in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntchm in module GFS_typedefs +DEBUG: Requested variable number_of_chemical_tracers in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntchm in module GFS_typedefs +DEBUG: Requested variable number_of_chemical_tracers in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%ntchm in module GFS_typedefs +DEBUG: Requested variable number_of_chemical_tracers in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%ntchm in module GFS_typedefs +DEBUG: Requested variable number_of_coefficients_in_ozone_forcing_data in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Interstitial(cdata%thrd_no)%oz_coeff in module GFS_typedefs +DEBUG: Requested variable number_of_coefficients_in_ozone_forcing_data in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Interstitial(cdata%thrd_no)%oz_coeff in module GFS_typedefs +DEBUG: Requested variable number_of_convective_3d_cloud_fields in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%ncnvcld3d in module GFS_typedefs +DEBUG: Requested variable number_of_convective_3d_cloud_fields in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%ncnvcld3d in module GFS_typedefs +DEBUG: Requested variable number_of_days_in_year in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%yearlen in module GFS_typedefs +DEBUG: Requested variable number_of_days_in_year in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%yearlen in module GFS_typedefs +DEBUG: Requested variable number_of_equatorial_longitude_points in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%lonr in module GFS_typedefs +DEBUG: Requested variable number_of_equatorial_longitude_points in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%lonr in module GFS_typedefs +DEBUG: Requested variable number_of_equatorial_longitude_points in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%lonr in module GFS_typedefs +DEBUG: Requested variable number_of_equatorial_longitude_points in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%lonr in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_hydrometeors in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%ncld in module GFS_typedefs +DEBUG: Requested variable number_of_latitude_points in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%latr in module GFS_typedefs +DEBUG: Requested variable number_of_statistical_measures_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%nmtvr in module GFS_typedefs +DEBUG: Requested variable number_of_statistical_measures_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%nmtvr in module GFS_typedefs +DEBUG: Requested variable number_of_statistical_measures_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%nmtvr in module GFS_typedefs +DEBUG: Requested variable number_of_surface_perturbations in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%nsfcpert in module GFS_typedefs +DEBUG: Requested variable number_of_timesteps_between_longwave_radiation_calls in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%nslwr in module GFS_typedefs +DEBUG: Requested variable number_of_timesteps_between_shortwave_radiation_calls in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%nsswr in module GFS_typedefs +DEBUG: Requested variable number_of_timesteps_between_surface_cycling_calls in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%nscyc in module GFS_typedefs +DEBUG: Requested variable number_of_total_tracers in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Interstitial(cdata%thrd_no)%tracers_total in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%ntrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_cloud_condensate in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%nncl in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_cloud_condensate in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%nncl in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_cloud_condensate in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nncl in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_cloud_condensate in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Interstitial(cdata%thrd_no)%nncl in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_convective_transport in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nn in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_samf in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%nsamftrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_samf in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%nsamftrac in module GFS_typedefs +DEBUG: Requested variable number_of_tracers_for_samf in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%nsamftrac in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_diffusion_tracers in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%nvdiff in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable number_of_vertical_layers_for_radiation_calculations in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%levr in module GFS_typedefs +DEBUG: Requested variable ocean_mixed_layer_thickness in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zm in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omega in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Statein%vvl in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_GFS_diagtoscreen SCHEME_GFS_diagtoscreen SUBROUTINE_GFS_diagtoscreen_run matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_GFS_interstitialtoscreen SCHEME_GFS_interstitialtoscreen SUBROUTINE_GFS_interstitialtoscreen_run matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_init matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_GFS_phys_time_vary SCHEME_GFS_phys_time_vary SUBROUTINE_GFS_phys_time_vary_run matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable omp_threads in MODULE_GFS_rad_time_vary SCHEME_GFS_rad_time_vary SUBROUTINE_GFS_rad_time_vary_run matched to target GFS_Control%nthreads in module GFS_typedefs +DEBUG: Requested variable orography in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oro in module GFS_typedefs +DEBUG: Requested variable orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oro in module GFS_typedefs +DEBUG: Requested variable orography_unfiltered in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oro_uf in module GFS_typedefs +DEBUG: Requested variable orography_unfiltered in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oro_uf in module GFS_typedefs +DEBUG: Requested variable ozone_concentration_at_layer_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%olyr in module GFS_typedefs +DEBUG: Requested variable ozone_concentration_at_layer_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%olyr in module GFS_typedefs +DEBUG: Requested variable ozone_concentration_at_layer_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%olyr in module GFS_typedefs +DEBUG: Requested variable ozone_concentration_updated_by_physics in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntoz) in module GFS_typedefs +DEBUG: Requested variable ozone_concentration_updated_by_physics in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntoz) in module GFS_typedefs +DEBUG: Requested variable ozone_forcing in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Data(cdata%blk_no)%Tbd%ozpl in module GFS_typedefs +DEBUG: Requested variable ozone_forcing in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Data(cdata%blk_no)%Tbd%ozpl in module GFS_typedefs +DEBUG: Requested variable perturbation_of_heat_to_momentum_roughness_length_ratio in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%zt1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_heat_to_momentum_roughness_length_ratio in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%zt1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_leaf_area_index in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%xlai1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_leaf_area_index in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%xlai1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_momentum_roughness_length in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%z01d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_momentum_roughness_length in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%z01d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_soil_type_b_parameter in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%bexp1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_soil_type_b_parameter in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%bexp1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_vegetation_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%vegf1d in module GFS_typedefs +DEBUG: Requested variable perturbation_of_vegetation_fraction in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%vegf1d in module GFS_typedefs +DEBUG: Requested variable physics_field_for_coupling in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Coupling%condition in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pi in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_pi in module GFS_typedefs +DEBUG: Requested variable pressure_at_bottom_of_convective_cloud in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Cldprop%cvb in module GFS_typedefs +DEBUG: Requested variable pressure_at_top_of_convective_cloud in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Cldprop%cvt in module GFS_typedefs +DEBUG: Requested variable pressure_cutoff_for_rayleigh_damping in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%prslrd0 in module GFS_typedefs +DEBUG: Requested variable pressure_cutoff_for_rayleigh_damping in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%prslrd0 in module GFS_typedefs +DEBUG: Requested variable radar_reflectivity_10cm in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refl_10cm in module GFS_typedefs +DEBUG: Requested variable radar_reflectivity_10cm in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refl_10cm in module GFS_typedefs +DEBUG: Requested variable radar_reflectivity_10cm in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refl_10cm in module GFS_typedefs +DEBUG: Requested variable radar_reflectivity_10cm in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Intdiag%refl_10cm in module GFS_typedefs +DEBUG: Requested variable rain_conversion_parameter_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%c0s_deep in module GFS_typedefs +DEBUG: Requested variable rain_conversion_parameter_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%c0s_deep in module GFS_typedefs +DEBUG: Requested variable rain_conversion_parameter_shallow_convection in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%c0s_shal in module GFS_typedefs +DEBUG: Requested variable rain_conversion_parameter_shallow_convection in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%c0s_shal in module GFS_typedefs +DEBUG: Requested variable rain_evaporation_coefficient_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%evfact_deep in module GFS_typedefs +DEBUG: Requested variable rain_evaporation_coefficient_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%evfact_deep in module GFS_typedefs +DEBUG: Requested variable rain_evaporation_coefficient_over_land_deep_convection in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%evfactl_deep in module GFS_typedefs +DEBUG: Requested variable rain_evaporation_coefficient_over_land_deep_convection in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%evfactl_deep in module GFS_typedefs +DEBUG: Requested variable random_number_array in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%rann in module GFS_typedefs +DEBUG: Requested variable random_number_array in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Tbd%rann in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_eps in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_epsm1 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%work3 in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_snowfall_to_rainfall in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sr in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_vapor_to_dry_air_gas_constants_minus_one in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_fvirt in module GFS_typedefs +DEBUG: Requested variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%f10m in module GFS_typedefs +DEBUG: Requested variable rime_factor in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%f_rimef in module GFS_typedefs +DEBUG: Requested variable rime_factor in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Interstitial(cdata%thrd_no)%f_rimef in module GFS_typedefs +DEBUG: Requested variable rime_factor in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Interstitial(cdata%thrd_no)%f_rimef in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_area_fraction in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%oceanfrac in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_concentration in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%fice in module GFS_typedefs +DEBUG: Requested variable sea_ice_minimum in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Control%min_seaice in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tisfc in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tisfc in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tisfc in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature_interstitial in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%tice in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature_interstitial in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%tice in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tice in module GFS_typedefs +DEBUG: Requested variable sea_ice_temperature_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tice in module GFS_typedefs +DEBUG: Requested variable sea_ice_thickness in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hice in module GFS_typedefs +DEBUG: Requested variable sea_ice_thickness in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hice in module GFS_typedefs +DEBUG: Requested variable sea_ice_thickness in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hice in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_cice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk_cice in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_cice in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%islmsk_cice in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_in in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%slimskin_cpl in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_land_ice_mask_real in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slmsk in module GFS_typedefs +DEBUG: Requested variable sea_surface_reference_temperature in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tref in module GFS_typedefs +DEBUG: Requested variable sea_surface_reference_temperature in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tref in module GFS_typedefs +DEBUG: Requested variable sea_surface_reference_temperature in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tref in module GFS_typedefs +DEBUG: Requested variable sea_surface_temperature in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfco in module GFS_typedefs +DEBUG: Requested variable sea_surface_temperature in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfco in module GFS_typedefs +DEBUG: Requested variable sea_surface_temperature in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfco in module GFS_typedefs +DEBUG: Requested variable sea_water_reference_density in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_rhw0 in module GFS_typedefs +DEBUG: Requested variable sea_water_salinity in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xs in module GFS_typedefs +DEBUG: Requested variable seconds_elapsed_since_model_initialization in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%sec in module GFS_typedefs +DEBUG: Requested variable seed_random_numbers_lw in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Tbd%icsdlw in module GFS_typedefs +DEBUG: Requested variable seed_random_numbers_lw in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target GFS_Data(cdata%blk_no)%Tbd%icsdlw in module GFS_typedefs +DEBUG: Requested variable seed_random_numbers_sw in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Tbd%icsdsw in module GFS_typedefs +DEBUG: Requested variable seed_random_numbers_sw in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Data(cdata%blk_no)%Tbd%icsdsw in module GFS_typedefs +DEBUG: Requested variable sensible_heat_flux_due_to_rainfall in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%qrain in module GFS_typedefs +DEBUG: Requested variable sensitivity_of_dtl_heat_content_to_surface_temperature in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xtts in module GFS_typedefs +DEBUG: Requested variable sensitivity_of_dtl_thickness_to_surface_temperature in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%xzts in module GFS_typedefs +DEBUG: Requested variable sine_of_latitude in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Grid%sinlat in module GFS_typedefs +DEBUG: Requested variable sine_of_latitude in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Grid%sinlat in module GFS_typedefs +DEBUG: Requested variable sine_of_latitude in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Grid%sinlat in module GFS_typedefs +DEBUG: Requested variable sine_of_solar_declination_angle in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%sdec in module GFS_typedefs +DEBUG: Requested variable sine_of_solar_declination_angle in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%sdec in module GFS_typedefs +DEBUG: Requested variable sine_of_solar_declination_angle in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%sdec in module GFS_typedefs +DEBUG: Requested variable slope_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sigma in module GFS_typedefs +DEBUG: Requested variable slope_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%sigma in module GFS_typedefs +DEBUG: Requested variable slope_of_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%sigma in module GFS_typedefs +DEBUG: Requested variable slope_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%sigma in module GFS_typedefs +DEBUG: Requested variable smallest_cloud_base_vertical_index_encountered_thus_far in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Data(cdata%blk_no)%Tbd%acvb in module GFS_typedefs +DEBUG: Requested variable snow_deposition_sublimation_upward_latent_heat_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%sbsno in module GFS_typedefs +DEBUG: Requested variable snow_deposition_sublimation_upward_latent_heat_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%sbsno in module GFS_typedefs +DEBUG: Requested variable snow_deposition_sublimation_upward_latent_heat_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%sbsno in module GFS_typedefs +DEBUG: Requested variable snow_deposition_sublimation_upward_latent_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%sbsno in module GFS_typedefs +DEBUG: Requested variable snow_freezing_rain_upward_latent_heat_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%snohf in module GFS_typedefs +DEBUG: Requested variable snow_freezing_rain_upward_latent_heat_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%snohf in module GFS_typedefs +DEBUG: Requested variable snow_freezing_rain_upward_latent_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snohf in module GFS_typedefs +DEBUG: Requested variable snow_precipitation_rate_from_previous_timestep in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dsnowprv in module GFS_typedefs +DEBUG: Requested variable snow_precipitation_rate_from_previous_timestep in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dsnowprv in module GFS_typedefs +DEBUG: Requested variable soil_moisture_content in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%soilm in module GFS_typedefs +DEBUG: Requested variable soil_moisture_content in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%soilm in module GFS_typedefs +DEBUG: Requested variable soil_moisture_content in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%soilm in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_temperature in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stc in module GFS_typedefs +DEBUG: Requested variable soil_type_classification in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%soiltype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%soiltype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%soiltype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%soiltype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%soiltype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification_real in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stype in module GFS_typedefs +DEBUG: Requested variable soil_type_classification_real in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%stype in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_type_dataset_choice in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%isot in module GFS_typedefs +DEBUG: Requested variable soil_upward_latent_heat_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%evbs in module GFS_typedefs +DEBUG: Requested variable soil_upward_latent_heat_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%evbs in module GFS_typedefs +DEBUG: Requested variable soil_upward_latent_heat_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%evbs in module GFS_typedefs +DEBUG: Requested variable soil_upward_latent_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%evbs in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_lsm_ruc_sfc_sice_pre SCHEME_lsm_ruc_sfc_sice_pre SUBROUTINE_lsm_ruc_sfc_sice_pre_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_lsm_ruc_sfc_sice_post SCHEME_lsm_ruc_sfc_sice_post SUBROUTINE_lsm_ruc_sfc_sice_post_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable soil_vertical_dimension in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Control%lsoil in module GFS_typedefs +DEBUG: Requested variable solar_constant in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Control%solcon in module GFS_typedefs +DEBUG: Requested variable solar_constant in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%solcon in module GFS_typedefs +DEBUG: Requested variable solar_constant in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Control%solcon in module GFS_typedefs +DEBUG: Requested variable solar_constant in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%solcon in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_init matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_dry_air_at_constant_pressure in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_cp in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_liquid_water_at_constant_pressure in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_cliq in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_liquid_water_at_constant_pressure in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_cliq in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_liquid_water_at_constant_pressure in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cliq in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_liquid_water_at_constant_pressure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_cliq in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_liquid_water_at_constant_pressure in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_cliq in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_water_vapor_at_constant_pressure in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_cvap in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_water_vapor_at_constant_pressure in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_cvap in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_water_vapor_at_constant_pressure in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_cvap in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_water_vapor_at_constant_pressure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_cvap in module GFS_typedefs +DEBUG: Requested variable specific_heat_of_water_vapor_at_constant_pressure in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_cvap in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%q2m in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%q2m in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%q2m in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%q2m in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%q2m in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m_from_noahmp in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Interstitial(cdata%thrd_no)%q2mp in module GFS_typedefs +DEBUG: Requested variable specific_humidity_at_2m_from_noahmp in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%q2mp in module GFS_typedefs +DEBUG: Requested variable standard_atmospheric_pressure in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target con_p0 in module GFS_typedefs +DEBUG: Requested variable standard_deviation_of_subgrid_orography in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) in module GFS_typedefs +DEBUG: Requested variable standard_deviation_of_subgrid_orography in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) in module GFS_typedefs +DEBUG: Requested variable standard_deviation_of_subgrid_orography in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) in module GFS_typedefs +DEBUG: Requested variable standard_deviation_of_subgrid_orography in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) in module GFS_typedefs +DEBUG: Requested variable standard_deviation_of_subgrid_orography in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime(:,1) in module GFS_typedefs +DEBUG: Requested variable statistical_measures_of_subgrid_orography in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%hprime in module GFS_typedefs +DEBUG: Requested variable stefan_boltzmann_constant in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_sbc in module GFS_typedefs +DEBUG: Requested variable stefan_boltzmann_constant in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target con_sbc in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_amount in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dt_cool in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_amount in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dt_cool in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_amount in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%dt_cool in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_thickness in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%z_c in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_thickness in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%z_c in module GFS_typedefs +DEBUG: Requested variable sub_layer_cooling_thickness in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%z_c in module GFS_typedefs +DEBUG: Requested variable subsurface_runoff_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%drain in module GFS_typedefs +DEBUG: Requested variable subsurface_runoff_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%drain in module GFS_typedefs +DEBUG: Requested variable subsurface_runoff_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%drain in module GFS_typedefs +DEBUG: Requested variable subsurface_runoff_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%drain in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Statein%pgr in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure_at_previous_time_step in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,2) in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure_diag in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Data(cdata%blk_no)%Intdiag%psurf in module GFS_typedefs +DEBUG: Requested variable surface_air_pressure_two_time_steps_back in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,1) in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_air_temperature_for_radiation in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfa in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_diffused in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,4) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_diffused in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,4) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_diffused in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,4) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_direct in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,3) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_direct in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,3) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_UV_and_VIS_direct in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,3) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_diffused in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,2) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_diffused in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,2) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_diffused in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,2) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_direct in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,1) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_direct in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,1) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_due_to_near_IR_direct in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%sfcalb(:,1) in module GFS_typedefs +DEBUG: Requested variable surface_albedo_perturbation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%alb1d in module GFS_typedefs +DEBUG: Requested variable surface_albedo_perturbation in MODULE_GFS_rrtmgp_sw_pre SCHEME_GFS_rrtmgp_sw_pre SUBROUTINE_GFS_rrtmgp_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%alb1d in module GFS_typedefs +DEBUG: Requested variable surface_albedo_perturbation in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%alb1d in module GFS_typedefs +DEBUG: Requested variable surface_diffused_shortwave_albedo in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Radtend%sfalb in module GFS_typedefs +DEBUG: Requested variable surface_diffused_shortwave_albedo in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Radtend%sfalb in module GFS_typedefs +DEBUG: Requested variable surface_diffused_shortwave_albedo in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Radtend%sfalb in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_near_infrared_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirdfd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_near_infrared_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirdfd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%nirdfdi in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisdfd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisdfd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%visdfdi in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_near_infrared_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirbmd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_near_infrared_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirbmd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%nirbmdi in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisbmd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisbmd in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%visbmdi in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dlwsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ice in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ice in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_land in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_land in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_land in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ocean in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%gabsbdlw_ocean in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_longwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%sfcdlw in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dswsfci in module GFS_typedefs +DEBUG: Requested variable surface_downwelling_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%sfcdsw in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cdq_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cd in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cd in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_coefficient_for_momentum_in_air_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%chh in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%chh_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cmm in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cmm in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%cmm in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ice in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_land in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ocean in module GFS_typedefs +DEBUG: Requested variable surface_drag_wind_speed_for_momentum_in_air_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%cmm_ocean in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%uustar in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ice in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ice in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ice in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ice in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_land in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_land in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_land in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_land in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ocean in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ocean in module GFS_typedefs +DEBUG: Requested variable surface_friction_velocity_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%uustar_ocean in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_rrtmg_sw_pre SCHEME_rrtmg_sw_pre SUBROUTINE_rrtmg_sw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_ground_temperature_for_radiation in MODULE_rrtmg_lw_pre SCHEME_rrtmg_lw_pre SUBROUTINE_rrtmg_lw_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfg in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Data(cdata%blk_no)%Radtend%semis in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend%semis in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Radtend%semis in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ice_interstitial in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ice in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ice_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ice in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ice_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ice in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ice_interstitial in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ice in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_land_interstitial in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_land in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ocean_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ocean in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ocean_interstitial in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ocean in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ocean_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ocean in module GFS_typedefs +DEBUG: Requested variable surface_longwave_emissivity_over_ocean_interstitial in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Interstitial(cdata%thrd_no)%semis_ocean in module GFS_typedefs +DEBUG: Requested variable surface_midlayer_air_temperature_in_longwave_radiation in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%tsflw in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Data(cdata%blk_no)%Intdiag%nswsfci in module GFS_typedefs +DEBUG: Requested variable surface_net_downwelling_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%sfcnsw in module GFS_typedefs +DEBUG: Requested variable surface_roughness_fraction_factor in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%z0fac in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorl in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ice_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ice in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ice_interstitial in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ice in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ice_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ice in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ice_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ice in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorll in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorll in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_land_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_land in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorlo in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%zorlo in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ocean in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean_interstitial in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ocean in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ocean in module GFS_typedefs +DEBUG: Requested variable surface_roughness_length_over_ocean_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%zorl_ocean in module GFS_typedefs +DEBUG: Requested variable surface_runoff in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%srunoff in module GFS_typedefs +DEBUG: Requested variable surface_runoff in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%srunoff in module GFS_typedefs +DEBUG: Requested variable surface_runoff_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%runoff in module GFS_typedefs +DEBUG: Requested variable surface_runoff_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%runoff in module GFS_typedefs +DEBUG: Requested variable surface_runoff_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%runoff in module GFS_typedefs +DEBUG: Requested variable surface_runoff_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%runoff in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfc in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_after_iteration_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsurf_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_for_nsst in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%tseal in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_for_nsst in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tseal in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ice_interstitial in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ice_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ice_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ice_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ice_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ice in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfcl in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%tsfcl in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_land_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_land in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_sfc_nst_pre SCHEME_sfc_nst_pre SUBROUTINE_sfc_nst_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_skin_temperature_over_ocean_interstitial in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%tsfc_ocean in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%slopetype in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%slopetype in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%slopetype in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%slopetype in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification_real in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slope in module GFS_typedefs +DEBUG: Requested variable surface_slope_classification_real in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slope in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%snowc in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%snowc in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snowc in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%sncovr in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%sncovr in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%sncovr in module GFS_typedefs +DEBUG: Requested variable surface_snow_area_fraction_over_land in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%sncovr in module GFS_typedefs +DEBUG: Requested variable surface_snow_melt in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%snowmt in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowd in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowd in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowd in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowd in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent in MODULE_rrtmgp_lw_pre SCHEME_rrtmgp_lw_pre SUBROUTINE_rrtmgp_lw_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snowd in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ice in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ice in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ice in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ice in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_land in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ocean in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_snow_thickness_water_equivalent_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%snowd_ocean in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%qss in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ice in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ice in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ice in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_land in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_land in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_land in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_land in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ocean in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ocean in module GFS_typedefs +DEBUG: Requested variable surface_specific_humidity_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%qss_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_upward_latent_heat_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dqsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_upward_latent_heat_flux_reduction_factor in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%hefac in module GFS_typedefs +DEBUG: Requested variable surface_upward_latent_heat_flux_reduction_factor in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hefac in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ice in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ice in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ice in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_land in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_land in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_land in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upward_potential_latent_heat_flux_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%ep1d_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Coupling%dtsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_upward_sensible_heat_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dtsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_upward_sensible_heat_flux_reduction_factor in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%hffac in module GFS_typedefs +DEBUG: Requested variable surface_upward_sensible_heat_flux_reduction_factor in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%hffac in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_near_infrared_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirdfu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_near_infrared_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirdfu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%nirdfui in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisdfu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisdfu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%visdfui in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_near_infrared_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirbmu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_near_infrared_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjnirbmu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%nirbmui in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisbmu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjvisbmu in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Coupling%visbmui in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ulwsfci in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%ulwsfci in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_for_coupling in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Coupling%ulwsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_ice_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_ice in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_ice_interstitial in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_ice in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_land_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_land in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_land_interstitial in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_land in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_ocean_interstitial in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_ocean_interstitial in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_longwave_flux_over_ocean_interstitial in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%adjsfculw_ocean in module GFS_typedefs +DEBUG: Requested variable surface_upwelling_shortwave_flux in MODULE_GFS_surface_composites_inter SCHEME_GFS_surface_composites_inter SUBROUTINE_GFS_surface_composites_inter_run matched to target GFS_Data(cdata%blk_no)%Intdiag%uswsfci in module GFS_typedefs +DEBUG: Requested variable surface_wind_enhancement_due_to_convection in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,GFS_Control%num_p2d) in module GFS_typedefs +DEBUG: Requested variable surface_wind_enhancement_due_to_convection in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,GFS_Control%num_p2d) in module GFS_typedefs +DEBUG: Requested variable surface_wind_enhancement_due_to_convection in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f2d(:,GFS_Control%num_p2d) in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%stress in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ice in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ice in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ice in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ice in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ice in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ice in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_land in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_land in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_land in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_land in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_land in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ocean in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ocean in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ocean in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ocean in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ocean in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ocean in module GFS_typedefs +DEBUG: Requested variable surface_wind_stress_over_ocean in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%stress_ocean in module GFS_typedefs +DEBUG: Requested variable surface_x_momentum_flux_for_coupling in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Coupling%dusfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_x_momentum_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dusfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_y_momentum_flux_for_coupling in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable surface_y_momentum_flux_for_coupling in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Coupling%dvsfcin_cpl in module GFS_typedefs +DEBUG: Requested variable sw_fluxes_sfc in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Radtend%sfcfsw in module GFS_typedefs +DEBUG: Requested variable sw_fluxes_top_atmosphere in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Data(cdata%blk_no)%Intdiag%topfsw in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%t2m in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%t2m in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%t2m in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%t2m in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%t2m in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m_from_noahmp in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Interstitial(cdata%thrd_no)%t2mmp in module GFS_typedefs +DEBUG: Requested variable temperature_at_2m_from_noahmp in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%t2mmp in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable temperature_at_zero_celsius in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target con_t0c in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%lwhc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%htlw0 in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%htlw0 in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_for_idea in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Radtend%lwhd in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrlw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%htlwc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%htlwc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_model_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdtc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdtc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dtdtc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%dtdtr in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd%dtdtr in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Tbd%dtdtr in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%swhc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%htsw0 in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%htsw0 in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Radtend%htrsw in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%htswc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%htswc in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_ugwp in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_air_temperature_due_to_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dtdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_cloud_water_due_to_convective_microphysics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_dqldt in module GFS_typedefs +DEBUG: Requested variable tendency_of_cloud_water_due_to_convective_microphysics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_dqldt in module GFS_typedefs +DEBUG: Requested variable tendency_of_cloud_water_due_to_convective_microphysics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_dqldt in module GFS_typedefs +DEBUG: Requested variable tendency_of_cloud_water_due_to_convective_microphysics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_dqldt in module GFS_typedefs +DEBUG: Requested variable tendency_of_cloud_water_due_to_convective_microphysics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%cnv_dqldt in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%drain_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd%drain_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Tbd%drain_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Tbd%dsnow_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Tbd%dsnow_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_lwe_thickness_of_snow_amount_for_coupling in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Tbd%dsnow_cpl in module GFS_typedefs +DEBUG: Requested variable tendency_of_rain_water_mixing_ratio_due_to_microphysics in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Interstitial(cdata%thrd_no)%rainp in module GFS_typedefs +DEBUG: Requested variable tendency_of_tracers_due_to_model_physics in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_tracers_due_to_model_physics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_tracers_due_to_model_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_tracers_due_to_model_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_tracers_due_to_model_physics in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_turbulent_kinetic_energy_due_to_model_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dqdt(:,:,GFS_Control%ntke) in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_vertically_diffused_tracer_concentration in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdftra in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_model_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_ugwp in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_x_wind_due_to_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dudt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_model_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_ugwp in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dvdt in module GFS_typedefs +DEBUG: Requested variable tendency_of_y_wind_due_to_ugwp in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%gw_dvdt in module GFS_typedefs +DEBUG: Requested variable threshold_for_perturbed_vertical_velocity in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%nthresh in module GFS_typedefs +DEBUG: Requested variable threshold_volume_fraction_of_condensed_water_in_soil in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcref2 in module GFS_typedefs +DEBUG: Requested variable threshold_volume_fraction_of_condensed_water_in_soil in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcref2 in module GFS_typedefs +DEBUG: Requested variable threshold_volume_fraction_of_condensed_water_in_soil in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcref2 in module GFS_typedefs +DEBUG: Requested variable threshold_volume_fraction_of_condensed_water_in_soil in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcref2 in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_mtb in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_mtb in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_ngw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_ogw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_ogw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_tms in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Intdiag%du3dt_tms in module GFS_typedefs +DEBUG: Requested variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dv3dt_ngw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zogw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_height_of_low_level_wave_breaking in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zlwb in module GFS_typedefs +DEBUG: Requested variable time_integral_of_height_of_mountain_blocking in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%zmtb in module GFS_typedefs +DEBUG: Requested variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tau_mtb in module GFS_typedefs +DEBUG: Requested variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tau_ngw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tau_ogw in module GFS_typedefs +DEBUG: Requested variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%tau_tofd in module GFS_typedefs +DEBUG: Requested variable time_integral_of_x_stress_due_to_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dugwd in module GFS_typedefs +DEBUG: Requested variable time_integral_of_x_stress_due_to_gravity_wave_drag in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dugwd in module GFS_typedefs +DEBUG: Requested variable time_integral_of_y_stress_due_to_gravity_wave_drag in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dvgwd in module GFS_typedefs +DEBUG: Requested variable time_integral_of_y_stress_due_to_gravity_wave_drag in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%dvgwd in module GFS_typedefs +DEBUG: Requested variable time_scale_for_rayleigh_damping in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%ral_ts in module GFS_typedefs +DEBUG: Requested variable time_scale_for_rayleigh_damping in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%ral_ts in module GFS_typedefs +DEBUG: Requested variable time_since_diagnostics_zeroed in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%zhour in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_GWD_generic_post SCHEME_GFS_GWD_generic_post SUBROUTINE_GFS_GWD_generic_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_dynamics in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_run matched to target GFS_Control%dtf in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_GFS_time_vary_pre SCHEME_GFS_time_vary_pre SUBROUTINE_GFS_time_vary_pre_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_init matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%dtp in module GFS_typedefs +DEBUG: Requested variable time_step_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%raddt in module GFS_typedefs +DEBUG: Requested variable time_step_for_radiation in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%raddt in module GFS_typedefs +DEBUG: Requested variable time_step_for_radiation in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%raddt in module GFS_typedefs +DEBUG: Requested variable time_step_for_radiation in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%raddt in module GFS_typedefs +DEBUG: Requested variable time_step_for_radiation in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%raddt in module GFS_typedefs +DEBUG: Requested variable total_cloud_condensate_mixing_ratio_updated_by_physics in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%cwm in module GFS_typedefs +DEBUG: Requested variable total_cloud_condensate_mixing_ratio_updated_by_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Interstitial(cdata%thrd_no)%cwm in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_GFS_rrtmgp_lw_post SCHEME_GFS_rrtmgp_lw_post SUBROUTINE_GFS_rrtmgp_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_GFS_rrtmgp_pre SCHEME_GFS_rrtmgp_pre SUBROUTINE_GFS_rrtmgp_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_GFS_rrtmgp_sw_post SCHEME_GFS_rrtmgp_sw_post SUBROUTINE_GFS_rrtmgp_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_cloud_fraction in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Interstitial(cdata%thrd_no)%clouds(:,:,1) in module GFS_typedefs +DEBUG: Requested variable total_runoff in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%runoff in module GFS_typedefs +DEBUG: Requested variable total_runoff in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%runoff in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_save in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_save in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable tracer_concentration_updated_by_physics in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0 in module GFS_typedefs +DEBUG: Requested variable transpiration_flux in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%trans in module GFS_typedefs +DEBUG: Requested variable transpiration_flux in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%trans in module GFS_typedefs +DEBUG: Requested variable transpiration_flux in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%trans in module GFS_typedefs +DEBUG: Requested variable transpiration_flux in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%trans in module GFS_typedefs +DEBUG: Requested variable turb_oro_form_drag_flag in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%do_tofd in module GFS_typedefs +DEBUG: Requested variable turbulent_kinetic_energy in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntke) in module GFS_typedefs +DEBUG: Requested variable turbulent_kinetic_energy in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntke) in module GFS_typedefs +DEBUG: Requested variable upper_bound_on_max_albedo_over_deep_snow in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snoalb in module GFS_typedefs +DEBUG: Requested variable upper_bound_on_max_albedo_over_deep_snow in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snoalb in module GFS_typedefs +DEBUG: Requested variable upper_bound_on_max_albedo_over_deep_snow in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%snoalb in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ice in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ice in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ice in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_land in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_land in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_land in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_land in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ocean in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ocean in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ocean in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ocean in module GFS_typedefs +DEBUG: Requested variable upward_heat_flux_in_soil_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%gflx_ocean in module GFS_typedefs +DEBUG: Requested variable vegetation_area_fraction in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%vfrac in module GFS_typedefs +DEBUG: Requested variable vegetation_area_fraction in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%vfrac in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%vegtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification_real in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%vtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_classification_real in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%vtype in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_init matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_GFS_checkland SCHEME_GFS_checkland SUBROUTINE_GFS_checkland_run matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_init matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_init matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vegetation_type_dataset_choice in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%ivegsrc in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_sw_cloud_optics SCHEME_rrtmgp_sw_cloud_optics SUBROUTINE_rrtmgp_sw_cloud_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_init matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cs_conv_post SCHEME_cs_conv_post SUBROUTINE_cs_conv_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_GWD_generic_pre SCHEME_GFS_GWD_generic_pre SUBROUTINE_GFS_GWD_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_lw_rte SCHEME_rrtmgp_lw_rte SUBROUTINE_rrtmgp_lw_rte_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cires_ugwp_post SCHEME_cires_ugwp_post SUBROUTINE_cires_ugwp_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_lw_cloud_optics SCHEME_rrtmgp_lw_cloud_optics SUBROUTINE_rrtmgp_lw_cloud_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_lw_cloud_sampling SCHEME_rrtmgp_lw_cloud_sampling SUBROUTINE_rrtmgp_lw_cloud_sampling_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_interstitial_1 SCHEME_GFS_suite_interstitial_1 SUBROUTINE_GFS_suite_interstitial_1_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_interstitial_4 SCHEME_GFS_suite_interstitial_4 SUBROUTINE_GFS_suite_interstitial_4_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_suite_interstitial_5 SCHEME_GFS_suite_interstitial_5 SUBROUTINE_GFS_suite_interstitial_5_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_thompson_post SCHEME_mp_thompson_post SUBROUTINE_mp_thompson_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mynnrad_pre SCHEME_mynnrad_pre SUBROUTINE_mynnrad_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mynnrad_post SCHEME_mynnrad_post SUBROUTINE_mynnrad_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_MP_generic_pre SCHEME_GFS_MP_generic_pre SUBROUTINE_GFS_MP_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_sw_rte SCHEME_rrtmgp_sw_rte SUBROUTINE_rrtmgp_sw_rte_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_sw_aerosol_optics SCHEME_rrtmgp_sw_aerosol_optics SUBROUTINE_rrtmgp_sw_aerosol_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_lw_aerosol_optics SCHEME_rrtmgp_lw_aerosol_optics SUBROUTINE_rrtmgp_lw_aerosol_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_sw_gas_optics SCHEME_rrtmgp_sw_gas_optics SUBROUTINE_rrtmgp_sw_gas_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_sw_cloud_sampling SCHEME_rrtmgp_sw_cloud_sampling SUBROUTINE_rrtmgp_sw_cloud_sampling_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_m_micro_pre SCHEME_m_micro_pre SUBROUTINE_m_micro_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_m_micro_post SCHEME_m_micro_post SUBROUTINE_m_micro_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rrtmgp_lw_gas_optics SCHEME_rrtmgp_lw_gas_optics SUBROUTINE_rrtmgp_lw_gas_optics_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_init matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_init matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_cs_conv_aw_adj SCHEME_cs_conv_aw_adj SUBROUTINE_cs_conv_aw_adj_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Control%levs in module GFS_typedefs +DEBUG: Requested variable vertical_dimension_of_ozone_forcing_data in MODULE_ozphys SCHEME_ozphys SUBROUTINE_ozphys_run matched to target GFS_Interstitial(cdata%thrd_no)%levozp in module GFS_typedefs +DEBUG: Requested variable vertical_dimension_of_ozone_forcing_data in MODULE_ozphys_2015 SCHEME_ozphys_2015 SUBROUTINE_ozphys_2015_run matched to target GFS_Interstitial(cdata%thrd_no)%levozp in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_base in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kbot in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_gwdc_pre SCHEME_gwdc_pre SUBROUTINE_gwdc_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_cnvc90 SCHEME_cnvc90 SUBROUTINE_cnvc90_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_cloud_top in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%ktop in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_GFS_suite_interstitial_3 SCHEME_GFS_suite_interstitial_3 SUBROUTINE_GFS_suite_interstitial_3_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_at_top_of_atmosphere_boundary_layer in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%kpbl in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_inout_and_local in MODULE_rrtmg_lw_post SCHEME_rrtmg_lw_post SUBROUTINE_rrtmg_lw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%kd in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_inout_and_local in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%kd in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_inout_and_local in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%kd in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_inout_and_local in MODULE_rrtmg_sw_post SCHEME_rrtmg_sw_post SUBROUTINE_rrtmg_sw_post_run matched to target GFS_Interstitial(cdata%thrd_no)%kd in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_layer_and_lower_bound in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%kb in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_layer_and_lower_bound in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%kb in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_layer_and_upper_bound in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%kt in module GFS_typedefs +DEBUG: Requested variable vertical_index_difference_between_layer_and_upper_bound in MODULE_GFS_rrtmg_post SCHEME_GFS_rrtmg_post SUBROUTINE_GFS_rrtmg_post_run matched to target GFS_Interstitial(cdata%thrd_no)%kt in module GFS_typedefs +DEBUG: Requested variable vertical_sigma_coordinate_for_radiation_initialization in MODULE_GFS_rrtmg_setup SCHEME_GFS_rrtmg_setup SUBROUTINE_GFS_rrtmg_setup_init matched to target GFS_Control%si in module GFS_typedefs +DEBUG: Requested variable vertical_sigma_coordinate_for_radiation_initialization in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Control%si in module GFS_typedefs +DEBUG: Requested variable vertical_sigma_coordinate_for_radiation_initialization in MODULE_GFS_rrtmgp_setup SCHEME_GFS_rrtmgp_setup SUBROUTINE_GFS_rrtmgp_setup_init matched to target GFS_Control%si in module GFS_typedefs +DEBUG: Requested variable vertical_temperature_average_range_lower_bound in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%nstf_name(4) in module GFS_typedefs +DEBUG: Requested variable vertical_temperature_average_range_lower_bound in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Control%nstf_name(4) in module GFS_typedefs +DEBUG: Requested variable vertical_temperature_average_range_upper_bound in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Control%nstf_name(5) in module GFS_typedefs +DEBUG: Requested variable vertical_temperature_average_range_upper_bound in MODULE_sfc_nst_post SCHEME_sfc_nst_post SUBROUTINE_sfc_nst_post_run matched to target GFS_Control%nstf_name(5) in module GFS_typedefs +DEBUG: Requested variable vertical_velocity_for_updraft in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Interstitial(cdata%thrd_no)%w_upi in module GFS_typedefs +DEBUG: Requested variable vertical_velocity_for_updraft in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Interstitial(cdata%thrd_no)%w_upi in module GFS_typedefs +DEBUG: Requested variable vertical_velocity_for_updraft in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Interstitial(cdata%thrd_no)%w_upi in module GFS_typedefs +DEBUG: Requested variable vertical_velocity_for_updraft in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Interstitial(cdata%thrd_no)%w_upi in module GFS_typedefs +DEBUG: Requested variable vertical_velocity_for_updraft in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Interstitial(cdata%thrd_no)%w_upi in module GFS_typedefs +DEBUG: Requested variable vertical_weight_for_ca in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%vfact_ca in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable vertically_diffused_tracer_concentration in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%vdftra in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_condensed_water_in_soil_at_wilting_point in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcwlt2 in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_condensed_water_in_soil_at_wilting_point in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcwlt2 in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_condensed_water_in_soil_at_wilting_point in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcwlt2 in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_condensed_water_in_soil_at_wilting_point in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%smcwlt2 in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_soil_moisture in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%smc in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_soil_moisture in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%smc in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_soil_moisture in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%smc in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_unfrozen_soil_moisture in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slc in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_unfrozen_soil_moisture in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slc in module GFS_typedefs +DEBUG: Requested variable volume_fraction_of_unfrozen_soil_moisture in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%slc in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ccl4 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,9) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ccl4 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,9) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ccl4 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,9) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc11 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,6) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc11 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,6) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc11 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,6) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc113 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,10) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc12 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,7) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc12 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,7) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc12 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,7) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc22 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,8) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc22 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,8) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_cfc22 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,8) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ch4 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,3) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ch4 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,3) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_ch4 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,3) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,5) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,5) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,5) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co2 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,1) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co2 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,1) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_co2 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,1) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_n2o in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,2) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_n2o in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,2) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_n2o in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,2) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_o2 in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,4) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_o2 in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,4) in module GFS_typedefs +DEBUG: Requested variable volume_mixing_ratio_o2 in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%gasvmr(:,:,4) in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%weasd in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Data(cdata%blk_no)%Sfcprop%weasd in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_ice in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_ice in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_ice in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_ice in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_ice in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_ice in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_land in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_land in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_land in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_land in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_land in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_land in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_land in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_land in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_land in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_land in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_ocean in MODULE_GFS_surface_composites_pre SCHEME_GFS_surface_composites_pre SUBROUTINE_GFS_surface_composites_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_ocean in module GFS_typedefs +DEBUG: Requested variable water_equivalent_accumulated_snow_depth_over_ocean in MODULE_GFS_surface_composites_post SCHEME_GFS_surface_composites_post SUBROUTINE_GFS_surface_composites_post_run matched to target GFS_Interstitial(cdata%thrd_no)%weasd_ocean in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_cu_gf_driver_pre SCHEME_cu_gf_driver_pre SUBROUTINE_cu_gf_driver_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_cu_ntiedtke_pre SCHEME_cu_ntiedtke_pre SUBROUTINE_cu_ntiedtke_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_get_prs_fv3 SCHEME_get_prs_fv3 SUBROUTINE_get_prs_fv3_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_layer_for_radiation in MODULE_GFS_rrtmg_pre SCHEME_GFS_rrtmg_pre SUBROUTINE_GFS_rrtmg_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%qlyr in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_layer_for_radiation in MODULE_rrtmg_lw SCHEME_rrtmg_lw SUBROUTINE_rrtmg_lw_run matched to target GFS_Interstitial(cdata%thrd_no)%qlyr in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_layer_for_radiation in MODULE_rrtmg_sw SCHEME_rrtmg_sw SUBROUTINE_rrtmg_sw_run matched to target GFS_Interstitial(cdata%thrd_no)%qlyr in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%qgrs(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%q1 in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%q1 in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,1,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_at_previous_time_step in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,4) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_GFS_MP_generic_post SCHEME_GFS_MP_generic_post SUBROUTINE_GFS_MP_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_save in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_q(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_two_time_steps_back in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Tbd%phy_f3d(:,:,2) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cu_gf_driver_post SCHEME_cu_gf_driver_post SUBROUTINE_cu_gf_driver_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_mp_fer_hires SCHEME_mp_fer_hires SUBROUTINE_mp_fer_hires_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_zhaocarr_precpd SCHEME_zhaocarr_precpd SUBROUTINE_zhaocarr_precpd_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cs_conv_pre SCHEME_cs_conv_pre SUBROUTINE_cs_conv_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cu_ntiedtke_post SCHEME_cu_ntiedtke_post SUBROUTINE_cu_ntiedtke_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_mp_thompson_pre SCHEME_mp_thompson_pre SUBROUTINE_mp_thompson_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_get_phi_fv3 SCHEME_get_phi_fv3 SUBROUTINE_get_phi_fv3_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_zhaocarr_gscond SCHEME_zhaocarr_gscond SUBROUTINE_zhaocarr_gscond_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_GFS_SCNV_generic_pre SCHEME_GFS_SCNV_generic_pre SUBROUTINE_GFS_SCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_GFS_SCNV_generic_post SCHEME_GFS_SCNV_generic_post SUBROUTINE_GFS_SCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_h2ophys SCHEME_h2ophys SUBROUTINE_h2ophys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable water_vapor_specific_humidity_updated_by_physics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gq0(:,:,GFS_Control%ntqv) in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_shum_perturbation in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%shum_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_shum_perturbation_flipped in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%shum_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_skeb_perturbation_of_x_wind in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%skebu_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%skebu_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_skeb_perturbation_of_y_wind in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%skebv_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%skebv_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_sppt_perturbation in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Coupling%sppt_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_sppt_perturbation_flipped in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%sppt_wts in module GFS_typedefs +DEBUG: Requested variable weights_for_stochastic_surface_physics_perturbation in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Coupling%sfc_wts in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_sfc_ocean SCHEME_sfc_ocean SUBROUTINE_sfc_ocean_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_sfc_sice SCHEME_sfc_sice SUBROUTINE_sfc_sice_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_sfc_cice SCHEME_sfc_cice SUBROUTINE_sfc_cice_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_lsm_noah SCHEME_lsm_noah SUBROUTINE_lsm_noah_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_lsm_ruc SCHEME_lsm_ruc SUBROUTINE_lsm_ruc_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_GFS_surface_loop_control_part1 SCHEME_GFS_surface_loop_control_part1 SUBROUTINE_GFS_surface_loop_control_part1_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_GFS_surface_loop_control_part2 SCHEME_GFS_surface_loop_control_part2 SUBROUTINE_GFS_surface_loop_control_part2_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable wind_speed_at_lowest_model_layer in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%wind in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_10m in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u10m in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%ugrs(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer_for_diag in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%u1 in module GFS_typedefs +DEBUG: Requested variable x_wind_at_lowest_model_layer_updated_by_physics in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0(:,1) in module GFS_typedefs +DEBUG: Requested variable x_wind_save in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_u in module GFS_typedefs +DEBUG: Requested variable x_wind_save in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_u in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable x_wind_updated_by_physics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gu0 in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_rayleigh_damp SCHEME_rayleigh_damp SUBROUTINE_rayleigh_damp_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_gwdc SCHEME_gwdc SUBROUTINE_gwdc_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_gwdps SCHEME_gwdps SUBROUTINE_gwdps_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_myjpbl_wrapper SCHEME_myjpbl_wrapper SUBROUTINE_myjpbl_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_myjsfc_wrapper SCHEME_myjsfc_wrapper SUBROUTINE_myjsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_drag_suite SCHEME_drag_suite SUBROUTINE_drag_suite_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind in MODULE_cires_ugwp SCHEME_cires_ugwp SUBROUTINE_cires_ugwp_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_sfc_diag_post SCHEME_sfc_diag_post SUBROUTINE_sfc_diag_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_sfc_diff SCHEME_sfc_diff SUBROUTINE_sfc_diff_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_moninshoc SCHEME_moninshoc SUBROUTINE_moninshoc_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_mynnsfc_wrapper SCHEME_mynnsfc_wrapper SUBROUTINE_mynnsfc_wrapper_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_GFS_PBL_generic_pre SCHEME_GFS_PBL_generic_pre SUBROUTINE_GFS_PBL_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_maximum_hourly_diagnostics SCHEME_maximum_hourly_diagnostics SUBROUTINE_maximum_hourly_diagnostics_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_shinhongvdif SCHEME_shinhongvdif SUBROUTINE_shinhongvdif_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_10m in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v10m in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer in MODULE_noahmpdrv SCHEME_noahmpdrv SUBROUTINE_noahmpdrv_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer in MODULE_sfc_nst SCHEME_sfc_nst SUBROUTINE_sfc_nst_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer in MODULE_GFS_surface_generic_pre SCHEME_GFS_surface_generic_pre SUBROUTINE_GFS_surface_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Data(cdata%blk_no)%Statein%vgrs(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer_for_diag in MODULE_GFS_surface_generic_post SCHEME_GFS_surface_generic_post SUBROUTINE_GFS_surface_generic_post_run matched to target GFS_Data(cdata%blk_no)%Intdiag%v1 in module GFS_typedefs +DEBUG: Requested variable y_wind_at_lowest_model_layer_updated_by_physics in MODULE_sfc_diag SCHEME_sfc_diag SUBROUTINE_sfc_diag_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0(:,1) in module GFS_typedefs +DEBUG: Requested variable y_wind_save in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Interstitial(cdata%thrd_no)%save_v in module GFS_typedefs +DEBUG: Requested variable y_wind_save in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%save_v in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_cs_conv SCHEME_cs_conv SUBROUTINE_cs_conv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_gwdc_post SCHEME_gwdc_post SUBROUTINE_gwdc_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_gfdl_cloud_microphys SCHEME_gfdl_cloud_microphys SUBROUTINE_gfdl_cloud_microphys_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_m_micro SCHEME_m_micro SUBROUTINE_m_micro_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_sascnvn SCHEME_sascnvn SUBROUTINE_sascnvn_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_GFS_suite_stateout_reset SCHEME_GFS_suite_stateout_reset SUBROUTINE_GFS_suite_stateout_reset_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_GFS_suite_stateout_update SCHEME_GFS_suite_stateout_update SUBROUTINE_GFS_suite_stateout_update_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_shalcnv SCHEME_shalcnv SUBROUTINE_shalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_shoc SCHEME_shoc SUBROUTINE_shoc_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_cu_ntiedtke SCHEME_cu_ntiedtke SUBROUTINE_cu_ntiedtke_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_samfshalcnv SCHEME_samfshalcnv SUBROUTINE_samfshalcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_GFS_stochastics SCHEME_GFS_stochastics SUBROUTINE_GFS_stochastics_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_cu_gf_driver SCHEME_cu_gf_driver SUBROUTINE_cu_gf_driver_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_samfdeepcnv SCHEME_samfdeepcnv SUBROUTINE_samfdeepcnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_rascnv SCHEME_rascnv SUBROUTINE_rascnv_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_GFS_DCNV_generic_pre SCHEME_GFS_DCNV_generic_pre SUBROUTINE_GFS_DCNV_generic_pre_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable y_wind_updated_by_physics in MODULE_GFS_DCNV_generic_post SCHEME_GFS_DCNV_generic_post SUBROUTINE_GFS_DCNV_generic_post_run matched to target GFS_Data(cdata%blk_no)%Stateout%gv0 in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_ysuvdif SCHEME_ysuvdif SUBROUTINE_ysuvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_hedmf_hafs SCHEME_hedmf_hafs SUBROUTINE_hedmf_hafs_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_dcyc2t3 SCHEME_dcyc2t3 SUBROUTINE_dcyc2t3_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_satmedmfvdifq SCHEME_satmedmfvdifq SUBROUTINE_satmedmfvdifq_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_GFS_suite_interstitial_2 SCHEME_GFS_suite_interstitial_2 SUBROUTINE_GFS_suite_interstitial_2_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_mynnedmf_wrapper SCHEME_mynnedmf_wrapper SUBROUTINE_mynnedmf_wrapper_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_GFS_PBL_generic_post SCHEME_GFS_PBL_generic_post SUBROUTINE_GFS_PBL_generic_post_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_satmedmfvdif SCHEME_satmedmfvdif SUBROUTINE_satmedmfvdif_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +DEBUG: Requested variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes in MODULE_hedmf SCHEME_hedmf SUBROUTINE_hedmf_run matched to target GFS_Interstitial(cdata%thrd_no)%xmu in module GFS_typedefs +INFO: Generating list of Fortran modules containing CCPP type definitions ... +INFO: Generating typedefs makefile/cmakefile snippet ... +INFO: Added 10 typedefs to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh +INFO: Generating schemes makefile/cmakefile snippet ... +INFO: Added 215 schemes to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Generating suite and group caps ... +DEBUG: Generating suite and group caps for suite FV3_GFS_2017... +INFO: Generating static API ccpp_static_api.F90 in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics ... +INFO: Generating caps makefile/cmakefile snippet ... +INFO: Added 5 auto-generated caps to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh +INFO: CCPP prebuild step completed successfully. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ ./build_ccpp.sh hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk 'CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp' NO NO +MACHINE_ID=hera.intel is valid. +Compilers set for hera.intel. +Obtained ESMF_LIB=/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib from /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk +Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -DNETCDF_DIR=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DOPENMP=ON -DDYN32=ON -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... +-- The C compiler identification is Intel 18.0.5.20180823 +-- The CXX compiler identification is Intel 18.0.5.20180823 +-- The Fortran compiler identification is Intel 18.0.5.20180823 +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting C compile features +-- Detecting C compile features - done +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works +-- Detecting Fortran compiler ABI info +-- Detecting Fortran compiler ABI info - done +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes +-- Dynamics compiled with 32-bit option, adjust fv_sat_adj types +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Disable SIONlib support +-- Disable Intel MKL support +-- Enable netCDF support +-- Disable ESMF support +-- Disable multi-gases physics +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Got CCPP TYPEDEFS from cmakefile include file: gfs_typedefs.mod;mo_cloud_optics.mod;mo_optical_props.mod;ccpp_typedefs.mod;mo_gas_concentrations.mod;machine.mod;mo_source_functions.mod;module_radlw_parameters.mod;module_radsw_parameters.mod;mo_gas_optics_rrtmgp.mod +-- Got CCPP SCHEMES from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 +-- Got CCPP CAPS from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 +-- Configuring done +-- Generating done +CMake Warning: + Manually-specified variables were not used by the project: + + LEGACY_INTEL + + +-- Build files have been written to: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Scanning dependencies of target ccpp +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types.mod framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DDEBUG -O0 -g -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api.mod framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build +[ 1%] Linking Fortran static library libccpp.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 +/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/usr/bin/ranlib libccpp.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Scanning dependencies of target ccppphys +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/machine.mod physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physcons.mod physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common.mod physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel +[ 3%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel +[ 4%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdps.mod physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel +[ 5%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cnvc90.mod physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3.mod physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3.mod physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3.mod physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister.mod physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel +[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_kind.mod physics/CMakeFiles/ccppphys.dir/mo_rte_kind.mod.stamp Intel +[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props_kernels.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_util_array.mod physics/CMakeFiles/ccppphys.dir/mo_rte_util_array.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_optics.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_string.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_string.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_concentrations.mod physics/CMakeFiles/ccppphys.dir/mo_gas_concentrations.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_source_functions.mod physics/CMakeFiles/ccppphys.dir/mo_source_functions.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_kernels.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_constants.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_constants.mod.stamp Intel +[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder_kernels.mod.stamp Intel +[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder.mod.stamp Intel +[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_rrtmgp.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_rrtmgp.mod.stamp Intel +[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physparam.mod physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel +[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers.mod physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs.mod physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel +[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel +[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation.mod physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/funcphys.mod physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf.mod physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah.mod physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel +[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics.mod physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys.mod physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp.mod physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols.mod physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv.mod physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv.mod physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag.mod physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post.mod physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff.mod physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/date_def.mod physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters.mod physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel +[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop.mod physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel +[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/nst_module.mod physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel +[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst.mod physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice.mod physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def.mod physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef.mod physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols.mod physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy.mod physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel +[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics.mod physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds.mod physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozne_def.mod physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases.mod physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/radcons.mod physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank.mod physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw.mod physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface.mod physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb.mod physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux.mod physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel +[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel +[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel +[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics.mod physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel +[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel +[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerinterp.mod physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2o_def.mod physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp.mod physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccn_def.mod physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccninterp.mod physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozinterp.mod physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel +[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort.mod physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland.mod physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_broadband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_broadband_kernels.mod.stamp Intel +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband_kernels.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband.mod.stamp Intel +[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_heating_rates.mod physics/CMakeFiles/ccppphys.dir/mo_heating_rates.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_aux.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_aux.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_lw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_lw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_lw_cloud_optics.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_setup.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_5.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_5.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build +[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud.mod physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation.mod physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldmacro.mod physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build +[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro.mod physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build +[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv.mod physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post.mod physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre.mod physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj.mod physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep.mod physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh.mod physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build +[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build +[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/drag_suite.mod physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shoc.mod physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar.mod physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build +[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 32 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj.mod physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config.mod physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc.mod physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post.mod physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre.mod physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build +[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ophys.mod physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils.mod physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro.mod physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post.mod physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre.mod physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl.mod physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90 -o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/module_mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build +[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc.mod physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn.mod physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn.mod physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post.mod physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build +[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre.mod physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build +[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre.mod physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f -o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf_hafs.mod physics/CMakeFiles/ccppphys.dir/hedmf_hafs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/moninshoc.mod physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90 -o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson.mod physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod.mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables.mod physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015.mod physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90 -o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rascnv.mod physics/CMakeFiles/ccppphys.dir/rascnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o.provides.build +[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_sampling.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o.provides.build +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_solver_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rte_solver_kernels.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_lw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_lw.mod.stamp Intel +[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_sw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_sw.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_compute_bc.mod physics/CMakeFiles/ccppphys.dir/mo_compute_bc.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o.provides.build +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o.provides.build +[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o.provides.build +[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o.provides.build +[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_bygpoint.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_bygpoint.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_clr_all_sky.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_clr_all_sky.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F -o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sascnvn.mod physics/CMakeFiles/ccppphys.dir/sascnvn.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build +[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdifq.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdifq.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build +[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice.mod physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build +[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv.mod physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean.mod physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module.mod physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F -o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shalcnv.mod physics/CMakeFiles/ccppphys.dir/shalcnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif.mod physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde.mod physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif.mod physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs.mod physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f -o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f -o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DDEBUG -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DOVERLOAD_R4 -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O0 -g -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -check -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -traceback -debug -ftrapuv -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O0 -g -fPIC -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o +[100%] Linking Fortran static library libccppphys.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 +/usr/bin/ar qc libccppphys.a CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o CMakeFiles/ccppphys.dir/physics/date_def.f.o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o CMakeFiles/ccppphys.dir/physics/machine.F.o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o CMakeFiles/ccppphys.dir/physics/mfscu.f.o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o CMakeFiles/ccppphys.dir/physics/physcons.F90.o CMakeFiles/ccppphys.dir/physics/physparam.f.o CMakeFiles/ccppphys.dir/physics/radcons.f90.o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o CMakeFiles/ccppphys.dir/physics/sflx.f.o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o CMakeFiles/ccppphys.dir/physics/tridi.f.o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/gwdc.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/usr/bin/ranlib libccppphys.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make -f CMakeFiles/Makefile2 preinstall +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[2]: Nothing to be done for `preinstall'. +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +Install the project... +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P cmake_install.cmake +-- Install configuration: "Debug" +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccpp.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config-debug.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_types.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_api.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccppphys.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config-debug.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/gfs_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_cloud_optics.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_optical_props.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_concentrations.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/machine.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_source_functions.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radlw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radsw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_optics_rrtmgp.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib +Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" into /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL on hera +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/configure.fv3 +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/modules.fv3 +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 COMP_BINDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" nemsinstall + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 +ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o +ar: creating libfv3cpl.a +a - module_cplfields.o +a - module_cap_cpl.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -DOVERLOAD_R4 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ar rv libgfsphys.a physics/mersenne_twister.o physics/namelist_soilveg.o physics/physparam.o physics/set_soilveg.o physics/noahmp_tables.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_data.o ../ccpp/physics/ccpp_static_api.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_restart.o +ar: creating libgfsphys.a +a - physics/mersenne_twister.o +a - physics/namelist_soilveg.o +a - physics/physparam.o +a - physics/set_soilveg.o +a - physics/noahmp_tables.o +a - physics/GFDL_parse_tracers.o +a - physics/physcons.o +a - CCPP_layer/CCPP_data.o +a - ../ccpp/physics/ccpp_static_api.o +a - GFS_layer/GFS_abstraction_layer.o +a - GFS_layer/GFS_diagnostics.o +a - GFS_layer/GFS_driver.o +a - GFS_layer/GFS_restart.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +gmake -C ccpp/driver FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=Y # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DOVERLOAD_R4 CCPP_driver.F90 > CCPP_driver.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../../gfsphysics -I../../atmos_cubed_sphere -c CCPP_driver.tmp.f90 -o CCPP_driver.o +ar rv libccppdriver.a CCPP_driver.o +ar: creating libccppdriver.a +a - CCPP_driver.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_driver.F90 -o IPD_driver.o +ar rv libipd.a IPD_driver.o IPD_typedefs.o +ar: creating libipd.a +a - IPD_driver.o +a - IPD_typedefs.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_io_def.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o +ar: creating libfv3io.a +a - ffsync.o +a - FV3GFS_io.o +a - post_gfs.o +a - post_nems_routines.o +a - module_write_nemsio.o +a - module_write_netcdf.o +a - module_write_netcdf_parallel.o +a - module_fv3_io_def.o +a - module_write_internal_state.o +a - module_wrt_grid_comp.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +ar rv libfv3core.a model/a2b_edge.o model/multi_gases.o model/boundary.o model/dyn_core.o model/fv_arrays.o model/fv_control.o model/fv_dynamics.o model/fv_fill.o model/fv_grid_utils.o model/fv_mapz.o model/fv_nesting.o model/fv_regional_bc.o model/fv_sg.o model/fv_tracer2d.o model/fv_update_phys.o model/sw_core.o model/tp_core.o model/nh_core.o model/nh_utils.o tools/external_ic.o tools/external_sst.o tools/fv_diagnostics.o tools/fv_eta.o tools/fv_grid_tools.o tools/fv_io.o tools/fv_mp_mod.o tools/fv_nudge.o tools/fv_treat_da_inc.o tools/fv_iau_mod.o tools/fv_restart.o tools/fv_surf_map.o tools/fv_timing.o tools/init_hydro.o tools/sim_nc_mod.o tools/sorted_index.o tools/test_cases.o driver/fvGFS/DYCORE_typedefs.o driver/fvGFS/fv_nggps_diag.o driver/fvGFS/atmosphere.o +ar: creating libfv3core.a +a - model/a2b_edge.o +a - model/multi_gases.o +a - model/boundary.o +a - model/dyn_core.o +a - model/fv_arrays.o +a - model/fv_control.o +a - model/fv_dynamics.o +a - model/fv_fill.o +a - model/fv_grid_utils.o +a - model/fv_mapz.o +a - model/fv_nesting.o +a - model/fv_regional_bc.o +a - model/fv_sg.o +a - model/fv_tracer2d.o +a - model/fv_update_phys.o +a - model/sw_core.o +a - model/tp_core.o +a - model/nh_core.o +a - model/nh_utils.o +a - tools/external_ic.o +a - tools/external_sst.o +a - tools/fv_diagnostics.o +a - tools/fv_eta.o +a - tools/fv_grid_tools.o +a - tools/fv_io.o +a - tools/fv_mp_mod.o +a - tools/fv_nudge.o +a - tools/fv_treat_da_inc.o +a - tools/fv_iau_mod.o +a - tools/fv_restart.o +a - tools/fv_surf_map.o +a - tools/fv_timing.o +a - tools/init_hydro.o +a - tools/sim_nc_mod.o +a - tools/sorted_index.o +a - tools/test_cases.o +a - driver/fvGFS/DYCORE_typedefs.o +a - driver/fvGFS/fv_nggps_diag.o +a - driver/fvGFS/atmosphere.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DDEBUG -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o +ar: creating libstochastic_physics.a +a - stochy_gg_def.o +a - stochy_resol_def.o +a - stochy_layout_lag.o +a - four_to_grid_stochy.o +a - glats_stochy.o +a - sumfln_stochy.o +a - gozrineo_stochy.o +a - get_ls_node_stochy.o +a - get_lats_node_a_stochy.o +a - setlats_a_stochy.o +a - setlats_lag_stochy.o +a - epslon_stochy.o +a - getcon_lag_stochy.o +a - pln2eo_stochy.o +a - dozeuv_stochy.o +a - dezouv_stochy.o +a - plumes.o +a - spectral_layout.o +a - getcon_spectral.o +a - stochy_namelist_def.o +a - compns_stochy.o +a - stochy_internal_state_mod.o +a - stochastic_physics.o +a - stochy_patterngenerator.o +a - stochy_data_mod.o +a - get_stochy_pattern.o +a - initialize_spectral_mod.o +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOVERLOAD_R4 -DOVERLOAD_R8 -DDEBUG -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 32 -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o +ar: creating libfv3cap.a +a - atmos_model.o +a - module_fv3_config.o +a - module_fcst_grid_comp.o +a - time_utils.o +a - fv3_cap.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +# additional include files needed for PGI +#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/nems_dir" >> fv3.mk + +Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk + +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Installation into "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL" complete! + +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL +( \ +echo "# Do not edit this file. It is automatically generated." ; \ +echo "# Edit the component list or /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -e ; \ +for m in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; do \ + test -s $m ; \ +done ; \ +echo build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; \ +gmake nems DEBUG=Y \ + COMPONENTS="FMS CCPP FV3" \ + FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp FV3_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +cd ENS_Cpl && gmake stub +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 +ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o +ar: creating ENS_Cpl.a +a - ENS_CplComp_ESMFMod_STUB.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o +‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o +‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o +‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o +‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o +‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o +‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o +‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o +‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o +‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ +mpiicc -c nems_c_rusage.c +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 17:12:26 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -g -O0 -check all -check noarg_temp_created -check nopointer -warn -warn noerrors -fp-stack-check -fstack-protector-all -fpe0 -debug -traceback -ftrapuv -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o +‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ +echo libgocart is +libgocart is +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libccppdriver.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib -lccpp -lccppphys /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_debug.exe" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_debug.exe ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_debug BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y' NEMS_BUILDOPT=DEBUG=Y clean +Will copy modules.nems and NEMS.x as fv3_debug under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS DEBUG=Y +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' ++ elapsed=349 ++ echo 'Elapsed time 349 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y finished' +Elapsed time 349 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y finished ++ SECONDS=0 ++ [[ 4 -lt 2 ]] ++ readonly PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ PATHTR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ++ readonly BUILD_TARGET=hera.intel ++ BUILD_TARGET=hera.intel ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017' ++ readonly BUILD_NAME=fv3_std ++ BUILD_NAME=fv3_std ++ readonly clean_before=YES ++ clean_before=YES ++ readonly clean_after=YES ++ clean_after=YES ++ hostname +hfe01 ++ echo 'Compiling CCPP=Y SUITES=FV3_GFS_2017 into fv3_std.exe on hera.intel' +Compiling CCPP=Y SUITES=FV3_GFS_2017 into fv3_std.exe on hera.intel ++ gnu_make=gmake ++ which gmake +/usr/bin/gmake ++ [[ hera.intel == cheyenne.* ]] ++ [[ hera.intel == stampede.* ]] ++ MAKE_THREADS=8 ++ [[ 8 -gt 1 ]] ++ echo Using '$MAKE_THREADS=8' threads to build FV3 and FMS. +Using $MAKE_THREADS=8 threads to build FV3 and FMS. ++ echo Consider reducing '$MAKE_THREADS' if you hit memory or process limits. +Consider reducing $MAKE_THREADS if you hit memory or process limits. ++ gnu_make='gmake -j 8' ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../NEMS ++ COMPONENTS=FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] ++ COMPONENTS=CCPP,FMS,FV3 ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] ++ NEMS_BUILDOPT= ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_std BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= distclean +Will copy modules.nems and NEMS.x as fv3_std under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +ls: cannot access */*.a: No such file or directory +ls: cannot access */*.o: No such file or directory +ls: cannot access */*.mod: No such file or directory +ls: cannot access */depend: No such file or directory +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 --clean ; \ +cd $PATH_CCPP ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include" ; \ +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 --clean +INFO: Logging level set to INFO +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Performing clean .... +INFO: CCPP prebuild clean completed successfully, exiting. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Building dependencies ... +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk: component CCPP makefile fragment is missing +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk +rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test_results.mk ++ [[ CCPP=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] ++ mkdir -p /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_std BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= build +Will copy modules.nems and NEMS.x as fv3_std under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/modulefiles/hera.intel/fv3 /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_std" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/modules.fv3_std +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/conf/configure.fv3.hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/externals.nems +cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine_ESMF_NUOPC.h /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ESMFVersionDefine.h +( echo '. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.sh" +( echo 'source /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.csh.inc' ; \ +echo 'module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf' ; \ +echo 'module load modules.nems' ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems.csh" +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/configure_rules.mk:3: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk: No such file or directory +gmake -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/tests.mk \ + MODULE_LOGIC=" . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack" \ + TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" TEST +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +if [ -f "/modules.nems" ] ; then \ + . /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=300000 ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s ; \ +fi ; \ +( \ +echo "# Do not edit this file. It is automatically generated from tests.mk." ; \ +echo "CASELESS_FILESYSTEM=NO" ; \ +if [ "Q$ESMFMKFILE" != Q ] ; then egrep 'VERSION|^ESMF_[A-Z]*DIR' < "$ESMFMKFILE" ; fi ; \ +) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/test-results.mk" +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS' +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ +exec gmake CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" all + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_parameter.F90 -o ../mpp/mpp_parameter.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../platform/platform.F90 -o ../platform/platform.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/cloud_interpolator.F90 -o ../drifters/cloud_interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_input.F90 -o ../drifters/drifters_input.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_io.F90 -o ../drifters/drifters_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_core.F90 -o ../drifters/drifters_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/quicksort.F90 -o ../drifters/quicksort.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov_kernel.F90 -o ../monin_obukhov/monin_obukhov_kernel.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/MersenneTwister.F90 -o ../random_numbers/MersenneTwister.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres_k.F90 -o ../sat_vapor_pres/sat_vapor_pres_k.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tridiagonal/tridiagonal.F90 -o ../tridiagonal/tridiagonal.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../affinity/affinity.c -o ../affinity/affinity.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../memutils/memuse.c -o ../memutils/memuse.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/create_xgrid.c -o ../mosaic/create_xgrid.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/gradient_c2l.c -o ../mosaic/gradient_c2l.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/interp.c -o ../mosaic/interp.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/mosaic_util.c -o ../mosaic/mosaic_util.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mosaic/read_mosaic.c -o ../mosaic/read_mosaic.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/nsclock.c -o ../mpp/nsclock.o +mpiicc -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -xCORE-AVX2 -qno-opt-dynamic-align -D__IFC -sox -fp-model source -O2 -debug minimal -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -c ../mpp/threadloc.c -o ../mpp/threadloc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_data.F90 -o ../mpp/mpp_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../constants/constants.F90 -o ../constants/constants.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp.F90 -o ../mpp/mpp.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_memutils.F90 -o ../mpp/mpp_memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_pset.F90 -o ../mpp/mpp_pset.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_efp.F90 -o ../mpp/mpp_efp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_type.F90 -o ../horiz_interp/horiz_interp_type.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/gradient.F90 -o ../mosaic/gradient.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft99.F90 -o ../fft/fft99.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_utilities.F90 -o ../mpp/mpp_utilities.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_domains.F90 -o ../mpp/mpp_domains.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mpp/mpp_io.F90 -o ../mpp/mpp_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../block_control/block_control.F90 -o ../block_control/block_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters_comm.F90 -o ../drifters/drifters_comm.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../drifters/drifters.F90 -o ../drifters/drifters.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Compiling in MPI mode (with or without MPP) +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../memutils/memutils.F90 -o ../memutils/memutils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms_io.F90 -o ../fms/fms_io.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fms/fms.F90 -o ../fms/fms.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/time_manager.F90 -o ../time_manager/time_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../affinity/fms_affinity.F90 -o ../affinity/fms_affinity.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_conserve.F90 -o ../horiz_interp/horiz_interp_conserve.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bicubic.F90 -o ../horiz_interp/horiz_interp_bicubic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_bilinear.F90 -o ../horiz_interp/horiz_interp_bilinear.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp_spherical.F90 -o ../horiz_interp/horiz_interp_spherical.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../axis_utils/axis_utils.F90 -o ../axis_utils/axis_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_grid.F90 -o ../diag_manager/diag_grid.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/field_manager.F90 -o ../field_manager/field_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/ensemble_manager.F90 -o ../coupler/ensemble_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/mosaic.F90 -o ../mosaic/mosaic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../fft/fft.F90 -o ../fft/fft.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../monin_obukhov/monin_obukhov.F90 -o ../monin_obukhov/monin_obukhov.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../sat_vapor_pres/sat_vapor_pres.F90 -o ../sat_vapor_pres/sat_vapor_pres.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/gaussian_topog.F90 -o ../topography/gaussian_topog.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_types.F90 -o ../oda_tools/oda_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_manager/get_cal_time.F90 -o ../time_manager/get_cal_time.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp.F90 -o ../time_interp/time_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../astronomy/astronomy.F90 -o ../astronomy/astronomy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../column_diagnostics/column_diagnostics.F90 -o ../column_diagnostics/column_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_data.F90 -o ../diag_manager/diag_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_integral/diag_integral.F90 -o ../diag_integral/diag_integral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../mosaic/grid.F90 -o ../mosaic/grid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/write_ocean_data.F90 -o ../oda_tools/write_ocean_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../random_numbers/random_numbers.F90 -o ../random_numbers/random_numbers.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/xbt_drop_rate_adjust.f90 -o ../oda_tools/xbt_drop_rate_adjust.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../horiz_interp/horiz_interp.F90 -o ../horiz_interp/horiz_interp.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manifest.F90 -o ../diag_manager/diag_manifest.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_axis.F90 -o ../diag_manager/diag_axis.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core_ecda.F90 -o ../oda_tools/oda_core_ecda.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../field_manager/fm_util.F90 -o ../field_manager/fm_util.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../oda_tools/oda_core.F90 -o ../oda_tools/oda_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../tracer_manager/tracer_manager.F90 -o ../tracer_manager/tracer_manager.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_output.F90 -o ../diag_manager/diag_output.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../amip_interp/amip_interp.F90 -o ../amip_interp/amip_interp.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../time_interp/time_interp_external.F90 -o ../time_interp/time_interp_external.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../topography/topography.F90 -o ../topography/topography.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_util.F90 -o ../diag_manager/diag_util.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_table.F90 -o ../diag_manager/diag_table.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../diag_manager/diag_manager.F90 -o ../diag_manager/diag_manager.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../data_override/data_override.F90 -o ../data_override/data_override.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/coupler_types.F90 -o ../coupler/coupler_types.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/stock_constants.F90 -o ../exchange/stock_constants.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../interpolator/interpolator.F90 -o ../interpolator/interpolator.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../station_data/station_data.F90 -o ../station_data/station_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../exchange/xgrid.F90 -o ../exchange/xgrid.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../include -I../mpp/include -I../fms -c ../coupler/atmos_ocean_fluxes.F90 -o ../coupler/atmos_ocean_fluxes.o +ar rv libfms.a ../oda_tools/xbt_drop_rate_adjust.o ../affinity/fms_affinity.o ../amip_interp/amip_interp.o ../astronomy/astronomy.o ../axis_utils/axis_utils.o ../block_control/block_control.o ../column_diagnostics/column_diagnostics.o ../constants/constants.o ../coupler/atmos_ocean_fluxes.o ../coupler/coupler_types.o ../coupler/ensemble_manager.o ../data_override/data_override.o ../diag_integral/diag_integral.o ../diag_manager/diag_axis.o ../diag_manager/diag_data.o ../diag_manager/diag_grid.o ../diag_manager/diag_manifest.o ../diag_manager/diag_manager.o ../diag_manager/diag_output.o ../diag_manager/diag_table.o ../diag_manager/diag_util.o ../drifters/cloud_interpolator.o ../drifters/drifters.o ../drifters/drifters_comm.o ../drifters/drifters_core.o ../drifters/drifters_input.o ../drifters/drifters_io.o ../drifters/quicksort.o ../exchange/stock_constants.o ../exchange/xgrid.o ../fft/fft.o ../fft/fft99.o ../field_manager/field_manager.o ../field_manager/fm_util.o ../fms/fms.o ../fms/fms_io.o ../horiz_interp/horiz_interp.o ../horiz_interp/horiz_interp_bicubic.o ../horiz_interp/horiz_interp_bilinear.o ../horiz_interp/horiz_interp_conserve.o ../horiz_interp/horiz_interp_spherical.o ../horiz_interp/horiz_interp_type.o ../interpolator/interpolator.o ../memutils/memutils.o ../monin_obukhov/monin_obukhov.o ../monin_obukhov/monin_obukhov_kernel.o ../mosaic/gradient.o ../mosaic/grid.o ../mosaic/mosaic.o ../mpp/mpp.o ../mpp/mpp_data.o ../mpp/mpp_domains.o ../mpp/mpp_efp.o ../mpp/mpp_io.o ../mpp/mpp_memutils.o ../mpp/mpp_parameter.o ../mpp/mpp_pset.o ../mpp/mpp_utilities.o ../oda_tools/oda_core.o ../oda_tools/oda_core_ecda.o ../oda_tools/oda_types.o ../oda_tools/write_ocean_data.o ../platform/platform.o ../random_numbers/MersenneTwister.o ../random_numbers/random_numbers.o ../sat_vapor_pres/sat_vapor_pres.o ../sat_vapor_pres/sat_vapor_pres_k.o ../station_data/station_data.o ../time_interp/time_interp.o ../time_interp/time_interp_external.o ../time_manager/get_cal_time.o ../time_manager/time_manager.o ../topography/gaussian_topog.o ../topography/topography.o ../tracer_manager/tracer_manager.o ../tridiagonal/tridiagonal.o ../affinity/affinity.o ../memutils/memuse.o ../mosaic/create_xgrid.o ../mosaic/gradient_c2l.o ../mosaic/interp.o ../mosaic/mosaic_util.o ../mosaic/read_mosaic.o ../mpp/nsclock.o ../mpp/threadloc.o +ar: creating libfms.a +a - ../oda_tools/xbt_drop_rate_adjust.o +a - ../affinity/fms_affinity.o +a - ../amip_interp/amip_interp.o +a - ../astronomy/astronomy.o +a - ../axis_utils/axis_utils.o +a - ../block_control/block_control.o +a - ../column_diagnostics/column_diagnostics.o +a - ../constants/constants.o +a - ../coupler/atmos_ocean_fluxes.o +a - ../coupler/coupler_types.o +a - ../coupler/ensemble_manager.o +a - ../data_override/data_override.o +a - ../diag_integral/diag_integral.o +a - ../diag_manager/diag_axis.o +a - ../diag_manager/diag_data.o +a - ../diag_manager/diag_grid.o +a - ../diag_manager/diag_manifest.o +a - ../diag_manager/diag_manager.o +a - ../diag_manager/diag_output.o +a - ../diag_manager/diag_table.o +a - ../diag_manager/diag_util.o +a - ../drifters/cloud_interpolator.o +a - ../drifters/drifters.o +a - ../drifters/drifters_comm.o +a - ../drifters/drifters_core.o +a - ../drifters/drifters_input.o +a - ../drifters/drifters_io.o +a - ../drifters/quicksort.o +a - ../exchange/stock_constants.o +a - ../exchange/xgrid.o +a - ../fft/fft.o +a - ../fft/fft99.o +a - ../field_manager/field_manager.o +a - ../field_manager/fm_util.o +a - ../fms/fms.o +a - ../fms/fms_io.o +a - ../horiz_interp/horiz_interp.o +a - ../horiz_interp/horiz_interp_bicubic.o +a - ../horiz_interp/horiz_interp_bilinear.o +a - ../horiz_interp/horiz_interp_conserve.o +a - ../horiz_interp/horiz_interp_spherical.o +a - ../horiz_interp/horiz_interp_type.o +a - ../interpolator/interpolator.o +a - ../memutils/memutils.o +a - ../monin_obukhov/monin_obukhov.o +a - ../monin_obukhov/monin_obukhov_kernel.o +a - ../mosaic/gradient.o +a - ../mosaic/grid.o +a - ../mosaic/mosaic.o +a - ../mpp/mpp.o +a - ../mpp/mpp_data.o +a - ../mpp/mpp_domains.o +a - ../mpp/mpp_efp.o +a - ../mpp/mpp_io.o +a - ../mpp/mpp_memutils.o +a - ../mpp/mpp_parameter.o +a - ../mpp/mpp_pset.o +a - ../mpp/mpp_utilities.o +a - ../oda_tools/oda_core.o +a - ../oda_tools/oda_core_ecda.o +a - ../oda_tools/oda_types.o +a - ../oda_tools/write_ocean_data.o +a - ../platform/platform.o +a - ../random_numbers/MersenneTwister.o +a - ../random_numbers/random_numbers.o +a - ../sat_vapor_pres/sat_vapor_pres.o +a - ../sat_vapor_pres/sat_vapor_pres_k.o +a - ../station_data/station_data.o +a - ../time_interp/time_interp.o +a - ../time_interp/time_interp_external.o +a - ../time_manager/get_cal_time.o +a - ../time_manager/time_manager.o +a - ../topography/gaussian_topog.o +a - ../topography/topography.o +a - ../tracer_manager/tracer_manager.o +a - ../tridiagonal/tridiagonal.o +a - ../affinity/affinity.o +a - ../memutils/memuse.o +a - ../mosaic/create_xgrid.o +a - ../mosaic/gradient_c2l.o +a - ../mosaic/interp.o +a - ../mosaic/mosaic_util.o +a - ../mosaic/read_mosaic.o +a - ../mpp/nsclock.o +a - ../mpp/threadloc.o +mkdir -p "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL" +mv fms.mk "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/." +cp -fp *.a *.mod ../include/*.h "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL"/. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -xue ; \ +export PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ; \ +$PATH_CCPP/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 ; \ +cd $PATH_CCPP ; \ +./build_ccpp.sh hera.intel "$PATH_CCPP" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk \ + "CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"" NO NO ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/include ; \ +test -d "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp"/lib + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + ++ export PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68 ++ /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/config/ccpp_prebuild_config.py --builddir=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 --suites=FV3_GFS_2017 +INFO: Logging level set to INFO +INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata format +INFO: Parsing suite definition files ... +INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... +INFO: Parsing metadata tables for variables provided by host model ... +INFO: Parsed variable definition tables in module machine +INFO: Parsed variable definition tables in module module_radsw_parameters +INFO: Parsed variable definition tables in module module_radlw_parameters +INFO: Parsed variable definition tables in module CCPP_typedefs +INFO: Parsed variable definition tables in module GFS_typedefs +INFO: Parsed variable definition tables in module CCPP_data +INFO: Parsed variable definition tables in module mo_gas_optics_rrtmgp +INFO: Parsed variable definition tables in module mo_gas_concentrations +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_arry +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_1scl +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_2str +WARNING: Encountered closing statement "end type" without type name; assume type_name is ty_optical_props_nstr +INFO: Parsed variable definition tables in module mo_optical_props +INFO: Parsed variable definition tables in module mo_cloud_optics +INFO: Parsed variable definition tables in module mo_source_functions +INFO: Parsed variable definition tables in module ccpp_types +INFO: Convert local names from new metadata format into old metadata format ... +INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata +INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata +INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata +INFO: Converting local name facsf of variable fractional_coverage_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata +INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata +INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata +INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata +INFO: Converting local name gas_concentrations of variable Gas_concentrations_for_RRTMGP_suite from new to old metadata +INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata +INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata +INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata +INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata +INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata +INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata +INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata +INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata +INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata +INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata +INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata +INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata +INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata +INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata +INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata +INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata +INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata +INFO: Converting local name toa_src_sw of variable toa_incident_sw_flux_by_spectral_point from new to old metadata +INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata +INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata +INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata +INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata +INFO: Converting local name oro of variable orography from new to old metadata +INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata +INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata +INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata +INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata +INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata +INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata +INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata +INFO: Converting local name condition of variable physics_field_for_coupling from new to old metadata +INFO: Converting local name ntasks of variable mpi_size from new to old metadata +INFO: Converting local name hlwb of variable RRTMGP_lw_heating_rate_spectral from new to old metadata +INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata +INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata +INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata +INFO: Converting local name cld_swp of variable RRTMGP_cloud_snow_water_path from new to old metadata +INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata +INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata +INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata +INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata +INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata +INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata +INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata +INFO: Converting local name slag of variable equation_of_time from new to old metadata +INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata +INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata +INFO: Converting local name rrtmgp_nGptsLW of variable number_of_lw_spectral_points_rrtmgp from new to old metadata +INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata +INFO: Converting local name aerosolslw of variable RRTMGP_aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata +INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata +INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata +INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name qsq of variable q_prime_squared from new to old metadata +INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata +INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name flxprf_sw of variable RRTMGP_sw_fluxes from new to old metadata +INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata +INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata +INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata +INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata +INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata +INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata +INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata +INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata +INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata +INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata +INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata +INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata +INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata +INFO: Converting local name ty_cloud_optics of variable ty_cloud_optics from new to old metadata +INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata +INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata +INFO: Converting local name ty_optical_props_2str of variable ty_optical_props_2str from new to old metadata +INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata +INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata +INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata +INFO: Converting local name logunit of variable iounit_log from new to old metadata +INFO: Converting local name lw_optical_props_cloudsByBand of variable longwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata +INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata +INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata +INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata +INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata +INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata +INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata +INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata +INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata +INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata +INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata +INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata +INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata +INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata +INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata +INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata +INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata +INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata +INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata +INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata +INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata +INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata +INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata +INFO: Converting local name ty_optical_props_nstr of variable ty_optical_props_nstr from new to old metadata +INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata +INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata +INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata +INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata +INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata +INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata +INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata +INFO: Converting local name icseed_lw of variable seed_random_numbers_lw_for_RRTMGP from new to old metadata +INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata +INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata +INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata +INFO: Converting local name fluxlwUP_clrsky of variable RRTMGP_lw_flux_profile_upward_clrsky from new to old metadata +INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata +INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata +INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata +INFO: Converting local name fluxlwDOWN_allsky of variable RRTMGP_lw_flux_profile_downward_allsky from new to old metadata +INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata +INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata +INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata +INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata +INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata +INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata +INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata +INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata +INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata +INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata +INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata +INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata +INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata +INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata +INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata +INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata +INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata +INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata +INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata +INFO: Converting local name f_rimef of variable rime_factor from new to old metadata +INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata +INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata +INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata +INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata +INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata +INFO: Converting local name cld_reliq of variable RRTMGP_mean_effective_radius_for_liquid_cloud from new to old metadata +INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata +INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata +INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata +INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata +INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata +INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata +INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata +INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata +INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata +INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata +INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata +INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata +INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata +INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata +INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata +INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata +INFO: Converting local name icseed_sw of variable seed_random_numbers_sw_for_RRTMGP from new to old metadata +INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata +INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata +INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata +INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata +INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata +INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata +INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata +INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata +INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata +INFO: Converting local name aerosolssw of variable RRTMGP_aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata +INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata +INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata +INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata +INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata +INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata +INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata +INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata +INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata +INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata +INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata +INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata +INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata +INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata +INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata +INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata +INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata +INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata +INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata +INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata +INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata +INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata +INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata +INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata +INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata +INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata +INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata +INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata +INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata +INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata +INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata +INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata +INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata +INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata +INFO: Converting local name ipsdlw0 of variable initial_permutation_seed_lw from new to old metadata +INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata +INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata +INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata +INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata +INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata +INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata +INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata +INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata +INFO: Converting local name area of variable cell_area from new to old metadata +INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata +INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata +INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata +INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata +INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata +INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata +INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata +INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata +INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata +INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata +INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata +INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata +INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata +INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata +INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata +INFO: Converting local name LTP of variable extra_top_layer from new to old metadata +INFO: Converting local name solcon of variable solar_constant from new to old metadata +INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata +INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata +INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata +INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata +INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata +INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata +INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata +INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata +INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata +INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata +INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata +INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata +INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata +INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata +INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata +INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata +INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata +INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata +INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata +INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata +INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata +INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata +INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata +INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata +INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata +INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata +INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata +INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata +INFO: Converting local name vvl of variable omega from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata +INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata +INFO: Converting local name restart of variable flag_for_restart from new to old metadata +INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata +INFO: Converting local name ty_gas_concs of variable ty_gas_concs from new to old metadata +INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata +INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata +INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata +INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata +INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata +INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata +INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata +INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata +INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata +INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata +INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata +INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata +INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name sfc_alb_nir_dif of variable surface_albedo_nearIR_diffuse from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata +INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata +INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata +INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata +INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata +INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata +INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata +INFO: Converting local name hlwc of variable RRTMGP_lw_heating_rate_all_sky from new to old metadata +INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata +INFO: Converting local name cld_rerain of variable RRTMGP_mean_effective_radius_for_rain_drop from new to old metadata +INFO: Converting local name idxday of variable daytime_points from new to old metadata +INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata +INFO: Converting local name stc of variable soil_temperature from new to old metadata +INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata +INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata +INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata +INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata +INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata +INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata +INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata +INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata +INFO: Converting local name kdt of variable index_of_time_step from new to old metadata +INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata +INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata +INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata +INFO: Converting local name nblks of variable number_of_blocks from new to old metadata +INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata +INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata +INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata +INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata +INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata +INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata +INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata +INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata +INFO: Converting local name rrtmgp_nGptsSW of variable number_of_sw_spectral_points_rrtmgp from new to old metadata +INFO: Converting local name sw_gas_props of variable coefficients_for_sw_gas_optics from new to old metadata +INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata +INFO: Converting local name xlon of variable longitude from new to old metadata +INFO: Converting local name kind_grid of variable kind_grid from new to old metadata +INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata +INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata +INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name rrtmgp_nBandsLW of variable number_of_lw_bands_rrtmgp from new to old metadata +INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata +INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata +INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata +INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name lprnt of variable flag_print from new to old metadata +INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata +INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata +INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata +INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata +INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata +INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata +INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata +INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata +INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata +INFO: Converting local name active_gases of variable active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata +INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata +INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata +INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata +INFO: Converting local name kice of variable ice_vertical_dimension from new to old metadata +INFO: Converting local name ca_trigger of variable flag_for_global_cellular_automata_trigger from new to old metadata +INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata +INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata +INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata +INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata +INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata +INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata +INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata +INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata +INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata +INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata +INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata +INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata +INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata +INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata +INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata +INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata +INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata +INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata +INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata +INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata +INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata +INFO: Converting local name fluxlwDOWN_clrsky of variable RRTMGP_lw_flux_profile_downward_clrsky from new to old metadata +INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata +INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata +INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata +INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata +INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata +INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata +INFO: Converting local name kind_phys of variable kind_phys from new to old metadata +INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata +INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata +INFO: Converting local name t_lay of variable air_temperature_at_layer_for_RRTMGP from new to old metadata +INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata +INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata +INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata +INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata +INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata +INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata +INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata +INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata +INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata +INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata +INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata +INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata +INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata +INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata +INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata +INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata +INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata +INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata +INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata +INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata +INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata +INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata +INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata +INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata +INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata +INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata +INFO: Converting local name hlw0 of variable RRTMGP_lw_heating_rate_clear_sky from new to old metadata +INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata +INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata +INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata +INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata +INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata +INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata +INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata +INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata +INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata +INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata +INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata +INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata +INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata +INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata +INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata +INFO: Converting local name alnsf of variable mean_nir_albedo_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata +INFO: Converting local name tv_lay of variable virtual_temperature from new to old metadata +INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata +INFO: Converting local name nGases of variable number_of_active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata +INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata +INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata +INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata +INFO: Converting local name save_t of variable air_temperature_save from new to old metadata +INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata +INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata +INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata +INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata +INFO: Converting local name ty_optical_props_1scl of variable ty_optical_props_1scl from new to old metadata +INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata +INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata +INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata +INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata +INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata +INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata +INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata +INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata +INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata +INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata +INFO: Converting local name hflxq of variable kinematic_surface_upward_sensible_heat_flux_reduced_by_surface_roughness from new to old metadata +INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata +INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata +INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata +INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata +INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata +INFO: Converting local name sw_cloud_props of variable coefficients_for_sw_cloud_optics from new to old metadata +INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata +INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata +INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata +INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata +INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata +INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata +INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata +INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata +INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata +INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata +INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata +INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata +INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata +INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata +INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata +INFO: Converting local name fluxswDOWN_allsky of variable RRTMGP_sw_flux_profile_downward_allsky from new to old metadata +INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata +INFO: Converting local name ca_closure of variable flag_for_global_cellular_automata_closure from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata +INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata +INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata +INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata +INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata +INFO: Converting local name rrtmgp_root of variable directory_for_rte_rrtmgp_source_code from new to old metadata +INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata +INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata +INFO: Converting local name rrtmgp_nGauss_ang of variable number_of_angles_used_in_gaussian_quadrature from new to old metadata +INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata +INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata +INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata +INFO: Converting local name flipv of variable flag_flip from new to old metadata +INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata +INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata +INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata +INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata +INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata +INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata +INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata +INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name lw_optical_props_clrsky of variable longwave_optical_properties_for_clear_sky from new to old metadata +INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name ca_entr of variable flag_for_global_cellular_automata_entr from new to old metadata +INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name hsw0 of variable RRTMGP_sw_heating_rate_clear_sky from new to old metadata +INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata +INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata +INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata +INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata +INFO: Converting local name cld_rwp of variable RRTMGP_cloud_rain_water_path from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata +INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata +INFO: Converting local name lw_optical_props_aerosol of variable longwave_optical_properties_for_aerosols from new to old metadata +INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata +INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata +INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata +INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata +INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata +INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata +INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name do_GPsw_Glw of variable scheme_flag from new to old metadata +INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata +INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata +INFO: Converting local name imn of variable forecast_month from new to old metadata +INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata +INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata +INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata +INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata +INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata +INFO: Converting local name cld_iwp of variable RRTMGP_cloud_ice_water_path from new to old metadata +INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata +INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata +INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata +INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata +INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata +INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata +INFO: Converting local name runoff of variable total_runoff from new to old metadata +INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata +INFO: Converting local name ty_source_func_lw of variable ty_source_func_lw from new to old metadata +INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata +INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata +INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata +INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata +INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata +INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata +INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name hswc of variable RRTMGP_sw_heating_rate_all_sky from new to old metadata +INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata +INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata +INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata +INFO: Converting local name t_lev of variable air_temperature_at_interface_for_RRTMGP from new to old metadata +INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata +INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata +INFO: Converting local name p_lay of variable air_pressure_at_layer_for_RRTMGP_in_hPa from new to old metadata +INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata +INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata +INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata +INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata +INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata +INFO: Converting local name stmassxy of variable stem_mass from new to old metadata +INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata +INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata +INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata +INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata +INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata +INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata +INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata +INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata +INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata +INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata +INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata +INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata +INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata +INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata +INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata +INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata +INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata +INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata +INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata +INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata +INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step_and_radiation_levels from new to old metadata +INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata +INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata +INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata +INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata +INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata +INFO: Converting local name sfc_alb_nir_dir of variable surface_albedo_nearIR_direct from new to old metadata +INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata +INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata +INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata +INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata +INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata +INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata +INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata +INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata +INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata +INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata +INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata +INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata +INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata +INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata +INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata +INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata +INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata +INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata +INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata +INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata +INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata +INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata +INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata +INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata +INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata +INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata +INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata +INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata +INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata +INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata +INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata +INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata +INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata +INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata +INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata +INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata +INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata +INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata +INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata +INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata +INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata +INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata +INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata +INFO: Converting local name lh of variable surface_latent_heat from new to old metadata +INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata +INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata +INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata +INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata +INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata +INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata +INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata +INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata +INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata +INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata +INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata +INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata +INFO: Converting local name dx of variable cell_size from new to old metadata +INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata +INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata +INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata +INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata +INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata +INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata +INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata +INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata +INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata +INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata +INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata +INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata +INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata +INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata +INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata +INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata +INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata +INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata +INFO: Converting local name ca1 of variable cellular_automata_global_pattern from new to old metadata +INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name sw_optical_props_cloudsByBand of variable shortwave_optical_properties_for_cloudy_atmosphere_by_band from new to old metadata +INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata +INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata +INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata +INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata +INFO: Converting local name ugrs of variable x_wind from new to old metadata +INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata +INFO: Converting local name fluxswUP_clrsky of variable RRTMGP_sw_flux_profile_upward_clrsky from new to old metadata +INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata +INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata +INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata +INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata +INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata +INFO: Converting local name facwf of variable fractional_coverage_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata +INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata +INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata +INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata +INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata +INFO: Converting local name alvsf of variable mean_vis_albedo_with_strong_cosz_dependency from new to old metadata +INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata +INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata +INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata +INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata +INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata +INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata +INFO: Converting local name sw_file_gas of variable rrtmgp_kdistribution_sw from new to old metadata +INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata +INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata +INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata +INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata +INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata +INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata +INFO: Converting local name topflw_type of variable topflw_type from new to old metadata +INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata +INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata +INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata +INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata +INFO: Converting local name rann of variable random_number_array from new to old metadata +INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata +INFO: Converting local name tracer of variable chemical_tracers from new to old metadata +INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata +INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata +INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata +INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata +INFO: Converting local name sfc_emiss_byband of variable surface_emissivity_in_each_RRTMGP_LW_band from new to old metadata +INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata +INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata +INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata +INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata +INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata +INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata +INFO: Converting local name rrtmgp_nrghice of variable number_of_rrtmgp_ice_roughness from new to old metadata +INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata +INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata +INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata +INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata +INFO: Converting local name tsq of variable t_prime_squared from new to old metadata +INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata +INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata +INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata +INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata +INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata +INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata +INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata +INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata +INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata +INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata +INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata +INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata +INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata +INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata +INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata +INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata +INFO: Converting local name debug of variable flag_debug from new to old metadata +INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata +INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata +INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata +INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata +INFO: Converting local name save_v of variable y_wind_save from new to old metadata +INFO: Converting local name el_pbl of variable mixing_length from new to old metadata +INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata +INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata +INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata +INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata +INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata +INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata +INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata +INFO: Converting local name cld_lwp of variable RRTMGP_cloud_liquid_water_path from new to old metadata +INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata +INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata +INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata +INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata +INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata +INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata +INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata +INFO: Converting local name trans of variable transpiration_flux from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata +INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata +INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata +INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata +INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata +INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata +INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata +INFO: Converting local name tile_num of variable number_of_tile from new to old metadata +INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata +INFO: Converting local name me of variable mpi_rank from new to old metadata +INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata +INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata +INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata +INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata +INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata +INFO: Converting local name nwat of variable number_of_water_species from new to old metadata +INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata +INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata +INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata +INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata +INFO: Converting local name toa_src_lw of variable toa_incident_lw_flux_by_spectral_point from new to old metadata +INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata +INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata +INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata +INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata +INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata +INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata +INFO: Converting local name relhum of variable relative_humidity from new to old metadata +INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata +INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata +INFO: Converting local name srunoff of variable surface_runoff from new to old metadata +INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata +INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata +INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata +INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata +INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata +INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata +INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata +INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata +INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata +INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata +INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata +INFO: Converting local name con_pi of variable pi from new to old metadata +INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata +INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata +INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata +INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata +INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata +INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata +INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata +INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata +INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata +INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata +INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata +INFO: Converting local name julian of variable julian_day from new to old metadata +INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata +INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata +INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata +INFO: Converting local name mol of variable theta_star from new to old metadata +INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata +INFO: Converting local name sw_optical_props_clouds of variable shortwave_optical_properties_for_cloudy_atmosphere from new to old metadata +INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata +INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata +INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata +INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata +INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata +INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata +INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata +INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata +INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata +INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata +INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata +INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name hffac of variable surface_upward_sensible_heat_flux_reduction_factor from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata +INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata +INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata +INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata +INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata +INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata +INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name sfc_alb_uvvis_dif of variable surface_albedo_uvvis_dif from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata +INFO: Converting local name sfc_alb_uvvis_dir of variable surface_albedo_uvvis_dir from new to old metadata +INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata +INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata +INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata +INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata +INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata +INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata +INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata +INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata +INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata +INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata +INFO: Converting local name is of variable starting_x_direction_index from new to old metadata +INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata +INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata +INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata +INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata +INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata +INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata +INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata +INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata +INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata +INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata +INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,3) of variable RRTMGP_aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name levs of variable vertical_dimension from new to old metadata +INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata +INFO: Converting local name rrtmgp_cld_optics of variable rrtmgp_cloud_optics_flag from new to old metadata +INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata +INFO: Converting local name cldtaulw of variable RRTMGP_cloud_optical_depth_layers_at_10mu_band from new to old metadata +INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name prnum of variable prandtl_number from new to old metadata +INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata +INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata +INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata +INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata +INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata +INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata +INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata +INFO: Converting local name active_gases_array of variable list_of_active_gases_used_by_RRTMGP from new to old metadata +INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata +INFO: Converting local name master of variable mpi_root from new to old metadata +INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata +INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata +INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata +INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata +INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata +INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata +INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata +INFO: Converting local name flxprf_lw of variable RRTMGP_lw_fluxes from new to old metadata +INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata +INFO: Converting local name communicator of variable mpi_comm from new to old metadata +INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata +INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata +INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata +INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata +INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata +INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata +INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata +INFO: Converting local name cld_frac of variable RRTMGP_total_cloud_fraction from new to old metadata +INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata +INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata +INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata +INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata +INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata +INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata +INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata +INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata +INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata +INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata +INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata +INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata +INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata +INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata +INFO: Converting local name fluxswUP_allsky of variable RRTMGP_sw_flux_profile_upward_allsky from new to old metadata +INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata +INFO: Converting local name cld_resnow of variable RRTMGP_mean_effective_radius_for_snow_flake from new to old metadata +INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata +INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata +INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata +INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata +INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata +INFO: Converting local name evapq of variable kinematic_surface_upward_latent_heat_flux_reduced_by_surface_roughness from new to old metadata +INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata +INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata +INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata +INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata +INFO: Converting local name tgrs of variable air_temperature from new to old metadata +INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata +INFO: Converting local name sw_optical_props_aerosol of variable shortwave_optical_properties_for_aerosols from new to old metadata +INFO: Converting local name e0fac of variable latent_heat_flux_fraction_factor_relative_to_sensible_heat_flux from new to old metadata +INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata +INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata +INFO: Converting local name do_RRTMGP of variable flag_for_rrtmgp_radiation_scheme from new to old metadata +INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata +INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata +INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata +INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata +INFO: Converting local name lw_file_clouds of variable rrtmgp_coeff_lw_cloud_optics from new to old metadata +INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata +INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata +INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata +INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata +INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata +INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata +INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata +INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata +INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata +INFO: Converting local name lw_file_gas of variable rrtmgp_kdistribution_lw from new to old metadata +INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata +INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name je of variable ending_y_direction_index from new to old metadata +INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata +INFO: Converting local name hefac of variable surface_upward_latent_heat_flux_reduction_factor from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata +INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata +INFO: Converting local name p_lev of variable air_pressure_at_interface_for_RRTMGP_in_hPa from new to old metadata +INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata +INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata +INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata +INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata +INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata +INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata +INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata +INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata +INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata +INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata +INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata +INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata +INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata +INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata +INFO: Converting local name sec_diff_byband of variable secant_of_diffusivity_angle_each_RRTMGP_LW_band from new to old metadata +INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata +INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata +INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata +INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata +INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata +INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata +INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata +INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata +INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata +INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata +INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata +INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata +INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata +INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata +INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata +INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata +INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata +INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata +INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata +INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata +INFO: Converting local name z0fac of variable surface_roughness_fraction_factor from new to old metadata +INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata +INFO: Converting local name prsl of variable air_pressure from new to old metadata +INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata +INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata +INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata +INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata +INFO: Converting local name xs of variable sea_water_salinity from new to old metadata +INFO: Converting local name xlat of variable latitude from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata +INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata +INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata +INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata +INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata +INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata +INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata +INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata +INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata +INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata +INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata +INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata +INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata +INFO: Converting local name grav_settling of variable grav_settling from new to old metadata +INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata +INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata +INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata +INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata +INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata +INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata +INFO: Converting local name js of variable starting_y_direction_index from new to old metadata +INFO: Converting local name sources of variable longwave_source_function from new to old metadata +INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata +INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata +INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata +INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata +INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata +INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata +INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata +INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata +INFO: Converting local name stress of variable surface_wind_stress from new to old metadata +INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata +INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata +INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata +INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata +INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata +INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata +INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata +INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata +INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata +INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata +INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata +INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata +INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata +INFO: Converting local name vfact_ca of variable vertical_weight_for_ca from new to old metadata +INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata +INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata +INFO: Converting local name cld_reice of variable RRTMGP_mean_effective_radius_for_ice_cloud from new to old metadata +INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata +INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata +INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata +INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata +INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata +INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata +INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata +INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata +INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata +INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata +INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata +INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata +INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata +INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata +INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata +INFO: Converting local name ipsdsw0 of variable initial_permutation_seed_sw from new to old metadata +INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata +INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata +INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata +INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata +INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata +INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata +INFO: Converting local name lw_cloud_props of variable coefficients_for_lw_cloud_optics from new to old metadata +INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata +INFO: Converting local name woodxy of variable wood_mass from new to old metadata +INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata +INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata +INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name hswb of variable RRTMGP_sw_heating_rate_spectral from new to old metadata +INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata +INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata +INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata +INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata +INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata +INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata +INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata +INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata +INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata +INFO: Converting local name lw_gas_props of variable coefficients_for_lw_gas_optics from new to old metadata +INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata +INFO: Converting local name ty_gas_optics_rrtmgp of variable ty_gas_optics_rrtmgp from new to old metadata +INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata +INFO: Converting local name aerosolslw(:,:,:,2) of variable RRTMGP_aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name save_u of variable x_wind_save from new to old metadata +INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata +INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata +INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata +INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata +INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata +INFO: Converting local name vgrs of variable y_wind from new to old metadata +INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata +INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata +INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata +INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata +INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata +INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata +INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata +INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata +INFO: Converting local name fluxlwUP_allsky of variable RRTMGP_lw_flux_profile_upward_allsky from new to old metadata +INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata +INFO: Converting local name tiice of variable internal_ice_temperature from new to old metadata +INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata +INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata +INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata +INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata +INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata +INFO: Converting local name fluxswDOWN_clrsky of variable RRTMGP_sw_flux_profile_downward_clrsky from new to old metadata +INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata +INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata +INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata +INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata +INFO: Converting local name aerosolssw(:,:,:,1) of variable RRTMGP_aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata +INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata +INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata +INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata +INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata +INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata +INFO: Converting local name nthreads of variable omp_threads from new to old metadata +INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata +INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata +INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata +INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata +INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata +INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata +INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata +INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata +INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata +INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata +INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata +INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata +INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata +INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata +INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata +INFO: Converting local name rrtmgp_nBandsSW of variable number_of_sw_bands_rrtmgp from new to old metadata +INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata +INFO: Converting local name fhour of variable forecast_time from new to old metadata +INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata +INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata +INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata +INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata +INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata +INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata +INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata +INFO: Converting local name proflw_type of variable proflw_type from new to old metadata +INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata +INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata +INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata +INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata +INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata +INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata +INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata +INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata +INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata +INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata +INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata +INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata +INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata +INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata +INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata +INFO: Converting local name lw_optical_props_clouds of variable longwave_optical_properties_for_cloudy_atmosphere from new to old metadata +INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata +INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata +INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata +INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata +INFO: Converting local name phil of variable geopotential from new to old metadata +INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata +INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata +INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata +INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata +INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata +INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata +INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata +INFO: Converting local name coszdg of variable daytime_mean_cosz_over_rad_call_period from new to old metadata +INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata +INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata +INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata +INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata +INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata +INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata +INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata +INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata +INFO: Converting local name sw_file_clouds of variable rrtmgp_coeff_sw_cloud_optics from new to old metadata +INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata +INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata +INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata +INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata +INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata +INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata +INFO: Converting local name sw_optical_props_clrsky of variable shortwave_optical_properties_for_clear_sky from new to old metadata +INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata +INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata +INFO: Converting local name cldtausw of variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band from new to old metadata +INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata +INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata +INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata +INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata +INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata +INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata +INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata +INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata +INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata +INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata +INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata +INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata +INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata +INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata +INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata +INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata +INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata +INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata +INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata +INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata +INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata +INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata +INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata +INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata +INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata +INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata +INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata +INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata +INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata +INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata +INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata +INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata +INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata +INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata +INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata +INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata +INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata +INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata +INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata +INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata +INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata +INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata +INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata +INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata +INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata +INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata +INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata +INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata +INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata +INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata +INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata +INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata +INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata +INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html +INFO: Parsing metadata tables in physics scheme files ... +INFO: Parsed tables in scheme rayleigh_damp +INFO: Parsed tables in scheme sfc_ocean +INFO: Parsed tables in scheme rrtmg_lw_post +INFO: Parsed tables in scheme rrtmgp_sw_cloud_optics +INFO: Parsed tables in scheme GFS_rrtmg_pre +INFO: Parsed tables in scheme ysuvdif +INFO: Parsed tables in scheme cu_gf_driver_post +INFO: Parsed tables in scheme sfc_diag_post +INFO: Parsed tables in scheme noahmpdrv +INFO: Parsed tables in scheme mp_fer_hires +INFO: Parsed tables in scheme GFS_diagtoscreen +INFO: Parsed tables in scheme GFS_interstitialtoscreen +INFO: Parsed tables in scheme GFS_abort +INFO: Parsed tables in scheme GFS_checkland +INFO: Parsed tables in scheme zhaocarr_precpd +INFO: Parsed tables in scheme cs_conv_pre +INFO: Parsed tables in scheme cs_conv_post +INFO: Parsed tables in scheme cs_conv +INFO: Parsed tables in scheme hedmf_hafs +INFO: Parsed tables in scheme GFS_rrtmgp_sw_pre +INFO: Parsed tables in scheme sfc_sice +INFO: Parsed tables in scheme GFS_rrtmgp_lw_post +INFO: Parsed tables in scheme sfc_diff +INFO: Parsed tables in scheme GFS_GWD_generic_pre +INFO: Parsed tables in scheme GFS_GWD_generic_post +INFO: Parsed tables in scheme rrtmg_sw_pre +INFO: Parsed tables in scheme rrtmg_lw +INFO: Parsed tables in scheme rrtmgp_lw_rte +INFO: Parsed tables in scheme dcyc2t3 +INFO: Parsed tables in scheme gwdc_pre +INFO: Parsed tables in scheme gwdc +INFO: Parsed tables in scheme gwdc_post +INFO: Parsed tables in scheme cu_gf_driver_pre +INFO: Parsed tables in scheme gfdl_cloud_microphys +INFO: Parsed tables in scheme cires_ugwp_post +INFO: Parsed tables in scheme rrtmgp_lw_cloud_optics +INFO: Parsed tables in scheme gwdps +INFO: Parsed tables in scheme moninshoc +INFO: Parsed tables in scheme sfc_cice +INFO: Parsed tables in scheme GFS_suite_ini_fini_test +INFO: Parsed tables in scheme myjpbl_wrapper +INFO: Parsed tables in scheme rrtmgp_lw_cloud_sampling +INFO: Parsed tables in scheme sfc_diag +INFO: Parsed tables in scheme satmedmfvdifq +INFO: Parsed tables in scheme cu_ntiedtke_post +INFO: Parsed tables in scheme cu_ntiedtke_pre +INFO: Parsed tables in scheme mp_thompson_pre +INFO: Parsed tables in scheme m_micro +INFO: Parsed tables in scheme lsm_noah +INFO: Parsed tables in scheme sascnvn +INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset +INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset +INFO: Parsed tables in scheme GFS_suite_interstitial_1 +INFO: Parsed tables in scheme GFS_suite_interstitial_2 +INFO: Parsed tables in scheme GFS_suite_stateout_reset +INFO: Parsed tables in scheme GFS_suite_stateout_update +INFO: Parsed tables in scheme GFS_suite_interstitial_3 +INFO: Parsed tables in scheme GFS_suite_interstitial_4 +INFO: Parsed tables in scheme GFS_suite_interstitial_5 +INFO: Parsed tables in scheme mp_thompson_post +INFO: Parsed tables in scheme sfc_nst +INFO: Parsed tables in scheme sfc_nst_pre +INFO: Parsed tables in scheme sfc_nst_post +INFO: Parsed tables in scheme shalcnv +INFO: Parsed tables in scheme get_prs_fv3 +INFO: Parsed tables in scheme get_phi_fv3 +INFO: Parsed tables in scheme mynnsfc_wrapper +INFO: Parsed tables in scheme myjsfc_wrapper +INFO: Parsed tables in scheme mynnedmf_wrapper +INFO: Parsed tables in scheme lsm_ruc +INFO: Parsed tables in scheme mynnrad_pre +INFO: Parsed tables in scheme drag_suite +INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre +INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post +INFO: Parsed tables in scheme mynnrad_post +INFO: Parsed tables in scheme shoc +INFO: Parsed tables in scheme GFS_rrtmgp_pre +INFO: Parsed tables in scheme GFS_surface_composites_pre +INFO: Parsed tables in scheme GFS_surface_composites_inter +INFO: Parsed tables in scheme GFS_surface_composites_post +INFO: Parsed tables in scheme GFS_MP_generic_pre +INFO: Parsed tables in scheme GFS_MP_generic_post +INFO: Parsed tables in scheme zhaocarr_gscond +INFO: Parsed tables in scheme ozphys +INFO: Parsed tables in scheme GFS_phys_time_vary +INFO: Parsed tables in scheme ozphys_2015 +INFO: Parsed tables in scheme GFS_surface_generic_pre +INFO: Parsed tables in scheme GFS_surface_generic_post +INFO: Parsed tables in scheme cu_ntiedtke +INFO: Parsed tables in scheme rrtmgp_sw_rte +INFO: Parsed tables in scheme rrtmgp_lw_pre +INFO: Parsed tables in scheme GFS_rrtmg_post +INFO: Parsed tables in scheme GFS_rrtmgp_sw_post +INFO: Parsed tables in scheme GFS_PBL_generic_pre +INFO: Parsed tables in scheme GFS_PBL_generic_post +INFO: Parsed tables in scheme rrtmgp_sw_aerosol_optics +INFO: Parsed tables in scheme GFS_surface_loop_control_part1 +INFO: Parsed tables in scheme GFS_surface_loop_control_part2 +INFO: Parsed tables in scheme rrtmgp_lw_aerosol_optics +INFO: Parsed tables in scheme cnvc90 +INFO: Parsed tables in scheme maximum_hourly_diagnostics +INFO: Parsed tables in scheme rrtmg_sw +INFO: Parsed tables in scheme samfshalcnv +INFO: Parsed tables in scheme GFS_time_vary_pre +INFO: Parsed tables in scheme GFS_rrtmg_setup +INFO: Parsed tables in scheme rrtmgp_sw_gas_optics +INFO: Parsed tables in scheme rrtmg_sw_post +INFO: Parsed tables in scheme GFS_SCNV_generic_pre +INFO: Parsed tables in scheme GFS_SCNV_generic_post +INFO: Parsed tables in scheme satmedmfvdif +INFO: Parsed tables in scheme GFS_stochastics +INFO: Parsed tables in scheme rrtmgp_sw_cloud_sampling +INFO: Parsed tables in scheme shinhongvdif +INFO: Parsed tables in scheme h2ophys +INFO: Parsed tables in scheme hedmf +INFO: Parsed tables in scheme m_micro_pre +INFO: Parsed tables in scheme m_micro_post +INFO: Parsed tables in scheme fv_sat_adj +INFO: Parsed tables in scheme cu_gf_driver +INFO: Parsed tables in scheme samfdeepcnv +INFO: Parsed tables in scheme rrtmgp_lw_gas_optics +INFO: Parsed tables in scheme mp_thompson +INFO: Parsed tables in scheme rrtmg_lw_pre +INFO: Parsed tables in scheme cires_ugwp +INFO: Parsed tables in scheme rascnv +INFO: Parsed tables in scheme cs_conv_aw_adj +INFO: Parsed tables in scheme GFS_DCNV_generic_pre +INFO: Parsed tables in scheme GFS_DCNV_generic_post +INFO: Parsed tables in scheme GFS_rad_time_vary +INFO: Parsed tables in scheme GFS_rrtmgp_setup +INFO: filtering out variable GFS_stateout_type_instance +INFO: filtering out variable Gas_concentrations_for_RRTMGP_suite +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_0_55mu_band +INFO: filtering out variable RRTMGP_cloud_optical_depth_layers_at_10mu_band +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_lw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_lw_fluxes +INFO: filtering out variable RRTMGP_lw_heating_rate_spectral +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_downward_clrsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_allsky +INFO: filtering out variable RRTMGP_sw_flux_profile_upward_clrsky +INFO: filtering out variable RRTMGP_sw_fluxes +INFO: filtering out variable RRTMGP_sw_heating_rate_spectral +INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme +INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip +INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology +INFO: filtering out variable air_pressure_at_interface_for_RRTMGP_in_hPa +INFO: filtering out variable air_pressure_at_layer_for_RRTMGP_in_hPa +INFO: filtering out variable air_temperature_at_interface_for_RRTMGP +INFO: filtering out variable air_temperature_at_layer_for_RRTMGP +INFO: filtering out variable area_fraction_of_wet_canopy +INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface +INFO: filtering out variable atmosphere_energy_content_in_column +INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl +INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc +INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl +INFO: filtering out variable baseline_surface_roughness_length +INFO: filtering out variable canopy_air_temperature +INFO: filtering out variable canopy_air_vapor_pressure +INFO: filtering out variable canopy_intercepted_ice_mass +INFO: filtering out variable canopy_intercepted_liquid_water +INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface +INFO: filtering out variable ccn_number_concentration +INFO: filtering out variable ccpp_block_number +INFO: filtering out variable cell_area_for_fast_physics +INFO: filtering out variable cell_size +INFO: filtering out variable characteristic_grid_length_scale +INFO: filtering out variable chemical_tracers +INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL +INFO: filtering out variable cloud_area_fraction +INFO: filtering out variable cloud_base_mass_flux +INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer +INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface +INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_droplet_number_concentration +INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics +INFO: filtering out variable cloud_fraction_at_Lagrangian_surface +INFO: filtering out variable cloud_fraction_for_MG +INFO: filtering out variable cloud_fraction_updated_by_physics +INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_phase_transition_denominator +INFO: filtering out variable cloud_phase_transition_threshold_temperature +INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable cloud_specie_mix_flag +INFO: filtering out variable cloudpdf +INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras +INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras +INFO: filtering out variable coefficients_for_lw_cloud_optics +INFO: filtering out variable coefficients_for_lw_gas_optics +INFO: filtering out variable coefficients_for_sw_cloud_optics +INFO: filtering out variable coefficients_for_sw_gas_optics +INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers +INFO: filtering out variable conv_activity_counter +INFO: filtering out variable convective_updraft_area_fraction +INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces +INFO: filtering out variable couple_sgs_clouds_to_radiation_flag +INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable density_of_frozen_precipitation +INFO: filtering out variable depth_of_soil_levels_for_land_surface_model +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS +INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS +INFO: filtering out variable dimensionless_exner_function_at_model_interfaces +INFO: filtering out variable directory_for_rte_rrtmgp_source_code +INFO: filtering out variable do_myjsfc +INFO: filtering out variable do_mynnsfclay +INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable edmf_flag +INFO: filtering out variable edmf_momentum_transport_flag +INFO: filtering out variable edmf_partition_flag +INFO: filtering out variable edmf_tke_transport_flag +INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um +INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um +INFO: filtering out variable emdf_updraft_area +INFO: filtering out variable emdf_updraft_cloud_water +INFO: filtering out variable emdf_updraft_entrainment_rate +INFO: filtering out variable emdf_updraft_theta_l +INFO: filtering out variable emdf_updraft_total_water +INFO: filtering out variable emdf_updraft_vertical_velocity +INFO: filtering out variable ending_x_direction_index +INFO: filtering out variable ending_x_direction_index_domain +INFO: filtering out variable ending_y_direction_index +INFO: filtering out variable ending_y_direction_index_domain +INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS +INFO: filtering out variable equilibrium_soil_water_content +INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation +INFO: filtering out variable fast_soil_pool_mass_content_of_carbon +INFO: filtering out variable fine_root_mass +INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa +INFO: filtering out variable flag_arakawa_wu_downdraft +INFO: filtering out variable flag_convective_tracer_transport +INFO: filtering out variable flag_flip +INFO: filtering out variable flag_flux_form_CS +INFO: filtering out variable flag_for_2015_ozone_physics +INFO: filtering out variable flag_for_canopy_stomatal_resistance_option +INFO: filtering out variable flag_for_cloud_effective_radii +INFO: filtering out variable flag_for_dynamic_vegetation_option +INFO: filtering out variable flag_for_fast_microphysics_energy_conservation +INFO: filtering out variable flag_for_frozen_soil_permeability_option +INFO: filtering out variable flag_for_frozen_soil_physics +INFO: filtering out variable flag_for_ground_snow_surface_albedo_option +INFO: filtering out variable flag_for_hydrostatic_heating_from_physics +INFO: filtering out variable flag_for_hydrostatic_solver +INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics +INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics +INFO: filtering out variable flag_for_individual_cloud_species_advected +INFO: filtering out variable flag_for_inline_cloud_fraction_calculation +INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option +INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme +INFO: filtering out variable flag_for_precipitation_partition_option +INFO: filtering out variable flag_for_radiation_transfer_option +INFO: filtering out variable flag_for_reading_leaf_area_index_from_input +INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation +INFO: filtering out variable flag_for_restart +INFO: filtering out variable flag_for_runoff_and_groundwater_option +INFO: filtering out variable flag_for_sas_deep_convection_scheme +INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics +INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option +INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option +INFO: filtering out variable flag_for_supercooled_liquid_water_option +INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option +INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping +INFO: filtering out variable flag_mg3_as_mg2 +INFO: filtering out variable flag_skip_macro +INFO: filtering out variable fraction_of_cloud_top_water_scavenged +INFO: filtering out variable fraction_of_tracer_scavenged +INFO: filtering out variable gas_constants_for_multi_gases_physics +INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface +INFO: filtering out variable gf_memory_counter +INFO: filtering out variable graupel_mixing_ratio_updated_by_physics +INFO: filtering out variable graupel_number_concentration_updated_by_physics +INFO: filtering out variable grav_settling +INFO: filtering out variable ground_temperature_for_noahmp +INFO: filtering out variable gwd_opt +INFO: filtering out variable h2o_forcing +INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable ice_friendly_aerosol_number_concentration +INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable ice_number_concentration +INFO: filtering out variable ice_number_concentration_updated_by_physics +INFO: filtering out variable ice_supersaturation_threshold +INFO: filtering out variable ice_water_mixing_ratio +INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics +INFO: filtering out variable in_number_concentration +INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer +INFO: filtering out variable initial_permutation_seed_lw +INFO: filtering out variable initial_permutation_seed_sw +INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_x_momentum_flux_from_form_drag +INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag +INFO: filtering out variable integrated_y_momentum_flux_from_form_drag +INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd +INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd +INFO: filtering out variable k_level_of_highest_reaching_plume +INFO: filtering out variable kappa_dry_for_fast_physics +INFO: filtering out variable kinematic_buoyancy_flux_from_shoc +INFO: filtering out variable kinematic_surface_latent_heat_flux +INFO: filtering out variable lake_water_storage +INFO: filtering out variable latitude_index_in_debug_printouts +INFO: filtering out variable layer_bottom_depth_from_snow_surface +INFO: filtering out variable leaf_area_index +INFO: filtering out variable leaf_mass +INFO: filtering out variable limit_for_temperature_tendency_for_microphysics +INFO: filtering out variable liquid_water_density +INFO: filtering out variable list_of_active_gases_used_by_RRTMGP +INFO: filtering out variable local_graupel_mixing_ratio +INFO: filtering out variable local_graupel_number_concentration +INFO: filtering out variable local_rain_number_concentration +INFO: filtering out variable local_rain_water_mixing_ratio +INFO: filtering out variable local_snow_number_concentration +INFO: filtering out variable local_snow_water_mixing_ratio +INFO: filtering out variable log_pressure_at_Lagrangian_surface +INFO: filtering out variable longwave_optical_properties_for_aerosols +INFO: filtering out variable longwave_optical_properties_for_clear_sky +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable longwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable longwave_source_function +INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics +INFO: filtering out variable maximum_column_heating_rate +INFO: filtering out variable maximum_mass_flux +INFO: filtering out variable maximum_updraft_velocity_at_cloud_base +INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency +INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency +INFO: filtering out variable mg_allow_supersat_after_sed +INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow +INFO: filtering out variable mg_bergeron_efficiency_factor +INFO: filtering out variable mg_cloud_water_variance +INFO: filtering out variable mg_drop_concentration_constant +INFO: filtering out variable mg_flag_drop_concentration_constant +INFO: filtering out variable mg_flag_for_cloud_ice_processes +INFO: filtering out variable mg_flag_for_gmao_ice_formulation +INFO: filtering out variable mg_flag_for_graupel +INFO: filtering out variable mg_flag_for_hail +INFO: filtering out variable mg_flag_for_heterogeneous_freezing +INFO: filtering out variable mg_flag_for_liu_liquid_treatment +INFO: filtering out variable mg_flag_for_sb2001_autoconversion +INFO: filtering out variable mg_flag_for_uniform_subcolumns +INFO: filtering out variable mg_flag_graupel_concentration_constant +INFO: filtering out variable mg_flag_ice_concentration_constant +INFO: filtering out variable mg_graupel_concentration_constant +INFO: filtering out variable mg_ice_concentration_constant +INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio +INFO: filtering out variable mg_minimum_rh_for_ice +INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice +INFO: filtering out variable mg_tuning_factor_for_alphas +INFO: filtering out variable mg_type_of_precip_fraction_method +INFO: filtering out variable minimum_value_of_specific_humidity +INFO: filtering out variable mix_total_water_flag +INFO: filtering out variable mixing_length +INFO: filtering out variable mixing_length_flag +INFO: filtering out variable moisture_from_previous_timestep +INFO: filtering out variable moisture_tendency_due_to_dynamics +INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes +INFO: filtering out variable mpi_comm +INFO: filtering out variable mpi_rank_for_fast_physics +INFO: filtering out variable mpi_root_for_fast_physics +INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction +INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels +INFO: filtering out variable nondimensional_snow_age +INFO: filtering out variable normalized_soil_wetness_for_land_surface_model +INFO: filtering out variable number_of_active_gases_used_by_RRTMGP +INFO: filtering out variable number_of_aerosol_tracers_MG +INFO: filtering out variable number_of_angles_used_in_gaussian_quadrature +INFO: filtering out variable number_of_cloud_types_CS +INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data +INFO: filtering out variable number_of_frozen_precipitation_species +INFO: filtering out variable number_of_gases_for_multi_gases_physics +INFO: filtering out variable number_of_ghost_zones +INFO: filtering out variable number_of_plumes +INFO: filtering out variable number_of_rrtmgp_ice_roughness +INFO: filtering out variable number_of_snow_layers +INFO: filtering out variable number_of_spectral_wave_trancation_for_sas +INFO: filtering out variable number_of_tracers_for_CS +INFO: filtering out variable number_of_tracers_plus_one +INFO: filtering out variable number_of_water_species +INFO: filtering out variable omp_threads_for_fast_physics +INFO: filtering out variable ozone_mixing_ratio +INFO: filtering out variable potential_temperature_at_2m +INFO: filtering out variable potential_temperature_at_viscous_sublayer_top +INFO: filtering out variable prandtl_number +INFO: filtering out variable pressure_thickness_at_Lagrangian_surface +INFO: filtering out variable q_prime_squared +INFO: filtering out variable rain_number_concentration_updated_by_physics +INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics +INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind +INFO: filtering out variable reciprocal_of_obukhov_length +INFO: filtering out variable relative_humidity +INFO: filtering out variable rrtmgp_cloud_optics_flag +INFO: filtering out variable rrtmgp_coeff_lw_cloud_optics +INFO: filtering out variable rrtmgp_coeff_sw_cloud_optics +INFO: filtering out variable rrtmgp_kdistribution_lw +INFO: filtering out variable rrtmgp_kdistribution_sw +INFO: filtering out variable secant_of_diffusivity_angle_each_RRTMGP_LW_band +INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation +INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term +INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter +INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface +INFO: filtering out variable shortwave_optical_properties_for_aerosols +INFO: filtering out variable shortwave_optical_properties_for_clear_sky +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere +INFO: filtering out variable shortwave_optical_properties_for_cloudy_atmosphere_by_band +INFO: filtering out variable slow_soil_pool_mass_content_of_carbon +INFO: filtering out variable snow_albedo_at_previous_time_step +INFO: filtering out variable snow_layer_ice +INFO: filtering out variable snow_layer_liquid_water +INFO: filtering out variable snow_mass_at_previous_time_step +INFO: filtering out variable snow_number_concentration_updated_by_physics +INFO: filtering out variable snow_precipitation_rate_at_surface +INFO: filtering out variable snow_temperature +INFO: filtering out variable snow_temperature_bottom_first_layer +INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics +INFO: filtering out variable soil_temperature_for_land_surface_model +INFO: filtering out variable soil_vertical_dimension_for_land_surface_model +INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table +INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics +INFO: filtering out variable specific_heat_of_ice_at_constant_pressure +INFO: filtering out variable specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable stability_function_for_heat +INFO: filtering out variable starting_x_direction_index +INFO: filtering out variable starting_x_direction_index_domain +INFO: filtering out variable starting_y_direction_index +INFO: filtering out variable starting_y_direction_index_domain +INFO: filtering out variable stem_area_index +INFO: filtering out variable stem_mass +INFO: filtering out variable subgrid_cloud_fraction_pbl +INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl +INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc +INFO: filtering out variable surface_albedo_nearIR_diffuse +INFO: filtering out variable surface_albedo_nearIR_direct +INFO: filtering out variable surface_albedo_uvvis_dif +INFO: filtering out variable surface_albedo_uvvis_dir +INFO: filtering out variable surface_condensation_mass +INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp +INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp +INFO: filtering out variable surface_emissivity_in_each_RRTMGP_LW_band +INFO: filtering out variable surface_exchange_coefficient_for_heat +INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m +INFO: filtering out variable surface_exchange_coefficient_for_moisture +INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m +INFO: filtering out variable surface_friction_velocity_drag +INFO: filtering out variable surface_geopotential_at_Lagrangian_surface +INFO: filtering out variable surface_latent_heat +INFO: filtering out variable surface_layer_evaporation_switch +INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes +INFO: filtering out variable surface_stability_parameter +INFO: filtering out variable t_prime_q_prime +INFO: filtering out variable t_prime_squared +INFO: filtering out variable temperature_from_previous_timestep +INFO: filtering out variable temperature_tendency_due_to_dynamics +INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface +INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics +INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface +INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics +INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag +INFO: filtering out variable theta_star +INFO: filtering out variable thickness_at_Lagrangian_surface +INFO: filtering out variable time_step_for_remapping_for_fast_physics +INFO: filtering out variable tke_advect +INFO: filtering out variable tke_at_mass_points +INFO: filtering out variable tke_budget +INFO: filtering out variable tke_dissipative_heating_factor +INFO: filtering out variable toa_incident_sw_flux_by_spectral_point +INFO: filtering out variable top_layer_index_for_fast_physics +INFO: filtering out variable total_accumulated_snowfall +INFO: filtering out variable triple_point_temperature_of_water +INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer +INFO: filtering out variable u_wind_component_at_viscous_sublayer_top +INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme +INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS +INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS +INFO: filtering out variable v_wind_component_at_viscous_sublayer_top +INFO: filtering out variable vegetation_temperature +INFO: filtering out variable vertical_dimension_for_fast_physics +INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface +INFO: filtering out variable vertical_dimension_of_h2o_forcing_data +INFO: filtering out variable virtual_temperature +INFO: filtering out variable virtual_temperature_at_Lagrangian_surface +INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model +INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model +INFO: filtering out variable water_friendly_aerosol_number_concentration +INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics +INFO: filtering out variable water_storage_in_aquifer +INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil +INFO: filtering out variable water_table_depth +INFO: filtering out variable water_table_recharge_when_deep +INFO: filtering out variable water_table_recharge_when_shallow +INFO: filtering out variable water_vapor_mixing_ratio_at_surface +INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface +INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top +INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top +INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top +INFO: filtering out variable wood_mass +INFO: filtering out variable x_momentum_tendency_from_blocking_drag +INFO: filtering out variable x_momentum_tendency_from_form_drag +INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_blocking_drag +INFO: filtering out variable y_momentum_tendency_from_form_drag +INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd +INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd +INFO: Checking optional arguments in physics schemes ... +INFO: Metadata table for model FV3 written to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex +INFO: Comparing metadata for requested and provided variables ... +INFO: Generating list of Fortran modules containing CCPP type definitions ... +INFO: Generating typedefs makefile/cmakefile snippet ... +INFO: Added 10 typedefs to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_TYPEDEFS.sh +INFO: Generating schemes makefile/cmakefile snippet ... +INFO: Added 215 schemes to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.mk, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_SCHEMES.sh +INFO: Generating suite and group caps ... +INFO: Generating static API ccpp_static_api.F90 in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics ... +INFO: Generating caps makefile/cmakefile snippet ... +INFO: Added 5 auto-generated caps to /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.mk and /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.cmake, /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/CCPP_CAPS.sh +INFO: CCPP prebuild step completed successfully. ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ ./build_ccpp.sh hera.intel /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk 'CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp' NO NO +MACHINE_ID=hera.intel is valid. +Compilers set for hera.intel. +Obtained ESMF_LIB=/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib from /scratch2/NCEPDEV/nwprod/NCEPLIBS/src/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib/esmf.mk +Building CCPP with options '-DCMAKE_INSTALL_PREFIX=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -DNETCDF_DIR=/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DOPENMP=ON -DDYN32=OFF -DMULTI_GASES=OFF -DLEGACY_INTEL=OFF' ... +-- The C compiler identification is Intel 18.0.5.20180823 +-- The CXX compiler identification is Intel 18.0.5.20180823 +-- The Fortran compiler identification is Intel 18.0.5.20180823 +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc +-- Check for working C compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicc -- works +-- Detecting C compiler ABI info +-- Detecting C compiler ABI info - done +-- Detecting C compile features +-- Detecting C compile features - done +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc +-- Check for working CXX compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiicpc -- works +-- Detecting CXX compiler ABI info +-- Detecting CXX compiler ABI info - done +-- Detecting CXX compile features +-- Detecting CXX compile features - done +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort +-- Check for working Fortran compiler: /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -- works +-- Detecting Fortran compiler ABI info +-- Detecting Fortran compiler ABI info - done +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 +-- Checking whether /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort supports Fortran 90 -- yes +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Disable SIONlib support +-- Disable Intel MKL support +-- Enable netCDF support +-- Disable ESMF support +-- Disable multi-gases physics +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot +-- Detecting OpenMP flags for Intel C compiler: -qopenmp +-- Detecting OpenMP flags for Intel C++ compiler: -qopenmp +-- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp +-- Enable OpenMP support for C/C++/Fortran compiler +-- Got CCPP TYPEDEFS from cmakefile include file: gfs_typedefs.mod;mo_cloud_optics.mod;mo_optical_props.mod;ccpp_typedefs.mod;mo_gas_concentrations.mod;machine.mod;mo_source_functions.mod;module_radlw_parameters.mod;module_radsw_parameters.mod;mo_gas_optics_rrtmgp.mod +-- Got CCPP SCHEMES from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 +-- Got CCPP CAPS from cmakefile include file: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 +-- Configuring done +-- Generating done +CMake Warning: + Manually-specified variables were not used by the project: + + LEGACY_INTEL + + +-- Build files have been written to: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/depend.internal". +Scanning dependencies of target ccpp +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_types.F90 -o CMakeFiles/ccpp.dir/ccpp_types.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_types.mod framework/src/CMakeFiles/ccpp.dir/ccpp_types.mod.stamp Intel +[ 0%] Building Fortran object framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -qopenmp -DRELEASE -O2 -fPIC -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src/ccpp_api.F90 -o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod framework/src/ccpp_api.mod framework/src/CMakeFiles/ccpp.dir/ccpp_api.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o.provides.build +[ 1%] Linking Fortran static library libccpp.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccpp.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccpp.dir/link.txt --verbose=1 +/usr/bin/ar qc libccpp.a CMakeFiles/ccpp.dir/ccpp_types.F90.o CMakeFiles/ccpp.dir/ccpp_api.F90.o +/usr/bin/ranlib libccpp.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Dependee "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/CMakeDirectoryInformation.cmake" is newer than depender "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/depend.internal". +Scanning dependencies of target ccppphys +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/machine.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/machine.F -o CMakeFiles/ccppphys.dir/physics/machine.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/machine.mod physics/CMakeFiles/ccppphys.dir/machine.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physcons.F90 -o CMakeFiles/ccppphys.dir/physics/physcons.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physcons.mod physics/CMakeFiles/ccppphys.dir/physcons.mod.stamp Intel +[ 2%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_common.mod physics/CMakeFiles/ccppphys.dir/ugwp_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_conv_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_conv_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_fjet_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_fjet_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_lsatdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_lsatdis_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_okw_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_okw_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_oro_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_oro_init.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ugwp_wmsdis_init.mod physics/CMakeFiles/ccppphys.dir/ugwp_wmsdis_init.mod.stamp Intel +[ 3%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_module.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_module.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_module.mod.stamp Intel +[ 4%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdps.f -o CMakeFiles/ccppphys.dir/physics/gwdps.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdps.mod physics/CMakeFiles/ccppphys.dir/gwdps.mod.stamp Intel +[ 5%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_post.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cires_ugwp_post.mod physics/CMakeFiles/ccppphys.dir/cires_ugwp_post.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cnvc90.f -o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cnvc90.mod physics/CMakeFiles/ccppphys.dir/cnvc90.mod.stamp Intel +[ 6%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/dcyc2.f -o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/dcyc2t3.mod physics/CMakeFiles/ccppphys.dir/dcyc2t3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/get_prs_fv3.F90 -o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_phi_fv3.mod physics/CMakeFiles/ccppphys.dir/get_phi_fv3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/get_prs_fv3.mod physics/CMakeFiles/ccppphys.dir/get_prs_fv3.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_dcnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_dcnv_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_GWD_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_gwd_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_gwd_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_MP_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_mp_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_mp_generic_pre.mod.stamp Intel +[ 7%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_PBL_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_scnv_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_scnv_generic_pre.mod.stamp Intel +[ 8%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mersenne_twister.f -o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mersenne_twister.mod physics/CMakeFiles/ccppphys.dir/mersenne_twister.mod.stamp Intel +[ 9%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_kind.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_kind.mod physics/CMakeFiles/ccppphys.dir/mo_rte_kind.mod.stamp Intel +[ 10%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props_kernels.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_util_array.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_util_array.mod physics/CMakeFiles/ccppphys.dir/mo_rte_util_array.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_optical_props.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_optical_props.mod physics/CMakeFiles/ccppphys.dir/mo_optical_props.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_optics.mod.stamp Intel +[ 11%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_string.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_string.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_concentrations.mod physics/CMakeFiles/ccppphys.dir/mo_gas_concentrations.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_source_functions.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_source_functions.mod physics/CMakeFiles/ccppphys.dir/mo_source_functions.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_kernels.mod.stamp Intel +[ 12%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_constants.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_constants.mod.stamp Intel +[ 13%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder_kernels.mod.stamp Intel +[ 14%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_util_reorder.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_util_reorder.mod.stamp Intel +[ 15%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_gas_optics_rrtmgp.mod physics/CMakeFiles/ccppphys.dir/mo_gas_optics_rrtmgp.mod.stamp Intel +[ 16%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/physparam.f -o CMakeFiles/ccppphys.dir/physics/physparam.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/physparam.mod physics/CMakeFiles/ccppphys.dir/physparam.mod.stamp Intel +[ 17%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_param.f -o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radlw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_param.f -o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_parameters.mod physics/CMakeFiles/ccppphys.dir/module_radsw_parameters.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90 -o CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/parse_tracers.mod physics/CMakeFiles/ccppphys.dir/parse_tracers.mod.stamp Intel +[ 18%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_typedefs.mod physics/CMakeFiles/ccppphys.dir/gfs_typedefs.mod.stamp Intel +[ 19%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_1.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_2.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_2.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_3.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_3.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_4.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_4.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_phys_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_phys_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_reset.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_stateout_update.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_stateout_update.mod.stamp Intel +[ 20%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_composites.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_inter.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_inter.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_composites_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_composites_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/surface_perturbation.F90 -o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/surface_perturbation.mod physics/CMakeFiles/ccppphys.dir/surface_perturbation.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_generic.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_post.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_generic_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_generic_pre.mod.stamp Intel +[ 21%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part1.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part1.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_surface_loop_control_part2.mod physics/CMakeFiles/ccppphys.dir/gfs_surface_loop_control_part2.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/funcphys.f90 -o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/funcphys.mod physics/CMakeFiles/ccppphys.dir/funcphys.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf.f -o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf.mod physics/CMakeFiles/ccppphys.dir/hedmf.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg.f -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg.f -o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_mod.mod.stamp Intel +[ 22%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_noah.mod physics/CMakeFiles/ccppphys.dir/lsm_noah.mod.stamp Intel +[ 23%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90 -o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/maximum_hourly_diagnostics.mod physics/CMakeFiles/ccppphys.dir/maximum_hourly_diagnostics.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys.f -o CMakeFiles/ccppphys.dir/physics/ozphys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys.mod physics/CMakeFiles/ccppphys.dir/ozphys.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rayleigh_damp.f -o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rayleigh_damp.mod physics/CMakeFiles/ccppphys.dir/rayleigh_damp.mod.stamp Intel +[ 24%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfaerosols.F -o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfcnv_aerosols.mod physics/CMakeFiles/ccppphys.dir/samfcnv_aerosols.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfdeepcnv.f -o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfdeepcnv.mod physics/CMakeFiles/ccppphys.dir/samfdeepcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/samfshalcnv.f -o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/samfshalcnv.mod physics/CMakeFiles/ccppphys.dir/samfshalcnv.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag.f -o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag.mod physics/CMakeFiles/ccppphys.dir/sfc_diag.mod.stamp Intel +[ 25%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diag_post.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diag_post.mod physics/CMakeFiles/ccppphys.dir/sfc_diag_post.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_diff.f -o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_diff.mod physics/CMakeFiles/ccppphys.dir/sfc_diff.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/date_def.f -o CMakeFiles/ccppphys.dir/physics/date_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/date_def.mod physics/CMakeFiles/ccppphys.dir/date_def.mod.stamp Intel +[ 26%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_parameters.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_parameters.mod physics/CMakeFiles/ccppphys.dir/module_nst_parameters.mod.stamp Intel +[ 27%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_water_prop.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_nst_water_prop.mod physics/CMakeFiles/ccppphys.dir/module_nst_water_prop.mod.stamp Intel +[ 28%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_nst_model.f90 -o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/nst_module.mod physics/CMakeFiles/ccppphys.dir/nst_module.mod.stamp Intel +[ 29%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_nst.f -o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst.mod physics/CMakeFiles/ccppphys.dir/sfc_nst.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_post.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_nst_pre.mod physics/CMakeFiles/ccppphys.dir/sfc_nst_pre.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_sice.f -o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_sice.mod physics/CMakeFiles/ccppphys.dir/sfc_sice.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gscond.f -o CMakeFiles/ccppphys.dir/physics/gscond.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_gscond.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_gscond.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/precpd.f -o CMakeFiles/ccppphys.dir/physics/precpd.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/zhaocarr_precpd.mod physics/CMakeFiles/ccppphys.dir/zhaocarr_precpd.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_physics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_physics_cap.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerclm_def.F -o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerclm_def.mod physics/CMakeFiles/ccppphys.dir/aerclm_def.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iounitdef.f -o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_iounitdef.mod physics/CMakeFiles/ccppphys.dir/module_iounitdef.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX-I -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_aerosols.f -o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_aerosols.mod physics/CMakeFiles/ccppphys.dir/module_radiation_aerosols.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_post.mod.stamp Intel +[ 30%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_astronomy.f -o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_astronomy.mod physics/CMakeFiles/ccppphys.dir/module_radiation_astronomy.mod.stamp Intel +[ 31%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bfmicrophysics.f -o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_microphysics.mod physics/CMakeFiles/ccppphys.dir/module_microphysics.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_clouds.f -o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_clouds.mod physics/CMakeFiles/ccppphys.dir/module_radiation_clouds.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozne_def.f -o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozne_def.mod physics/CMakeFiles/ccppphys.dir/ozne_def.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_gases.f -o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_gases.mod physics/CMakeFiles/ccppphys.dir/module_radiation_gases.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radcons.f90 -o CMakeFiles/ccppphys.dir/physics/radcons.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/radcons.mod physics/CMakeFiles/ccppphys.dir/radcons.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_rad_reset.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_rad_reset.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_avplank.mod physics/CMakeFiles/ccppphys.dir/module_radlw_avplank.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_cldprlw.mod physics/CMakeFiles/ccppphys.dir/module_radlw_cldprlw.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb01.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb01.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb02.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb02.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb03.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb03.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb04.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb04.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb05.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb05.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb06.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb06.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb07.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb07.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb08.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb08.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb09.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb09.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb10.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb10.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb11.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb11.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb12.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb12.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb13.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb13.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb14.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb14.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb15.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb15.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radlw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radlw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radlw_ref.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radlw_main.f -o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw.mod.stamp Intel +[ 32%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_post.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radiation_surface.f -o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radiation_surface.mod physics/CMakeFiles/ccppphys.dir/module_radiation_surface.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_lw_pre.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_datatb.f -o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_cldprtb.mod physics/CMakeFiles/ccppphys.dir/module_radsw_cldprtb.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb16.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb16.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb17.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb17.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb18.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb18.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb19.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb19.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb20.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb20.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb21.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb21.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb22.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb22.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb23.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb23.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb24.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb24.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb25.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb25.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb26.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb26.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb27.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb27.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb28.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb28.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_kgb29.mod physics/CMakeFiles/ccppphys.dir/module_radsw_kgb29.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_ref.mod physics/CMakeFiles/ccppphys.dir/module_radsw_ref.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_radsw_sflux.mod physics/CMakeFiles/ccppphys.dir/module_radsw_sflux.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/radsw_main.f -o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw.mod.stamp Intel +[ 33%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_post.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_post.mod.stamp Intel +[ 34%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmg_sw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmg_sw_pre.mod.stamp Intel +[ 35%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_radiation_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_radiation_cap.mod.stamp Intel +[ 36%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_stochastics.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_stochastics.mod physics/CMakeFiles/ccppphys.dir/gfs_stochastics.mod.stamp Intel +[ 37%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_stochastics_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_stochastics_cap.mod.stamp Intel +[ 38%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aerinterp.F90 -o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aerinterp.mod physics/CMakeFiles/ccppphys.dir/aerinterp.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2o_def.f -o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2o_def.mod physics/CMakeFiles/ccppphys.dir/h2o_def.mod.stamp Intel +[ 39%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ointerp.f90 -o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ointerp.mod physics/CMakeFiles/ccppphys.dir/h2ointerp.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccn_def.F -o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccn_def.mod physics/CMakeFiles/ccppphys.dir/iccn_def.mod.stamp Intel +[ 40%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/iccninterp.F90 -o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/iccninterp.mod physics/CMakeFiles/ccppphys.dir/iccninterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozinterp.f90 -o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozinterp.mod physics/CMakeFiles/ccppphys.dir/ozinterp.mod.stamp Intel +[ 41%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phys_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_phys_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rad_time_vary.mod physics/CMakeFiles/ccppphys.dir/gfs_rad_time_vary.mod.stamp Intel +[ 42%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmg_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmg_setup.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_time_vary_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_time_vary_pre.mod.stamp Intel +[ 43%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_time_vary_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_time_vary_cap.mod.stamp Intel +[ 44%] Building Fortran object physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -check nopointers,nobounds -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90 -o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_fv3_gfs_2017_cap.mod physics/CMakeFiles/ccppphys.dir/ccpp_fv3_gfs_2017_cap.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_pbl_generic_common.mod physics/CMakeFiles/ccppphys.dir/gfs_pbl_generic_common.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_debug.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_abort.mod physics/CMakeFiles/ccppphys.dir/gfs_abort.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_checkland.mod physics/CMakeFiles/ccppphys.dir/gfs_checkland.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_diagtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_diagtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_interstitialtoscreen.mod physics/CMakeFiles/ccppphys.dir/gfs_interstitialtoscreen.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o.provides.build +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_broadband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_broadband_kernels.mod.stamp Intel +[ 45%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_fluxes.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband_kernels.mod.stamp Intel +[ 46%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_byband.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_byband.mod.stamp Intel +[ 47%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_heating_rates.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_heating_rates.mod physics/CMakeFiles/ccppphys.dir/mo_heating_rates.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_aux.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_aux.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_aux.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_lw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_lw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_lw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_lw_cloud_optics.mod.stamp Intel +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o.provides.build +[ 48%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_setup.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_setup.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_setup.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_post.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_post.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_rrtmgp_sw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_rrtmgp_sw_pre.mod physics/CMakeFiles/ccppphys.dir/gfs_rrtmgp_sw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o.provides.build +[ 49%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90 -o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_ini_fini_test.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_ini_fini_test.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_suite_interstitial_5.mod physics/CMakeFiles/ccppphys.dir/gfs_suite_interstitial_5.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o.provides.build +[ 50%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/aer_cloud.F -o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/aer_cloud.mod physics/CMakeFiles/ccppphys.dir/aer_cloud.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o.provides.build +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/wv_saturation.F -o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/wv_saturation.mod physics/CMakeFiles/ccppphys.dir/wv_saturation.mod.stamp Intel +[ 51%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldmacro.F -o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldmacro.mod physics/CMakeFiles/ccppphys.dir/cldmacro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o.provides.build +[ 52%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cldwat2m_micro.F -o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cldwat2m_micro.mod physics/CMakeFiles/ccppphys.dir/cldwat2m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o.provides.build +[ 53%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv.mod physics/CMakeFiles/ccppphys.dir/cs_conv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_post.mod physics/CMakeFiles/ccppphys.dir/cs_conv_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_pre.mod physics/CMakeFiles/ccppphys.dir/cs_conv_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90 -o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cs_conv_aw_adj.mod physics/CMakeFiles/ccppphys.dir/cs_conv_aw_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o.provides.build +[ 54%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_deep.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_deep.mod physics/CMakeFiles/ccppphys.dir/cu_gf_deep.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o.provides.build +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_sh.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_sh.mod physics/CMakeFiles/ccppphys.dir/cu_gf_sh.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson_make_number_concentrations.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson_make_number_concentrations.mod.stamp Intel +[ 55%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o.provides.build +[ 56%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_post.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o.provides.build +[ 57%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_gf_driver_pre.mod physics/CMakeFiles/ccppphys.dir/cu_gf_driver_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o.provides.build +[ 58%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_post.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90 -o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/cu_ntiedtke_pre.mod physics/CMakeFiles/ccppphys.dir/cu_ntiedtke_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o.provides.build +[ 59%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/drag_suite.F90 -o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/drag_suite.mod physics/CMakeFiles/ccppphys.dir/drag_suite.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcm_shoc.F90 -o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shoc.mod physics/CMakeFiles/ccppphys.dir/shoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o.provides.build +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_radar.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_radar.mod physics/CMakeFiles/ccppphys.dir/module_mp_radar.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys_mod.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys_mod.mod.stamp Intel +[ 60%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfdl_cloud_microphys.mod physics/CMakeFiles/ccppphys.dir/gfdl_cloud_microphys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o.provides.build +[ 61%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90 -o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/fv_sat_adj.mod physics/CMakeFiles/ccppphys.dir/fv_sat_adj.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F -o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gfs_phy_tracer_config.mod physics/CMakeFiles/ccppphys.dir/gfs_phy_tracer_config.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o.provides.build +[ 62%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gwdc.f -o CMakeFiles/ccppphys.dir/physics/gwdc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc.mod physics/CMakeFiles/ccppphys.dir/gwdc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_post.mod physics/CMakeFiles/ccppphys.dir/gwdc_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/gwdc_pre.mod physics/CMakeFiles/ccppphys.dir/gwdc_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o.provides.build +[ 63%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/h2ophys.f -o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/h2ophys.mod physics/CMakeFiles/ccppphys.dir/h2ophys.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_post.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc_sfc_sice_pre.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc_sfc_sice_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o.provides.build +[ 64%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg_utils.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg_utils.mod physics/CMakeFiles/ccppphys.dir/micro_mg_utils.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg2_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg2_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg2_0.mod.stamp Intel +[ 65%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/micro_mg3_0.F90 -o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/micro_mg3_0.mod physics/CMakeFiles/ccppphys.dir/micro_mg3_0.mod.stamp Intel +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro.mod physics/CMakeFiles/ccppphys.dir/m_micro.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/m_micro_interstitial.F90 -o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_post.mod physics/CMakeFiles/ccppphys.dir/m_micro_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/m_micro_pre.mod physics/CMakeFiles/ccppphys.dir/m_micro_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/machine.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o.provides.build +[ 66%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90 -o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_myjpbl.mod physics/CMakeFiles/ccppphys.dir/module_bl_myjpbl.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90 -o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/module_mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o.provides.build +[ 67%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjpbl_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjpbl_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o.provides.build +[ 68%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_SF_JSFC.F90 -o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_jsfc.mod physics/CMakeFiles/ccppphys.dir/module_sf_jsfc.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/myjsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/myjsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_bl_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_bl_mynn.mod physics/CMakeFiles/ccppphys.dir/module_bl_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnedmf_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnedmf_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_mynn.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_mynn.mod physics/CMakeFiles/ccppphys.dir/module_sf_mynn.mod.stamp Intel +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnsfc_wrapper.mod physics/CMakeFiles/ccppphys.dir/mynnsfc_wrapper.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o.provides.build +[ 69%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_post.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_post.mod physics/CMakeFiles/ccppphys.dir/mynnrad_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o.provides.build +[ 70%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mynnrad_pre.mod physics/CMakeFiles/ccppphys.dir/mynnrad_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o.provides.build +[ 71%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_mp_thompson.mod physics/CMakeFiles/ccppphys.dir/module_mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmp_glacier.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmp_glacier.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_globals.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_globals.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_glacier_routines.mod physics/CMakeFiles/ccppphys.dir/noahmp_glacier_routines.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90 -o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_noahmplsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_noahmplsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/namelist_soilveg_ruc.mod physics/CMakeFiles/ccppphys.dir/namelist_soilveg_ruc.mod.stamp Intel +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_sf_ruclsm.F90 -o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_sf_ruclsm.mod physics/CMakeFiles/ccppphys.dir/module_sf_ruclsm.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/module_soil_pre.F90 -o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/module_soil_pre.mod physics/CMakeFiles/ccppphys.dir/module_soil_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninedmf_hafs.f -o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/hedmf_hafs.mod physics/CMakeFiles/ccppphys.dir/hedmf_hafs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/moninshoc.f -o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/moninshoc.mod physics/CMakeFiles/ccppphys.dir/moninshoc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o.provides.build +[ 72%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_fer_hires.F90 -o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_fer_hires.mod physics/CMakeFiles/ccppphys.dir/mp_fer_hires.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson.mod physics/CMakeFiles/ccppphys.dir/mp_thompson.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_post.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_post.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_post.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mp_thompson_pre.F90 -o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mp_thompson_pre.mod physics/CMakeFiles/ccppphys.dir/mp_thompson_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/multi_gases.F90 -o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_multi_gases_mod.mod physics/CMakeFiles/ccppphys.dir/ccpp_multi_gases_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o.provides.build +[ 73%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/noahmp_tables.f90 -o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmp_tables.mod physics/CMakeFiles/ccppphys.dir/noahmp_tables.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ozphys_2015.f -o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ozphys_2015.mod physics/CMakeFiles/ccppphys.dir/ozphys_2015.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rascnv.F90 -o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rascnv.mod physics/CMakeFiles/ccppphys.dir/rascnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o.provides.build +[ 74%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmg_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmg_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmg_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o.provides.build +[ 75%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o.provides.build +[ 76%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/mo_cloud_sampling.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o.provides.build +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_solver_kernels.mod physics/CMakeFiles/ccppphys.dir/mo_rte_solver_kernels.mod.stamp Intel +[ 77%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_lw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_lw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_lw.mod.stamp Intel +[ 78%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/rte/mo_rte_sw.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rte_sw.mod physics/CMakeFiles/ccppphys.dir/mo_rte_sw.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_compute_bc.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_compute_bc.mod physics/CMakeFiles/ccppphys.dir/mo_compute_bc.mod.stamp Intel +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o.provides.build +[ 79%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_pre.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_pre.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_pre.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o.provides.build +[ 80%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_lw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_lw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_lw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o.provides.build +[ 81%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_aerosol_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_aerosol_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_aerosol_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o.provides.build +[ 82%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_cloud_sampling.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_cloud_sampling.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_cloud_sampling.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o.provides.build +[ 83%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_gas_optics.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_gas_optics.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_gas_optics.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rrtmgp_sw_rte.F90 -o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/rrtmgp_sw_rte.mod physics/CMakeFiles/ccppphys.dir/rrtmgp_sw_rte.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_fluxes_bygpoint.mod physics/CMakeFiles/ccppphys.dir/mo_fluxes_bygpoint.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90 -o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/mo_rrtmgp_clr_all_sky.mod physics/CMakeFiles/ccppphys.dir/mo_rrtmgp_clr_all_sky.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sascnvn.F -o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sascnvn.mod physics/CMakeFiles/ccppphys.dir/sascnvn.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o.provides.build +[ 84%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdif.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdif.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o.provides.build +[ 85%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/satmedmfvdifq.F -o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/satmedmfvdifq.mod physics/CMakeFiles/ccppphys.dir/satmedmfvdifq.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o.provides.build +[ 86%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/set_soilveg_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/set_soilveg_ruc_mod.mod physics/CMakeFiles/ccppphys.dir/set_soilveg_ruc_mod.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_cice.f -o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_cice.mod physics/CMakeFiles/ccppphys.dir/sfc_cice.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o.provides.build +[ 87%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_drv_ruc.F90 -o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/lsm_ruc.mod physics/CMakeFiles/ccppphys.dir/lsm_ruc.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o.provides.build +[ 88%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_noahmp_drv.f -o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/noahmpdrv.mod physics/CMakeFiles/ccppphys.dir/noahmpdrv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfc_ocean.F -o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfc_ocean.mod physics/CMakeFiles/ccppphys.dir/sfc_ocean.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sfcsub.F -o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sfccyc_module.mod physics/CMakeFiles/ccppphys.dir/sfccyc_module.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shalcnv.F -o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shalcnv.mod physics/CMakeFiles/ccppphys.dir/shalcnv.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/shinhongvdif.F90 -o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/shinhongvdif.mod physics/CMakeFiles/ccppphys.dir/shinhongvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ugwp_driver_v0.F -o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/sso_coorde.mod physics/CMakeFiles/ccppphys.dir/sso_coorde.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o.provides.build +[ 89%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/ysuvdif.F90 -o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ysuvdif.mod physics/CMakeFiles/ccppphys.dir/ysuvdif.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90 -o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_copy_f90_mod physics/ccpp_typedefs.mod physics/CMakeFiles/ccppphys.dir/ccpp_typedefs.mod.stamp Intel +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o.provides.build +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E touch physics/CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o.provides.build +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/calpreciptype.f90 -o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gcycle.F90 -o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o +[ 90%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f -o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o +[ 91%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbl.f -o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o +[ 92%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_ugwp_utils.F90 -o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o +[ 93%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_orowam2017.f -o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o +[ 94%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_orodis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o +[ 95%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90 -o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpblt.f -o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfpbltq.f -o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o +[ 96%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscu.f -o CMakeFiles/ccppphys.dir/physics/mfscu.f.o +[ 97%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/mfscuq.f -o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o +[ 98%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/num_parthds.F -o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/sflx.f -o CMakeFiles/ccppphys.dir/physics/sflx.f.o +[100%] Building Fortran object physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/intel/compilers_and_libraries_2018/linux/mpi/intel64/bin/mpiifort -DCCPP -DFV3 -DINTERNAL_FILE_NML -DLINUX -DMOIST_CAPPA -DMPI -DNEMS_GSM -DNETCDF -DOPENMP -DUSE_COND -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -O2 -fPIC -fno-alias -auto -safe-cray-ptr -ftz -assume byterecl -nowarn -sox -align array64byte -qno-opt-dynamic-align -fpp -save-temps -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src -qopenmp -O2 -fPIC -no-prec-div -no-prec-sqrt -xCORE-AVX2 -i4 -real-size 64 -c /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics/physics/tridi.f -o CMakeFiles/ccppphys.dir/physics/tridi.f.o +[100%] Linking Fortran static library libccppphys.a +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P CMakeFiles/ccppphys.dir/cmake_clean_target.cmake +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_link_script CMakeFiles/ccppphys.dir/link.txt --verbose=1 +/usr/bin/ar qc libccppphys.a CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o CMakeFiles/ccppphys.dir/physics/cldmacro.F.o CMakeFiles/ccppphys.dir/physics/date_def.f.o CMakeFiles/ccppphys.dir/physics/funcphys.f90.o CMakeFiles/ccppphys.dir/physics/gcycle.F90.o CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o CMakeFiles/ccppphys.dir/physics/h2o_def.f.o CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o CMakeFiles/ccppphys.dir/physics/iccn_def.F.o CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o CMakeFiles/ccppphys.dir/physics/iounitdef.f.o CMakeFiles/ccppphys.dir/physics/machine.F.o CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o CMakeFiles/ccppphys.dir/physics/mfpbl.f.o CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o CMakeFiles/ccppphys.dir/physics/mfpblt.f.o CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o CMakeFiles/ccppphys.dir/physics/mfscu.f.o CMakeFiles/ccppphys.dir/physics/mfscuq.f.o CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o CMakeFiles/ccppphys.dir/physics/num_parthds.F.o CMakeFiles/ccppphys.dir/physics/ozne_def.f.o CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o CMakeFiles/ccppphys.dir/physics/physcons.F90.o CMakeFiles/ccppphys.dir/physics/physparam.f.o CMakeFiles/ccppphys.dir/physics/radcons.f90.o CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radlw_param.f.o CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o CMakeFiles/ccppphys.dir/physics/radsw_param.f.o CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o CMakeFiles/ccppphys.dir/physics/sfcsub.F.o CMakeFiles/ccppphys.dir/physics/sflx.f.o CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o CMakeFiles/ccppphys.dir/physics/tridi.f.o CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_concentrations.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_gas_optics_rrtmgp.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_constants.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_reorder.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/mo_rrtmgp_util_string.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_gas_optics_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rrtmgp/kernels/mo_rrtmgp_util_reorder_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_fluxes.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_util_array.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_optical_props.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_kind.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_lw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_rte_sw.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/mo_source_functions.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_fluxes_broadband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_optical_props_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/rte/kernels/mo_rte_solver_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_compute_bc.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_byband_kernels.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_fluxes_bygpoint.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_heating_rates.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/mo_rrtmgp_clr_all_sky.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rte-rrtmgp/extensions/cloud_optics/mo_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90.o CMakeFiles/ccppphys.dir/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o CMakeFiles/ccppphys.dir/physics/precpd.f.o CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_lw_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o CMakeFiles/ccppphys.dir/physics/radlw_main.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_rte.F90.o CMakeFiles/ccppphys.dir/physics/dcyc2.f.o CMakeFiles/ccppphys.dir/physics/gwdc.f.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/gwdps.f.o CMakeFiles/ccppphys.dir/physics/moninshoc.f.o CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o CMakeFiles/ccppphys.dir/physics/m_micro.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o CMakeFiles/ccppphys.dir/physics/sascnvn.F.o CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o CMakeFiles/ccppphys.dir/physics/shalcnv.F.o CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o CMakeFiles/ccppphys.dir/physics/gscond.f.o CMakeFiles/ccppphys.dir/physics/ozphys.f.o CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_rte.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_aerosol_optics.F90.o CMakeFiles/ccppphys.dir/physics/cnvc90.f.o CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o CMakeFiles/ccppphys.dir/physics/radsw_main.f.o CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmgp_sw_cloud_sampling.F90.o CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o CMakeFiles/ccppphys.dir/physics/h2ophys.f.o CMakeFiles/ccppphys.dir/physics/moninedmf.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_aux.F90.o CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o CMakeFiles/ccppphys.dir/physics/rrtmgp_lw_gas_optics.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_cloud_optics.F90.o CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o CMakeFiles/ccppphys.dir/physics/rascnv.F90.o CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o CMakeFiles/ccppphys.dir/physics/GFS_rrtmgp_setup.F90.o CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o +/usr/bin/ranlib libccppphys.a +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[1]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -S/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp -B/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build --check-build-system CMakeFiles/Makefile.cmake 0 +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles/progress.marks +make -f CMakeFiles/Makefile2 all +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/framework/src/CMakeFiles/ccpp.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f framework/src/CMakeFiles/ccpp.dir/build.make framework/src/CMakeFiles/ccpp.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `framework/src/CMakeFiles/ccpp.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[ 1%] Built target ccpp +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/depend +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build && /apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_depends "Unix Makefiles" /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics/CMakeFiles/ccppphys.dir/DependInfo.cmake --color= +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make -f physics/CMakeFiles/ccppphys.dir/build.make physics/CMakeFiles/ccppphys.dir/build +make[3]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[3]: Nothing to be done for `physics/CMakeFiles/ccppphys.dir/build'. +make[3]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +[100%] Built target ccppphys +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -E cmake_progress_start /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/CMakeFiles 0 +make -f CMakeFiles/Makefile2 preinstall +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +make[2]: Nothing to be done for `preinstall'. +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' +Install the project... +/apps/spack/linux-centos7-x86_64/gcc-4.8.5/cmake-3.16.1-pujkqsxrn5sipm422gxshrq27d3miagd/bin/cmake -P cmake_install.cmake +-- Install configuration: "Release" +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccpp.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccpp-config-release.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_types.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_api.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/libccppphys.a +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib/cmake/ccppphys-config-release.cmake +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/gfs_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_cloud_optics.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_optical_props.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_typedefs.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_concentrations.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/machine.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_source_functions.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radlw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/module_radsw_parameters.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/mo_gas_optics_rrtmgp.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_time_vary_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_radiation_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_physics_cap.mod +-- Installing: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include/ccpp_fv3_gfs_2017_stochastics_cap.mod +make[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build' ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include ++ test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib +Compiling CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" into /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL on hera +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/configure.fv3 +cp -fp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/modules.nems \ + "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3"/conf/modules.fv3 +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; \ + exec gmake COMP=FV3 COMP_SRCDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 COMP_BINDIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL MACHINE_ID=hera FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" nemsinstall + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Building dependencies ... +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake -C cpl FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' + +Build standalone FV3 io ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cplfields.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_cap_cpl.F90 +ar rv libfv3cpl.a module_cplfields.o module_cap_cpl.o +ar: creating libfv3cpl.a +a - module_cplfields.o +a - module_cap_cpl.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +gmake -C gfsphysics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +makefile:269: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/mersenne_twister.f -o physics/mersenne_twister.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/namelist_soilveg.f -o physics/namelist_soilveg.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physparam.f -o physics/physparam.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/noahmp_tables.f90 -o physics/noahmp_tables.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/GFDL_parse_tracers.F90 -o physics/GFDL_parse_tracers.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/physcons.F90 -o physics/physcons.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c CCPP_layer/CCPP_data.F90 -o CCPP_layer/CCPP_data.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -O0 -c GFS_layer/GFS_diagnostics.F90 -o GFS_layer/GFS_diagnostics.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c physics/set_soilveg.f -o physics/set_soilveg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c ../ccpp/physics/ccpp_static_api.F90 -o ../ccpp/physics/ccpp_static_api.o +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML GFS_layer/GFS_driver.F90 > GFS_layer/GFS_driver.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_driver.tmp.f90 -o GFS_layer/GFS_driver.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_restart.F90 -o GFS_layer/GFS_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../cpl -c GFS_layer/GFS_abstraction_layer.F90 -o GFS_layer/GFS_abstraction_layer.o +ar rv libgfsphys.a physics/mersenne_twister.o physics/namelist_soilveg.o physics/physparam.o physics/set_soilveg.o physics/noahmp_tables.o physics/GFDL_parse_tracers.o physics/physcons.o CCPP_layer/CCPP_data.o ../ccpp/physics/ccpp_static_api.o GFS_layer/GFS_abstraction_layer.o GFS_layer/GFS_diagnostics.o GFS_layer/GFS_driver.o GFS_layer/GFS_restart.o +ar: creating libgfsphys.a +a - physics/mersenne_twister.o +a - physics/namelist_soilveg.o +a - physics/physparam.o +a - physics/set_soilveg.o +a - physics/noahmp_tables.o +a - physics/GFDL_parse_tracers.o +a - physics/physcons.o +a - CCPP_layer/CCPP_data.o +a - ../ccpp/physics/ccpp_static_api.o +a - GFS_layer/GFS_abstraction_layer.o +a - GFS_layer/GFS_diagnostics.o +a - GFS_layer/GFS_driver.o +a - GFS_layer/GFS_restart.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +gmake -C ccpp/driver FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N DYN32=N # force gfs physics to 64bit, flag to CCPP build for 32bit dynamics + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +makefile:67: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' + +Build CCPP layer ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +mpiicc -E -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP CCPP_driver.F90 > CCPP_driver.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../../gfsphysics -I../../atmos_cubed_sphere -c CCPP_driver.tmp.f90 -o CCPP_driver.o +ar rv libccppdriver.a CCPP_driver.o +ar: creating libccppdriver.a +a - CCPP_driver.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +gmake -C ipd FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +makefile:54: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' + +Build standalone FV3 gfsphysics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_typedefs.F90 -o IPD_typedefs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DNEW_TAUCTMAX -DSMALL_PE -DNEMS_GSM -DINTERNAL_FILE_NML -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -c IPD_driver.F90 -o IPD_driver.o +ar rv libipd.a IPD_driver.o IPD_typedefs.o +ar: creating libipd.a +a - IPD_driver.o +a - IPD_typedefs.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +gmake -C io FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' + +Build standalone FV3 io ... + +$ESMF_INC is [-I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include] +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -c ffsync.F90 -o ffsync.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c FV3GFS_io.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_io_def.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_internal_state.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_nems_routines.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/nemsio_v2.2.4 -c module_write_nemsio.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_write_netcdf_parallel.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/include/ncep_post_v8.0.6_4 -c post_gfs.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_wrt_grid_comp.F90 +ar rv libfv3io.a ffsync.o FV3GFS_io.o post_gfs.o post_nems_routines.o module_write_nemsio.o module_write_netcdf.o module_write_netcdf_parallel.o module_fv3_io_def.o module_write_internal_state.o module_wrt_grid_comp.o +ar: creating libfv3io.a +a - ffsync.o +a - FV3GFS_io.o +a - post_gfs.o +a - post_nems_routines.o +a - module_write_nemsio.o +a - module_write_netcdf.o +a - module_write_netcdf_parallel.o +a - module_fv3_io_def.o +a - module_write_internal_state.o +a - module_wrt_grid_comp.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +gmake -C atmos_cubed_sphere FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' + +Build standalone FV3 fv3core ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_arrays.F90 -o model/fv_arrays.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_sst.F90 -o tools/external_sst.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_fill.F90 -o model/fv_fill.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sim_nc_mod.F90 -o tools/sim_nc_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c driver/fvGFS/DYCORE_typedefs.F90 -o driver/fvGFS/DYCORE_typedefs.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_mp_mod.F90 -o tools/fv_mp_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/sorted_index.F90 -o tools/sorted_index.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_timing.F90 -o tools/fv_timing.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_eta.F90 -o tools/fv_eta.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/multi_gases.F90 -o model/multi_gases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/boundary.F90 -o model/boundary.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_sg.F90 -o model/fv_sg.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_grid_utils.F90 -o model/fv_grid_utils.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/a2b_edge.F90 -o model/a2b_edge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -fast-transcendentals -c model/fv_mapz.F90 -o model/fv_mapz.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_surf_map.F90 -o tools/fv_surf_map.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/init_hydro.F90 -o tools/init_hydro.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_grid_tools.F90 -o tools/fv_grid_tools.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/tp_core.F90 -o model/tp_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_treat_da_inc.F90 -o tools/fv_treat_da_inc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_iau_mod.F90 -o tools/fv_iau_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_diagnostics.F90 -o tools/fv_diagnostics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_io.F90 -o tools/fv_io.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/test_cases.F90 -o tools/test_cases.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_nudge.F90 -o tools/fv_nudge.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_regional_bc.F90 -o model/fv_regional_bc.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/fv_nggps_diag.F90 -o driver/fvGFS/fv_nggps_diag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_tracer2d.F90 -o model/fv_tracer2d.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_update_phys.F90 -o model/fv_update_phys.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/sw_core.F90 -o model/sw_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/external_ic.F90 -o tools/external_ic.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c tools/fv_restart.F90 -o tools/fv_restart.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -fast-transcendentals -c model/nh_utils.F90 -o model/nh_utils.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_control.F90 -o model/fv_control.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_nesting.F90 -o model/fv_nesting.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/nh_core.F90 -o model/nh_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/dyn_core.F90 -o model/dyn_core.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -c model/fv_dynamics.F90 -o model/fv_dynamics.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -I../gfsphysics -I../ipd -I../io -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c driver/fvGFS/atmosphere.F90 -o driver/fvGFS/atmosphere.o +Using 8-byte addressing +Using pure routines. +Using allocatable derived type array members. +Using cray pointers. +ar rv libfv3core.a model/a2b_edge.o model/multi_gases.o model/boundary.o model/dyn_core.o model/fv_arrays.o model/fv_control.o model/fv_dynamics.o model/fv_fill.o model/fv_grid_utils.o model/fv_mapz.o model/fv_nesting.o model/fv_regional_bc.o model/fv_sg.o model/fv_tracer2d.o model/fv_update_phys.o model/sw_core.o model/tp_core.o model/nh_core.o model/nh_utils.o tools/external_ic.o tools/external_sst.o tools/fv_diagnostics.o tools/fv_eta.o tools/fv_grid_tools.o tools/fv_io.o tools/fv_mp_mod.o tools/fv_nudge.o tools/fv_treat_da_inc.o tools/fv_iau_mod.o tools/fv_restart.o tools/fv_surf_map.o tools/fv_timing.o tools/init_hydro.o tools/sim_nc_mod.o tools/sorted_index.o tools/test_cases.o driver/fvGFS/DYCORE_typedefs.o driver/fvGFS/fv_nggps_diag.o driver/fvGFS/atmosphere.o +ar: creating libfv3core.a +a - model/a2b_edge.o +a - model/multi_gases.o +a - model/boundary.o +a - model/dyn_core.o +a - model/fv_arrays.o +a - model/fv_control.o +a - model/fv_dynamics.o +a - model/fv_fill.o +a - model/fv_grid_utils.o +a - model/fv_mapz.o +a - model/fv_nesting.o +a - model/fv_regional_bc.o +a - model/fv_sg.o +a - model/fv_tracer2d.o +a - model/fv_update_phys.o +a - model/sw_core.o +a - model/tp_core.o +a - model/nh_core.o +a - model/nh_utils.o +a - tools/external_ic.o +a - tools/external_sst.o +a - tools/fv_diagnostics.o +a - tools/fv_eta.o +a - tools/fv_grid_tools.o +a - tools/fv_io.o +a - tools/fv_mp_mod.o +a - tools/fv_nudge.o +a - tools/fv_treat_da_inc.o +a - tools/fv_iau_mod.o +a - tools/fv_restart.o +a - tools/fv_surf_map.o +a - tools/fv_timing.o +a - tools/init_hydro.o +a - tools/sim_nc_mod.o +a - tools/sorted_index.o +a - tools/test_cases.o +a - driver/fvGFS/DYCORE_typedefs.o +a - driver/fvGFS/fv_nggps_diag.o +a - driver/fvGFS/atmosphere.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +gmake -C ../stochastic_physics FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL 32BIT=N # force gfs physics to 64bit + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +makefile:86: depend: No such file or directory +Building dependencies ... +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' + +Build standalone FV3 stochastic_physics ... + +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_gg_def.f -o stochy_gg_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_resol_def.f -o stochy_resol_def.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_layout_lag.f -o stochy_layout_lag.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c spectral_layout.F90 -o spectral_layout.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c glats_stochy.f -o glats_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c plumes.f90 -o plumes.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_namelist_def.F90 -o stochy_namelist_def.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c update_ca.F90 -o update_ca.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c compns_stochy.F90 -o compns_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c four_to_grid_stochy.F -o four_to_grid_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c sumfln_stochy.f -o sumfln_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c gozrineo_stochy.f -o gozrineo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_ls_node_stochy.f -o get_ls_node_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_lats_node_a_stochy.f -o get_lats_node_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_a_stochy.f -o setlats_a_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c setlats_lag_stochy.f -o setlats_lag_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c epslon_stochy.f -o epslon_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c pln2eo_stochy.f -o pln2eo_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dozeuv_stochy.f -o dozeuv_stochy.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c dezouv_stochy.f -o dezouv_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_internal_state_mod.F90 -o stochy_internal_state_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_patterngenerator.F90 -o stochy_patterngenerator.o +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_lag_stochy.f -o getcon_lag_stochy.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c getcon_spectral.F90 -o getcon_spectral.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c initialize_spectral_mod.F90 -o initialize_spectral_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochy_data_mod.F90 -o stochy_data_mod.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_global.F90 -o cellular_automata_global.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c cellular_automata_sgs.F90 -o cellular_automata_sgs.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c get_stochy_pattern.F90 -o get_stochy_pattern.o +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I../FV3/gfsphysics/ -I../FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c stochastic_physics.F90 -o stochastic_physics.o +ar rv libstochastic_physics.a stochy_gg_def.o stochy_resol_def.o stochy_layout_lag.o four_to_grid_stochy.o glats_stochy.o sumfln_stochy.o gozrineo_stochy.o get_ls_node_stochy.o get_lats_node_a_stochy.o setlats_a_stochy.o setlats_lag_stochy.o epslon_stochy.o getcon_lag_stochy.o pln2eo_stochy.o dozeuv_stochy.o dezouv_stochy.o plumes.o spectral_layout.o getcon_spectral.o stochy_namelist_def.o compns_stochy.o stochy_internal_state_mod.o stochastic_physics.o stochy_patterngenerator.o stochy_data_mod.o get_stochy_pattern.o initialize_spectral_mod.o cellular_automata_global.o cellular_automata_sgs.o update_ca.o +ar: creating libstochastic_physics.a +a - stochy_gg_def.o +a - stochy_resol_def.o +a - stochy_layout_lag.o +a - four_to_grid_stochy.o +a - glats_stochy.o +a - sumfln_stochy.o +a - gozrineo_stochy.o +a - get_ls_node_stochy.o +a - get_lats_node_a_stochy.o +a - setlats_a_stochy.o +a - setlats_lag_stochy.o +a - epslon_stochy.o +a - getcon_lag_stochy.o +a - pln2eo_stochy.o +a - dozeuv_stochy.o +a - dezouv_stochy.o +a - plumes.o +a - spectral_layout.o +a - getcon_spectral.o +a - stochy_namelist_def.o +a - compns_stochy.o +a - stochy_internal_state_mod.o +a - stochastic_physics.o +a - stochy_patterngenerator.o +a - stochy_data_mod.o +a - get_stochy_pattern.o +a - initialize_spectral_mod.o +a - cellular_automata_global.o +a - cellular_automata_sgs.o +a - update_ca.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +gmake libfv3cap.a FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fv3_config.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c time_utils.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c atmos_model.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c module_fcst_grid_comp.F90 +mpiifort -Duse_libMPI -Duse_netCDF -DSPMD -DUSE_LOG_DIAG_FIELD_INFO -DUSE_GFSL63 -DGFS_PHYS -Duse_WRTCOMP -DNEW_TAUCTMAX -DINTERNAL_FILE_NML -DMOIST_CAPPA -DUSE_COND -DOPENMP -DCCPP -DESMF_VERSION_MAJOR=8 -fpp -Wp,-w -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -Igfsphysics -Iipd -Icpl -Iio -Iatmos_cubed_sphere -Iccpp/driver -I../stochastic_physics -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c fv3_cap.F90 +ar rv libfv3cap.a atmos_model.o module_fv3_config.o module_fcst_grid_comp.o time_utils.o fv3_cap.o +ar: creating libfv3cap.a +a - atmos_model.o +a - module_fv3_config.o +a - module_fcst_grid_comp.o +a - time_utils.o +a - fv3_cap.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +gmake esmf_make_fragment FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +# additional include files needed for PGI +#@echo "ESMF_DEP_INCPATH = /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/nems_dir" >> fv3.mk + +Finished generating ESMF self-describing build dependency makefile fragment: fv3.mk + +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Installation into "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL" complete! + +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +test -d /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL +( \ +echo "# Do not edit this file. It is automatically generated." ; \ +echo "# Edit the component list or /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo ; cat "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC.in" ; \ +echo fms_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk" ; echo ccpp_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk" ; echo fv3_mk="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk" ; ) > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC" +. /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/module-setup.sh.inc ; stack=`ulimit -S -s` ; ulimit -S -s 200000 ; module use /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf ; module load modules.nems ; module list ; ulimit -S -s $stack ; \ +set -e ; \ +for m in /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; do \ + test -s $m ; \ +done ; \ +echo build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; \ +gmake nems \ + COMPONENTS="FMS CCPP FV3" \ + FMS_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL CCPP_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp FV3_DIR=/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL TARGET="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" ; \ +test -x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x + +Currently Loaded Modules: + 1) contrib 4) impi/2018.0.4 7) nemsio/2.2.4 10) w3nco/2.0.7 13) crtm/2.2.6 16) z/1.2.11 19) netcdf_parallel/4.7.4 22) modules.nems + 2) sutils/default 5) bacio/2.0.3 8) sp/2.0.3 11) g2/3.1.1 14) jasper/1.900.1 17) post/8.0.6 20) esmf/8.0.0_ParallelNetCDF + 3) intel/18.0.5.274 6) ip/3.0.2 9) w3emc/2.3.1 12) g2tmpl/1.6.0 15) png/1.2.44 18) hdf5_parallel/1.10.6 21) cmake/3.16.1 + + + +build NEMS after /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +cd ENS_Cpl && gmake stub +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional ENS_CplComp_ESMFMod_STUB.F90 > ENS_CplComp_ESMFMod_STUB.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -c ENS_CplComp_ESMFMod_STUB.f90 +ar rv ENS_Cpl.a ENS_CplComp_ESMFMod_STUB.o +ar: creating ENS_Cpl.a +a - ENS_CplComp_ESMFMod_STUB.o +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_UTILS.F90 > module_NEMS_UTILS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_UTILS.tmp.f90 +mv -v module_NEMS_UTILS.tmp.o module_NEMS_UTILS.o +‘module_NEMS_UTILS.tmp.o’ -> ‘module_NEMS_UTILS.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_methods.F90 > module_MEDIATOR_methods.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_methods.tmp.f90 +mv -v module_MEDIATOR_methods.tmp.o module_MEDIATOR_methods.o +‘module_MEDIATOR_methods.tmp.o’ -> ‘module_MEDIATOR_methods.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR.F90 > module_MEDIATOR.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR.tmp.f90 +mv -v module_MEDIATOR.tmp.o module_MEDIATOR.o +‘module_MEDIATOR.tmp.o’ -> ‘module_MEDIATOR.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_MEDIATOR_SpaceWeather.F90 > module_MEDIATOR_SpaceWeather.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_MEDIATOR_SpaceWeather.tmp.f90 +mv -v module_MEDIATOR_SpaceWeather.tmp.o module_MEDIATOR_SpaceWeather.o +‘module_MEDIATOR_SpaceWeather.tmp.o’ -> ‘module_MEDIATOR_SpaceWeather.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_INTERNAL_STATE.F90 > module_EARTH_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_INTERNAL_STATE.tmp.f90 +mv -v module_EARTH_INTERNAL_STATE.tmp.o module_EARTH_INTERNAL_STATE.o +‘module_EARTH_INTERNAL_STATE.tmp.o’ -> ‘module_EARTH_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_EARTH_GRID_COMP.F90 > module_EARTH_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_EARTH_GRID_COMP.tmp.f90 +mv -v module_EARTH_GRID_COMP.tmp.o module_EARTH_GRID_COMP.o +‘module_EARTH_GRID_COMP.tmp.o’ -> ‘module_EARTH_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_INTERNAL_STATE.F90 > module_NEMS_INTERNAL_STATE.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_INTERNAL_STATE.tmp.f90 +mv -v module_NEMS_INTERNAL_STATE.tmp.o module_NEMS_INTERNAL_STATE.o +‘module_NEMS_INTERNAL_STATE.tmp.o’ -> ‘module_NEMS_INTERNAL_STATE.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_GRID_COMP.F90 > module_NEMS_GRID_COMP.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_GRID_COMP.tmp.f90 +mv -v module_NEMS_GRID_COMP.tmp.o module_NEMS_GRID_COMP.o +‘module_NEMS_GRID_COMP.tmp.o’ -> ‘module_NEMS_GRID_COMP.o’ +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" module_NEMS_Rusage.F90 > module_NEMS_Rusage.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c module_NEMS_Rusage.tmp.f90 +mv -v module_NEMS_Rusage.tmp.o module_NEMS_Rusage.o +‘module_NEMS_Rusage.tmp.o’ -> ‘module_NEMS_Rusage.o’ +mpiicc -c nems_c_rusage.c +mpiicc -E -traditional -DFRONT_FV3=fv3gfs_cap_mod -DFRONT_CCPP=fv3gfs_cap_mod -DFRONT_FMS= -D'SVN_INFO="(Minsuk.Ji) Wed Jun 3 16:51:45 UTC 2020 rcec5a083b87d https://github.com/NOAA-EMC/NEMS"' -D'CMP_YEAR=2020' -D'CMP_JD=155' -DESMF_VERSION_STRING_GIT="ESMF_8_0_0" -DESMF_VERSION_BETASNAPSHOT="'F'" -DESMF_VERSION_MINOR="0" -DESMF_VERSION_PATCHLEVEL="0" -DESMF_VERSION_STRING="8.0.0" -DESMF_VERSION_REVISION="0" -DESMF_VERSION_MAJOR="8" -DESMF_VERSION_PUBLIC="'T'" MAIN_NEMS.F90 > MAIN_NEMS.tmp.f90 +mpiifort -I/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/include -fno-alias -auto -safe-cray-ptr -save-temps -ftz -assume byterecl -nowarn -sox -align array64byte -i4 -real-size 64 -no-prec-div -no-prec-sqrt -xCORE-AVX2 -qno-opt-dynamic-align -O2 -debug minimal -fp-model source -qoverride-limits -qopt-prefetch=3 -qopenmp -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/mod -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/include -I/scratch1/NCEPDEV/nems/emc.nemspara/soft/netcdf_parallel/include -IENS_Cpl -I. -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/../stochastic_physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/include -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build/physics -I/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL -c MAIN_NEMS.tmp.f90 +mv -v MAIN_NEMS.tmp.o MAIN_NEMS.o +‘MAIN_NEMS.tmp.o’ -> ‘MAIN_NEMS.o’ +echo libgocart is +libgocart is +echo extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +extlibs is /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +mpiifort -o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x MAIN_NEMS.o module_NEMS_UTILS.o module_MEDIATOR_methods.o module_MEDIATOR.o module_MEDIATOR_SpaceWeather.o module_EARTH_INTERNAL_STATE.o module_EARTH_GRID_COMP.o module_NEMS_INTERNAL_STATE.o module_NEMS_GRID_COMP.o module_NEMS_Rusage.o nems_c_rusage.o /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cap.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libccppdriver.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3core.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3io.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libipd.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libgfsphys.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libfv3cpl.a /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/libstochastic_physics.a -L/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/lib -lccpp -lccppphys /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/libfms.a ENS_Cpl/ENS_Cpl.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libncep_post_v8.0.6_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libnemsio_v2.2.4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2_v3.1.1_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libg2tmpl_v1.6.0.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libbacio_v2.0.3_4.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libsp_v2.0.3_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3emc_v2.3.1_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libw3nco_v2.0.7_d.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libcrtm_v2.2.6.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libpng_v1.2.44.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a /scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/intel/18.0.5.274/lib/libz_v1.2.11.a -L/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -Wl,-rpath,/scratch1/NCEPDEV/nems/emc.nemspara/soft/esmf/8.0.0-intel18.0.5.274-impi2018.0.4-netcdf4.7.4_parallel/lib -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf -qopenmp -L/scratch2/NCEPDEV/nwprod/NCEPLIBS/src/netcdf_parallel2/lib -lnetcdff -lnetcdf +/scratch2/NCEPDEV/nwprod/NCEPLIBS/compilers/gnu/4.8.5/lib/libjasper_v1.900.1.a(jas_stream.o): In function `jas_stream_tmpfile': +jas_stream.c:(.text+0x7a7): warning: the use of `tmpnam' is dangerous, better use `mkstemp' +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x is created. +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +set -xe ; cp "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x" "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_std.exe" ++ cp /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/exe/NEMS.x /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/tests/fv3_std.exe ++ '[' YES = YES ']' ++ gmake -j 8 -k COMPONENTS=CCPP,FMS,FV3 TEST_BUILD_NAME=fv3_std BUILD_ENV=hera.intel 'FV3_MAKEOPT=CCPP=Y SUITES=FV3_GFS_2017' NEMS_BUILDOPT= clean +Will copy modules.nems and NEMS.x as fv3_std under tests/ +NOTE: Skipping appbuilder.mk creation; no appbuilder file in use. +echo 'FMS CCPP FV3' > "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/components.mk" +NEMS_BUILDOPT IS +Adding FV3 makeopts to FMS makeopts +/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/incmake/component_FV3.mk:19: Adding PATH_CCPP to FV3 make options because CCPP is listed as a component. +cat /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile | sed 's,^include,#include,g' \ + > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs/makefile.temp.clean +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs ; \ + exec gmake CCPP=Y SUITES=FV3_GFS_2017 PATH_CCPP="/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" -f makefile.temp.clean clean +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +Cleaning fms ... + +cd .. ; \ +ls -1 */*.a */*.o */*.mod */depend \ + | grep -vE 'INSTALL|\.git' | xargs rm -f || true ; \ +rm -rf FMS_INSTALL || true +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/fv3gfs' +set -x ; \ +cd "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp" ; \ +rm -rf "/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build" ++ cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp ++ rm -rf /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/build +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 +cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3 ; exec gmake \ + -k cleanall FMS_DIR=/dev/null +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +Cleaning ... + +(cd gfsphysics && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning gfsphysics ... + +rm -f -f libgfsphys.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend */*.tmp.f90 +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/gfsphysics' +(cd ccpp/driver && make clean) + +Build CCPP layer ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning CCPP_layer ... + +rm -f -f libccppdriver.a *__genmod.f90 *.tmp.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/driver' +(cd ipd && make clean) + +Build standalone FV3 gfsphysics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning ipd ... + +rm -f -f libipd.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ipd' +(cd ../stochastic_physics && make clean) + +Build standalone FV3 stochastic_physics ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning stochastic_physics ... + +rm -f -f libstochastic_physics.a *__genmod.f90 *.o */*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/stochastic_physics' +(cd io && make clean) + +Build standalone FV3 io ... + +$ESMF_INC is [] +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3io.a *__genmod.f90 *.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/io' +(cd atmos_cubed_sphere && make clean) + +Build standalone FV3 fv3core ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning fv3core ... + +rm -f -f libfv3core.a *__genmod.f90 */*.o */*/*.o *.mod *.i90 *.lst *.i depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/atmos_cubed_sphere' +(cd cpl && make clean) + +Build standalone FV3 io ... + +make[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +make[2]: warning: jobserver unavailable: using -j1. Add `+' to parent make rule. +Cleaning io ... + +rm -f -f libfv3cpl.a *.o *.mod *.lst *.i90 depend +make[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/cpl' +rm -f -f fv3.exe libfv3cap.a *.o *.mod *.i90 *.lst depend +rm -f -rf nems_dir fv3.mk FV3_INSTALL +rm -f -f conf/modules.fv3 +rm -f -f conf/configure.fv3 +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3' +rm -rf nems_dir FV3_INSTALL /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/configure.fv3 \ + /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/conf/modules.fv3 +if ! test -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; then \ + cat /dev/null > /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ + delete_nuopc=yes ; \ +fi ; \ +cd /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src ; gmake "COMPONENTS=FMS CCPP FV3" \ + INCLUDES_ARE_OPTIONAL=YES clean ; \ +if [ "$delete_nuopc" = yes ] ; then \ + rm -f /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/conf/configure.nems.NUOPC ; \ +fi +Components in linker order: FV3 CCPP FMS +FV3: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk +gmake[1]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/FV3_INSTALL/fv3.mk: component FV3 makefile fragment is missing +CCPP: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FV3/ccpp/ccpp.mk +FMS: include /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk +GNUmakefile:70: /scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/FMS/FMS_INSTALL/fms.mk: component FMS makefile fragment is missing +CPPFLAGS += ESMF_VERSION_STRING_GIT="ESMF_8_0_0" +CPPFLAGS += ESMF_VERSION_BETASNAPSHOT="'F'" +CPPFLAGS += ESMF_VERSION_MINOR="0" +CPPFLAGS += ESMF_VERSION_PATCHLEVEL="0" +CPPFLAGS += ESMF_VERSION_STRING="8.0.0" +CPPFLAGS += ESMF_VERSION_REVISION="0" +CPPFLAGS += ESMF_VERSION_MAJOR="8" +CPPFLAGS += ESMF_VERSION_PUBLIC="'T'" +rm -f -f *.tmp.f90 *.lst *.o *.mod lm map +cd ENS_Cpl ; gmake clean +gmake[2]: Entering directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +rm -f -f ENS_Cpl.a *.f90 *.o *.mod *.lst lm map depend +gmake[2]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src/ENS_Cpl' +gmake[1]: Leaving directory `/scratch2/NCEPDEV/stmp1/Minsuk.Ji/PR68/NEMS/src' ++ elapsed=806 ++ echo 'Elapsed time 806 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 finished' +Elapsed time 806 seconds. Compiling CCPP=Y SUITES=FV3_GFS_2017 finished diff --git a/tests/Compile_wcoss_cray.log b/tests/Compile_wcoss_cray.log index d17e9630cd..21e63b9eab 100644 --- a/tests/Compile_wcoss_cray.log +++ b/tests/Compile_wcoss_cray.log @@ -1,4874 +1,1200 @@ + SECONDS=0 -+++ readlink -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_cray -+ MAKE_OPT= -+ BUILD_NAME=fv3_1 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_1 -+ [[ wcoss_cray == cheyenne.* ]] -+ [[ wcoss_cray == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -slogin2 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling into fv3_1.exe on wcoss_cray' -Compiling into fv3_1.exe on wcoss_cray -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ mkdir -p build_fv3_1 -+ CCPP_CMAKE_FLAGS= -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ [[ '' == *\3\2\B\I\T\=\Y* ]] -+ [[ '' == *\O\P\E\N\M\P\=\N* ]] -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -++ trim '' -++ local var= -++ var= -++ var= -++ echo -n '' -+ CCPP_CMAKE_FLAGS= -+ source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__13933 -++ eval 'setup__test_function__13933() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__13933 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ eval module help -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -intel(3):ERROR:105: Unable to locate a modulefile for 'intel/16.0.3.210' -fv3(65):ERROR:105: Unable to locate a modulefile for 'g2/3.1.1' -fv3(66):ERROR:105: Unable to locate a modulefile for 'g2tmpl/1.6.0' -fv3(70):ERROR:105: Unable to locate a modulefile for 'bacio/2.0.3' -fv3(71):ERROR:105: Unable to locate a modulefile for 'ip/3.0.2' -fv3(72):ERROR:105: Unable to locate a modulefile for 'sp/2.0.3' -fv3(73):ERROR:105: Unable to locate a modulefile for 'w3nco/2.0.7' -fv3(74):ERROR:105: Unable to locate a modulefile for 'w3emc/2.3.1' -fv3(75):ERROR:105: Unable to locate a modulefile for 'nemsio/2.2.4' -fv3(78):ERROR:105: Unable to locate a modulefile for 'post/8.0.5' -fv3(19):ERROR:105: Unable to locate a modulefile for 'esmf/8.0.0' -++ eval INFOPATH=/usr/local/info:/usr/share/info:/usr/info ';export' 'INFOPATH;MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_DEFAULT_REQUIRED_PRODUCTS;unset' 'ATP_HOME;unset' 'ATP_MRNET_COMM_PATH;unset' 'ATP_POST_LINK_OPTS;unset' 'BACIO_LIB4;unset' 'BACIO_LIB8;unset' 'BACIO_SRC;unset' 'BACIO_VER;unset' 'CMAKE_CXX_COMPILER;unset' 'CMAKE_C_COMPILER;unset' 'CMAKE_Fortran_COMPILER;unset' 'CMAKE_Platform;unset' 'COMP;unset' 'CPATH;unset' 'CRAYOS_VERSION;unset' 'CRAYPE_DIR;unset' 'CRAYPE_NETWORK_TARGET;unset' 'CRAYPE_VERSION;unset' 'CRAY_ALPS_INCLUDE_OPTS;unset' 'CRAY_ALPS_POST_LINK_OPTS;unset' 'CRAY_CPU_TARGET;unset' 'CRAY_DMAPP_INCLUDE_OPTS;unset' 'CRAY_DMAPP_POST_LINK_OPTS;unset' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;unset' 'CRAY_HDF5_DIR;unset' 'CRAY_HDF5_VERSION;unset' 'CRAY_LD_LIBRARY_PATH;unset' 'CRAY_LIBSCI_BASE_DIR;unset' 'CRAY_LIBSCI_DIR;unset' 'CRAY_LIBSCI_PREFIX_DIR;unset' 'CRAY_LIBSCI_VERSION;unset' 'CRAY_NETCDF_VERSION;unset' 'CRAY_PE_MODULES;unset' 'CRAY_PMI_INCLUDE_OPTS;unset' 'CRAY_PMI_POST_LINK_OPTS;unset' 'CRAY_PRE_COMPILE_OPTS;unset' 'CRAY_PRGENVINTEL;unset' 'CRAY_RCA_INCLUDE_OPTS;unset' 'CRAY_RCA_POST_LINK_OPTS;unset' 'CRAY_UDREG_INCLUDE_OPTS;unset' 'CRAY_UDREG_POST_LINK_OPTS;unset' 'CRAY_UGNI_INCLUDE_OPTS;unset' 'CRAY_UGNI_POST_LINK_OPTS;unset' 'CRAY_XPMEM_INCLUDE_OPTS;unset' 'CRAY_XPMEM_POST_LINK_OPTS;unset' 'CRTM_FIX;unset' 'CRTM_INC;unset' 'CRTM_LIB;unset' 'CRTM_SRC;unset' 'CRTM_VER;unset' 'DMAPP_ABORT_ON_ERROR;unset' 'DVS_INCLUDE_OPTS;unset' 'DVS_VERSION;unset' 'ECF_HOSTFILE;unset' 'ECF_PORT;unset' 'ECF_ROOT;unset' 'ESMFMKFILE;unset' 'G2TMPL_INC;unset' 'G2TMPL_LIB;unset' 'G2TMPL_SRC;unset' 'G2TMPL_VER;unset' 'G2_INC4;unset' 'G2_INCd;unset' 'G2_LIB4;unset' 'G2_LIBd;unset' 'G2_SRC;unset' 'G2_VER;unset' 'GCC_PATH;unset' 'GCC_VERSION;unset' 'GDBSERVER_MIC;unset' 'GDB_CROSS;unset' 'GDB_HOST;unset' 'GNU_VERSION;unset' 'HDF5_DIR;unset' 'HDF5_INCLUDE_OPTS;unset' 'HDF5_ROOT;unset' 'INTEL_LICENSE_FILE;unset' 'INTEL_MAJOR_VERSION;unset' 'INTEL_MINOR_VERSION;unset' 'INTEL_PATH;unset' 'INTEL_PYTHONHOME;unset' 'INTEL_VERSION;unset' 'IPPROOT;unset' 'IP_INC4;unset' 'IP_INC8;unset' 'IP_INCd;unset' 'IP_LIB4;unset' 'IP_LIB8;unset' 'IP_LIBd;unset' 'IP_SRC;unset' 'IP_VER;unset' 'JASPER_INC;unset' 'JASPER_LIB;unset' 'JASPER_LIBDIR;unset' 'JASPER_LIBl;unset' 'JASPER_SRC;unset' 'JASPER_VER;unset' 'LD_LIBRARY_PATH;unset' 'LIBRARY_PATH;unset' 'LIBSCI_BASE_DIR;unset' 'LIBSCI_VERSION;unset' 'LIB_NAME;unset' 'LOADEDMODULES;unset' 'LSF_BINDIR;unset' 'LSF_ENVDIR;unset' 'LSF_LIBDIR;unset' 'LSF_SERVERDIR;unset' 'MIC_LD_LIBRARY_PATH;unset' 'MIC_LIBRARY_PATH;unset' 'MKLROOT;unset' 'MPICH_ABORT_ON_ERROR;unset' 'MPM_LAUNCHER;unset' 'NEMSIO_INC;unset' 'NEMSIO_LIB;unset' 'NEMSIO_SRC;unset' 'NEMSIO_VER;unset' 'NETCDF_DIR;unset' 'NLSPATH;unset' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_CRAY_FIXED_PKGCONFIG_PATH;unset' 'PE_CXX_PKGCONFIG_LIBS;unset' 'PE_ENV;unset' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_FFTW_DEFAULT_TARGET_haswell;unset' 'PE_FFTW_DEFAULT_TARGET_interlagos;unset' 'PE_FFTW_DEFAULT_TARGET_sandybridge;unset' 'PE_FFTW_DEFAULT_TARGET_x86_64;unset' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_GA_DEFAULT_FIXED_PRGENV;unset' 'PE_GA_DEFAULT_GENCOMPS_GNU;unset' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_GA_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_CXX_PKGCONFIG_LIBS;unset' 'PE_HDF5_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_DIR;unset' 'PE_HDF5_FIXED_PRGENV;unset' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_HDF5_GENCOMPILERS_GNU;unset' 'PE_HDF5_GENCOMPS_GNU;unset' 'PE_HDF5_MODULE_NAME;unset' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_PKGCONFIG_LIBS;unset' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_VOLATILE_PRGENV;unset' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_INTEL_FIXED_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;unset' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_MODULE_NAME;unset' 'PE_LIBSCI_OMP_REQUIRES;unset' 'PE_LIBSCI_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_PKGCONFIG_LIBS;unset' 'PE_LIBSCI_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_VOLATILE_PRGENV;unset' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;unset' 'PE_MPICH_DEFAULT_FIXED_PRGENV;unset' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;unset' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;unset' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;unset' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;unset' 'PE_MPICH_NV_LIBS;unset' 'PE_MPICH_NV_LIBS_nvidia20;unset' 'PE_MPICH_NV_LIBS_nvidia35;unset' 'PE_MPICH_PKGCONFIG_VARIABLES;unset' 'PE_MPICH_TARGET_VAR_nvidia20;unset' 'PE_MPICH_TARGET_VAR_nvidia35;unset' 'PE_NETCDF_BASEDIR;unset' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;unset' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_FIXED_PRGENV;unset' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_NETCDF_GENCOMPILERS_GNU;unset' 'PE_NETCDF_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_MODULE_NAME;unset' 'PE_NETCDF_PKGCONFIG_LIBS;unset' 'PE_NETCDF_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_VOLATILE_PRGENV;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;unset' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;unset' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;unset' 'PE_PKGCONFIG_LIBS;unset' 'PE_PKGCONFIG_PRODUCTS;unset' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;unset' 'PE_PKG_CONFIG_PATH;unset' 'PE_PRODUCT_LIST;unset' 'PE_SMA_DIR_CRAY_DEFAULT64;unset' 'PE_SMA_DIR_PGI_DEFAULT64;unset' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;unset' 'PKGCONFIG_ENABLED;unset' 'PKG_CONFIG_PATH;unset' 'PKG_CONFIG_PATH_DEFAULT;unset' 'PNG_INC;unset' 'PNG_LIB;unset' 'PNG_LIB12;unset' 'PNG_LIBDIR;unset' 'PNG_LIBso;unset' 'PNG_SRC;unset' 'PNG_VER;unset' 'POST_INC;unset' 'POST_LIB;unset' 'POST_SRC;unset' 'POST_VER;unset' 'PYTHONPATH;unset' 'QT_PLUGIN_PATH;unset' 'SHMEM_ABORT_ON_ERROR;unset' 'SLURM_PROLOG;unset' 'SP_LIB4;unset' 'SP_LIB8;unset' 'SP_LIBd;unset' 'SP_SRC;unset' 'SP_VER;unset' 'TBBROOT;unset' 'W3EMC_INC4;unset' 'W3EMC_INC8;unset' 'W3EMC_INCd;unset' 'W3EMC_LIB4;unset' 'W3EMC_LIB8;unset' 'W3EMC_LIBd;unset' 'W3EMC_SRC;unset' 'W3EMC_VER;unset' 'W3NCO_LIB4;unset' 'W3NCO_LIB8;unset' 'W3NCO_LIBd;unset' 'W3NCO_SRC;unset' 'W3NCO_VER;unset' 'XLSF_UIDDIR;unset' 'XTOS_VERSION;unset' 'XTPE_NETWORK_TARGET;unset' 'Z_INC;unset' 'Z_LIB;unset' 'Z_SRC;unset' 'Z_VER;unset' '_LMFILES_;' -+++ INFOPATH=/usr/local/info:/usr/share/info:/usr/info -+++ export INFOPATH -+++ MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man -+++ export MANPATH -+++ MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -+++ PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin -+++ export PATH -+++ PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -+++ export PE_HDF5_DEFAULT_REQUIRED_PRODUCTS -+++ unset ATP_HOME -+++ unset ATP_MRNET_COMM_PATH -+++ unset ATP_POST_LINK_OPTS -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset CPATH -+++ unset CRAYOS_VERSION -+++ unset CRAYPE_DIR -+++ unset CRAYPE_NETWORK_TARGET -+++ unset CRAYPE_VERSION -+++ unset CRAY_ALPS_INCLUDE_OPTS -+++ unset CRAY_ALPS_POST_LINK_OPTS -+++ unset CRAY_CPU_TARGET -+++ unset CRAY_DMAPP_INCLUDE_OPTS -+++ unset CRAY_DMAPP_POST_LINK_OPTS -+++ unset CRAY_GNI_HEADERS_INCLUDE_OPTS -+++ unset CRAY_HDF5_DIR -+++ unset CRAY_HDF5_VERSION -+++ unset CRAY_LD_LIBRARY_PATH -+++ unset CRAY_LIBSCI_BASE_DIR -+++ unset CRAY_LIBSCI_DIR -+++ unset CRAY_LIBSCI_PREFIX_DIR -+++ unset CRAY_LIBSCI_VERSION -+++ unset CRAY_NETCDF_VERSION -+++ unset CRAY_PE_MODULES -+++ unset CRAY_PMI_INCLUDE_OPTS -+++ unset CRAY_PMI_POST_LINK_OPTS -+++ unset CRAY_PRE_COMPILE_OPTS -+++ unset CRAY_PRGENVINTEL -+++ unset CRAY_RCA_INCLUDE_OPTS -+++ unset CRAY_RCA_POST_LINK_OPTS -+++ unset CRAY_UDREG_INCLUDE_OPTS -+++ unset CRAY_UDREG_POST_LINK_OPTS -+++ unset CRAY_UGNI_INCLUDE_OPTS -+++ unset CRAY_UGNI_POST_LINK_OPTS -+++ unset CRAY_XPMEM_INCLUDE_OPTS -+++ unset CRAY_XPMEM_POST_LINK_OPTS -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DMAPP_ABORT_ON_ERROR -+++ unset DVS_INCLUDE_OPTS -+++ unset DVS_VERSION -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GCC_PATH -+++ unset GCC_VERSION -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset GDB_HOST -+++ unset GNU_VERSION -+++ unset HDF5_DIR -+++ unset HDF5_INCLUDE_OPTS -+++ unset HDF5_ROOT -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_MAJOR_VERSION -+++ unset INTEL_MINOR_VERSION -+++ unset INTEL_PATH -+++ unset INTEL_PYTHONHOME -+++ unset INTEL_VERSION -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_LIBl -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset LD_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIBSCI_BASE_DIR -+++ unset LIBSCI_VERSION -+++ unset LIB_NAME -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ unset MIC_LD_LIBRARY_PATH -+++ unset MIC_LIBRARY_PATH -+++ unset MKLROOT -+++ unset MPICH_ABORT_ON_ERROR -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF_DIR -+++ unset NLSPATH -+++ unset PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_CRAY_FIXED_PKGCONFIG_PATH -+++ unset PE_CXX_PKGCONFIG_LIBS -+++ unset PE_ENV -+++ unset PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_FFTW_DEFAULT_TARGET_haswell -+++ unset PE_FFTW_DEFAULT_TARGET_interlagos -+++ unset PE_FFTW_DEFAULT_TARGET_sandybridge -+++ unset PE_FFTW_DEFAULT_TARGET_x86_64 -+++ unset PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_GA_DEFAULT_FIXED_PRGENV -+++ unset PE_GA_DEFAULT_GENCOMPS_GNU -+++ unset PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_GA_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_CXX_PKGCONFIG_LIBS -+++ unset PE_HDF5_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_DIR -+++ unset PE_HDF5_FIXED_PRGENV -+++ unset PE_HDF5_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_HDF5_GENCOMPILERS_GNU -+++ unset PE_HDF5_GENCOMPS_GNU -+++ unset PE_HDF5_MODULE_NAME -+++ unset PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_PKGCONFIG_LIBS -+++ unset PE_HDF5_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_VOLATILE_PRGENV -+++ unset PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_INTEL_FIXED_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -+++ unset PE_LIBSCI_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_MODULE_NAME -+++ unset PE_LIBSCI_OMP_REQUIRES -+++ unset PE_LIBSCI_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_PKGCONFIG_LIBS -+++ unset PE_LIBSCI_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_VOLATILE_PRGENV -+++ unset PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -+++ unset PE_MPICH_DEFAULT_FIXED_PRGENV -+++ unset PE_MPICH_DEFAULT_GENCOMPS_CRAY -+++ unset PE_MPICH_DEFAULT_GENCOMPS_GNU -+++ unset PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_MPICH_DEFAULT_VOLATILE_PRGENV -+++ unset PE_MPICH_MULTITHREADED_LIBS_multithreaded -+++ unset PE_MPICH_NV_LIBS -+++ unset PE_MPICH_NV_LIBS_nvidia20 -+++ unset PE_MPICH_NV_LIBS_nvidia35 -+++ unset PE_MPICH_PKGCONFIG_VARIABLES -+++ unset PE_MPICH_TARGET_VAR_nvidia20 -+++ unset PE_MPICH_TARGET_VAR_nvidia35 -+++ unset PE_NETCDF_BASEDIR -+++ unset PE_NETCDF_CXX_PKGCONFIG_LIBS -+++ unset PE_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_FIXED_PRGENV -+++ unset PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_NETCDF_GENCOMPILERS_GNU -+++ unset PE_NETCDF_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_MODULE_NAME -+++ unset PE_NETCDF_PKGCONFIG_LIBS -+++ unset PE_NETCDF_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_VOLATILE_PRGENV -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -+++ unset PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -+++ unset PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PETSC_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PKGCONFIG_DEFAULT_PRODUCTS -+++ unset PE_PKGCONFIG_LIBS -+++ unset PE_PKGCONFIG_PRODUCTS -+++ unset PE_PKGCONFIG_PRODUCTS_DEFAULT -+++ unset PE_PKG_CONFIG_PATH -+++ unset PE_PRODUCT_LIST -+++ unset PE_SMA_DIR_CRAY_DEFAULT64 -+++ unset PE_SMA_DIR_PGI_DEFAULT64 -+++ unset PE_SMA_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -+++ unset PKGCONFIG_ENABLED -+++ unset PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH_DEFAULT -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PYTHONPATH -+++ unset QT_PLUGIN_PATH -+++ unset SHMEM_ABORT_ON_ERROR -+++ unset SLURM_PROLOG -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset XTOS_VERSION -+++ unset XTPE_NETWORK_TARGET -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset _LMFILES_ -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -++ eval -++ unset _LMFILES_ -++ unset LOADEDMODULES -++ module use /opt/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/modulefiles -++ eval -++ module use /opt/cray/ari/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/ari/modulefiles -++ eval MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles ';export' 'MODULEPATH;' -+++ MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -++ module use /opt/cray/craype/default/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/craype/default/alt-modulefiles -++ eval -++ module use /opt/cray/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/alt-modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -++ eval -++ module use /usrx/local/prod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /usrx/local/prod/modulefiles -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__13933 -++ unset __ms_function_name -+ [[ wcoss_cray == macosx.* ]] -+ [[ wcoss_cray == linux.* ]] -+ module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -+ eval -+ module load fv3 -++ /opt/modules/3.2.10.3/bin/modulecmd bash load fv3 -+ eval ATP_HOME=/opt/cray/atp/1.8.1 ';export' 'ATP_HOME;ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper' ';export' 'ATP_MRNET_COMM_PATH;ATP_POST_LINK_OPTS=-Wl,-L/opt/cray/atp/1.8.1/libApp/\' ';export' 'ATP_POST_LINK_OPTS;BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a' ';export' 'BACIO_LIB4;BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a' ';export' 'BACIO_LIB8;BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3' ';export' 'BACIO_SRC;BACIO_VER=v2.0.3' ';export' 'BACIO_VER;CMAKE_CXX_COMPILER=CC' ';export' 'CMAKE_CXX_COMPILER;CMAKE_C_COMPILER=cc' ';export' 'CMAKE_C_COMPILER;CMAKE_Fortran_COMPILER=ftn' ';export' 'CMAKE_Fortran_COMPILER;CMAKE_Platform=wcoss_cray' ';export' 'CMAKE_Platform;COMP=intel' ';export' 'COMP;CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include' ';export' 'CPATH;CRAYOS_VERSION=5.2.82' ';export' 'CRAYOS_VERSION;CRAYPE_DIR=/opt/cray/craype/2.3.0' ';export' 'CRAYPE_DIR;CRAYPE_NETWORK_TARGET=aries' ';export' 'CRAYPE_NETWORK_TARGET;CRAYPE_VERSION=2.3.0' ';export' 'CRAYPE_VERSION;CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include' ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_CPU_TARGET=haswell' ';export' 'CRAY_CPU_TARGET;CRAY_DMAPP_INCLUDE_OPTS=-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include\' '-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include\' ';export' 'CRAY_DMAPP_INCLUDE_OPTS;CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64' ';export' 'CRAY_DMAPP_POST_LINK_OPTS;CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include' ';export' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'CRAY_HDF5_DIR;CRAY_HDF5_VERSION=1.8.14' ';export' 'CRAY_HDF5_VERSION;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib' ';export' 'CRAY_LD_LIBRARY_PATH;CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_BASE_DIR;CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_DIR;CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64' ';export' 'CRAY_LIBSCI_PREFIX_DIR;CRAY_LIBSCI_VERSION=13.0.3' ';export' 'CRAY_LIBSCI_VERSION;CRAY_NETCDF_VERSION=4.3.3.1' ';export' 'CRAY_NETCDF_VERSION;CRAY_PE_MODULES=cray-hdf5:cray-netcdf' ';export' 'CRAY_PE_MODULES;CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include' ';export' 'CRAY_PMI_INCLUDE_OPTS;CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64' ';export' 'CRAY_PMI_POST_LINK_OPTS;CRAY_PRE_COMPILE_OPTS=-hnetwork=aries' ';export' 'CRAY_PRE_COMPILE_OPTS;CRAY_PRGENVINTEL=loaded' ';export' 'CRAY_PRGENVINTEL;CRAY_RCA_INCLUDE_OPTS=-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include\' '-I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include\' '-I/opt/cray-hss-devel/7.2.0/include\' ';export' 'CRAY_RCA_INCLUDE_OPTS;CRAY_RCA_POST_LINK_OPTS=-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64\' '-lrca\' ';export' 'CRAY_RCA_POST_LINK_OPTS;CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include' ';export' 'CRAY_UDREG_INCLUDE_OPTS;CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64' ';export' 'CRAY_UDREG_POST_LINK_OPTS;CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include' ';export' 'CRAY_UGNI_INCLUDE_OPTS;CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64' ';export' 'CRAY_UGNI_POST_LINK_OPTS;CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include' ';export' 'CRAY_XPMEM_INCLUDE_OPTS;CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64' ';export' 'CRAY_XPMEM_POST_LINK_OPTS;CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix' ';export' 'CRTM_FIX;CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6' ';export' 'CRTM_INC;CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a' ';export' 'CRTM_LIB;CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src' ';export' 'CRTM_SRC;CRTM_VER=v2.2.6' ';export' 'CRTM_VER;DMAPP_ABORT_ON_ERROR=1' ';export' 'DMAPP_ABORT_ON_ERROR;DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include' ';export' 'DVS_INCLUDE_OPTS;DVS_VERSION=0.9.0' ';export' 'DVS_VERSION;ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk' ';export' 'ESMFMKFILE;G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0' ';export' 'G2TMPL_INC;G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a' ';export' 'G2TMPL_LIB;G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src' ';export' 'G2TMPL_SRC;G2TMPL_VER=v1.6.0' ';export' 'G2TMPL_VER;G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4' ';export' 'G2_INC4;G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d' ';export' 'G2_INCd;G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a' ';export' 'G2_LIB4;G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a' ';export' 'G2_LIBd;G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1' ';export' 'G2_SRC;G2_VER=v3.1.1' ';export' 'G2_VER;GCC_PATH=/opt/gcc/4.9.2' ';export' 'GCC_PATH;GCC_VERSION=4.9.2' ';export' 'GCC_VERSION;GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver' ';export' 'GDBSERVER_MIC;GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic' ';export' 'GDB_CROSS;GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic' ';export' 'GDB_HOST;GNU_VERSION=4.9.2' ';export' 'GNU_VERSION;HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_DIR;HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include' ';export' 'HDF5_INCLUDE_OPTS;HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_ROOT;INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info' ';export' 'INFOPATH;INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses' ';export' 'INTEL_LICENSE_FILE;INTEL_MAJOR_VERSION=16.0' ';export' 'INTEL_MAJOR_VERSION;INTEL_MINOR_VERSION=3.210' ';export' 'INTEL_MINOR_VERSION;INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux' ';export' 'INTEL_PATH;INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/' ';export' 'INTEL_PYTHONHOME;INTEL_VERSION=16.0.3.210' ';export' 'INTEL_VERSION;IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp' ';export' 'IPPROOT;IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4' ';export' 'IP_INC4;IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8' ';export' 'IP_INC8;IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d' ';export' 'IP_INCd;IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a' ';export' 'IP_LIB4;IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a' ';export' 'IP_LIB8;IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a' ';export' 'IP_LIBd;IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2' ';export' 'IP_SRC;IP_VER=v3.0.2' ';export' 'IP_VER;JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include' ';export' 'JASPER_INC;JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a' ';export' 'JASPER_LIB;JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib' ';export' 'JASPER_LIBDIR;JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la' ';export' 'JASPER_LIBl;JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1' ';export' 'JASPER_SRC;JASPER_VER=1.900.1' ';export' 'JASPER_VER;LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib' ';export' 'LD_LIBRARY_PATH;LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1' ';export' 'LIBRARY_PATH;LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'LIBSCI_BASE_DIR;LIBSCI_VERSION=13.0.3' ';export' 'LIBSCI_VERSION;LIB_NAME=POST' ';export' 'LIB_NAME;LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3' ';export' 'LOADEDMODULES;LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin' ';export' 'LSF_BINDIR;LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf' ';export' 'LSF_ENVDIR;LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib' ';export' 'LSF_LIBDIR;LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc' ';export' 'LSF_SERVERDIR;MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man' ';export' 'MANPATH;MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LD_LIBRARY_PATH;MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LIBRARY_PATH;MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl' ';export' 'MKLROOT;MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;MPICH_ABORT_ON_ERROR=1' ';export' 'MPICH_ABORT_ON_ERROR;MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh' ';export' 'MPM_LAUNCHER;NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4' ';export' 'NEMSIO_INC;NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a' ';export' 'NEMSIO_LIB;NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4' ';export' 'NEMSIO_SRC;NEMSIO_VER=v2.2.4' ';export' 'NEMSIO_VER;NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0' ';export' 'NETCDF_DIR;NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N' ';export' 'NLSPATH;PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'PATH;PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig' ';export' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig' ';export' 'PE_CRAY_FIXED_PKGCONFIG_PATH;PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4' ';export' 'PE_CXX_PKGCONFIG_LIBS;PE_ENV=INTEL' ';export' 'PE_ENV;PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;PE_FFTW_DEFAULT_TARGET_haswell=haswell' ';export' 'PE_FFTW_DEFAULT_TARGET_haswell;PE_FFTW_DEFAULT_TARGET_interlagos=interlagos' ';export' 'PE_FFTW_DEFAULT_TARGET_interlagos;PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge' ';export' 'PE_FFTW_DEFAULT_TARGET_sandybridge;PE_FFTW_DEFAULT_TARGET_x86_64=x86_64' ';export' 'PE_FFTW_DEFAULT_TARGET_x86_64;PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff' ';export' 'PE_FORTRAN_PKGCONFIG_LIBS;PE_GA_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_GA_DEFAULT_FIXED_PRGENV;PE_GA_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_GA_DEFAULT_GENCOMPS_GNU;PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_GA_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_GA_DEFAULT_VOLATILE_PRGENV;PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp' ';export' 'PE_HDF5_CXX_PKGCONFIG_LIBS;PE_HDF5_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_DEFAULT_FIXED_PRGENV;PE_HDF5_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;PE_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'PE_HDF5_DIR;PE_HDF5_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_FIXED_PRGENV;PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran' ';export' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;PE_HDF5_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_HDF5_GENCOMPILERS_GNU;PE_HDF5_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_HDF5_GENCOMPS_GNU;PE_HDF5_MODULE_NAME=cray-hdf5' ';export' 'PE_HDF5_MODULE_NAME;PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5' ';export' 'PE_HDF5_PKGCONFIG_LIBS;PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;PE_HDF5_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_VOLATILE_PRGENV;PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig' ';export' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig' ';export' 'PE_INTEL_FIXED_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;PE_LIBSCI_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;PE_LIBSCI_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;PE_LIBSCI_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3' ';export' 'PE_LIBSCI_MODULE_NAME;PE_LIBSCI_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_OMP_REQUIRES_openmp;PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci' ';export' 'PE_LIBSCI_PKGCONFIG_LIBS;PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_PKGCONFIG_VARIABLES;PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_REQUIRED_PRODUCTS;PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_VOLATILE_PRGENV;PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64' ';export' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL' ';export' 'PE_MPICH_DEFAULT_FIXED_PRGENV;PE_MPICH_DEFAULT_GENCOMPS_CRAY=83' ';export' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;PE_MPICH_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_MPICH_DEFAULT_VOLATILE_PRGENV=CRAY\' GNU ';export' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt' ';export' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;PE_MPICH_NV_LIBS_nvidia20=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia20;PE_MPICH_NV_LIBS_nvidia35=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia35;PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@' ';export' 'PE_MPICH_PKGCONFIG_VARIABLES;PE_MPICH_TARGET_VAR_nvidia20=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia20;PE_MPICH_TARGET_VAR_nvidia35=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia35;PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1' ';export' 'PE_NETCDF_BASEDIR;PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4' ';export' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;PE_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;PE_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_FIXED_PRGENV;PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff' ';export' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;PE_NETCDF_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_NETCDF_GENCOMPILERS_GNU;PE_NETCDF_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_NETCDF_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5_PARALLEL\' PE_MPICH ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_MODULE_NAME=cray-netcdf' ';export' 'PE_NETCDF_MODULE_NAME;PE_NETCDF_PKGCONFIG_LIBS=netcdf' ';export' 'PE_NETCDF_PKGCONFIG_LIBS;PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_REQUIRED_PRODUCTS;PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_VOLATILE_PRGENV;PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@' ';export' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU=4.9\' 4.8 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL' ';export' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PETSC_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH' ';export' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci' ';export' 'PE_PKGCONFIG_LIBS;PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI' ';export' 'PE_PKGCONFIG_PRODUCTS;PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI' ';export' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig' ';export' 'PE_PKG_CONFIG_PATH;PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL' ';export' 'PE_PRODUCT_LIST;PE_SMA_DIR_CRAY_DEFAULT64=64' ';export' 'PE_SMA_DIR_CRAY_DEFAULT64;PE_SMA_DIR_PGI_DEFAULT64=64' ';export' 'PE_SMA_DIR_PGI_DEFAULT64;PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig' ';export' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI' ';export' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL' ';export' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TRILINOS_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;PKGCONFIG_ENABLED=1' ';export' 'PKGCONFIG_ENABLED;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig' ';export' 'PKG_CONFIG_PATH;PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH_DEFAULT;PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include' ';export' 'PNG_INC;PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a' ';export' 'PNG_LIB;PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a' ';export' 'PNG_LIB12;PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib' ';export' 'PNG_LIBDIR;PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so' ';export' 'PNG_LIBso;PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src' ';export' 'PNG_SRC;PNG_VER=1.2.49' ';export' 'PNG_VER;POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4' ';export' 'POST_INC;POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a' ';export' 'POST_LIB;POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5' ';export' 'POST_SRC;POST_VER=v8.0.5' ';export' 'POST_VER;SHMEM_ABORT_ON_ERROR=1' ';export' 'SHMEM_ABORT_ON_ERROR;SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh' ';export' 'SLURM_PROLOG;SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a' ';export' 'SP_LIB4;SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a' ';export' 'SP_LIB8;SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a' ';export' 'SP_LIBd;SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3' ';export' 'SP_SRC;SP_VER=v2.0.3' ';export' 'SP_VER;TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb' ';export' 'TBBROOT;W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4' ';export' 'W3EMC_INC4;W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8' ';export' 'W3EMC_INC8;W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d' ';export' 'W3EMC_INCd;W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a' ';export' 'W3EMC_LIB4;W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a' ';export' 'W3EMC_LIB8;W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a' ';export' 'W3EMC_LIBd;W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1' ';export' 'W3EMC_SRC;W3EMC_VER=v2.3.1' ';export' 'W3EMC_VER;W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a' ';export' 'W3NCO_LIB4;W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a' ';export' 'W3NCO_LIB8;W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a' ';export' 'W3NCO_LIBd;W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7' ';export' 'W3NCO_SRC;W3NCO_VER=v2.0.7' ';export' 'W3NCO_VER;XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid' ';export' 'XLSF_UIDDIR;XTOS_VERSION=5.2.82' ';export' 'XTOS_VERSION;XTPE_NETWORK_TARGET=aries' ';export' 'XTPE_NETWORK_TARGET;Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'Z_INC;Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a' ';export' 'Z_LIB;Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src' ';export' 'Z_SRC;Z_VER=1.2.7' ';export' 'Z_VER;_LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3' ';export' '_LMFILES_;' -++ ATP_HOME=/opt/cray/atp/1.8.1 -++ export ATP_HOME -++ ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper -++ export ATP_MRNET_COMM_PATH -++ ATP_POST_LINK_OPTS='-Wl,-L/opt/cray/atp/1.8.1/libApp/ ' -++ export ATP_POST_LINK_OPTS -++ BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ CMAKE_CXX_COMPILER=CC -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=cc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=ftn -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_cray -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include -++ export CPATH -++ CRAYOS_VERSION=5.2.82 -++ export CRAYOS_VERSION -++ CRAYPE_DIR=/opt/cray/craype/2.3.0 -++ export CRAYPE_DIR -++ CRAYPE_NETWORK_TARGET=aries -++ export CRAYPE_NETWORK_TARGET -++ CRAYPE_VERSION=2.3.0 -++ export CRAYPE_VERSION -++ CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include -++ export CRAY_ALPS_INCLUDE_OPTS -++ CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64 -++ export CRAY_ALPS_POST_LINK_OPTS -++ CRAY_CPU_TARGET=haswell -++ export CRAY_CPU_TARGET -++ CRAY_DMAPP_INCLUDE_OPTS='-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include -I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include ' -++ export CRAY_DMAPP_INCLUDE_OPTS -++ CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64 -++ export CRAY_DMAPP_POST_LINK_OPTS -++ CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include -++ export CRAY_GNI_HEADERS_INCLUDE_OPTS -++ CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export CRAY_HDF5_DIR -++ CRAY_HDF5_VERSION=1.8.14 -++ export CRAY_HDF5_VERSION -++ CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib -++ export CRAY_LD_LIBRARY_PATH -++ CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_BASE_DIR -++ CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_DIR -++ CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64 -++ export CRAY_LIBSCI_PREFIX_DIR -++ CRAY_LIBSCI_VERSION=13.0.3 -++ export CRAY_LIBSCI_VERSION -++ CRAY_NETCDF_VERSION=4.3.3.1 -++ export CRAY_NETCDF_VERSION -++ CRAY_PE_MODULES=cray-hdf5:cray-netcdf -++ export CRAY_PE_MODULES -++ CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include -++ export CRAY_PMI_INCLUDE_OPTS -++ CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64 -++ export CRAY_PMI_POST_LINK_OPTS -++ CRAY_PRE_COMPILE_OPTS=-hnetwork=aries -++ export CRAY_PRE_COMPILE_OPTS -++ CRAY_PRGENVINTEL=loaded -++ export CRAY_PRGENVINTEL -++ CRAY_RCA_INCLUDE_OPTS='-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include -I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include -I/opt/cray-hss-devel/7.2.0/include ' -++ export CRAY_RCA_INCLUDE_OPTS -++ CRAY_RCA_POST_LINK_OPTS='-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64 -lrca ' -++ export CRAY_RCA_POST_LINK_OPTS -++ CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include -++ export CRAY_UDREG_INCLUDE_OPTS -++ CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64 -++ export CRAY_UDREG_POST_LINK_OPTS -++ CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include -++ export CRAY_UGNI_INCLUDE_OPTS -++ CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64 -++ export CRAY_UGNI_POST_LINK_OPTS -++ CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include -++ export CRAY_XPMEM_INCLUDE_OPTS -++ CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64 -++ export CRAY_XPMEM_POST_LINK_OPTS -++ CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DMAPP_ABORT_ON_ERROR=1 -++ export DMAPP_ABORT_ON_ERROR -++ DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include -++ export DVS_INCLUDE_OPTS -++ DVS_VERSION=0.9.0 -++ export DVS_VERSION -++ ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GCC_PATH=/opt/gcc/4.9.2 -++ export GCC_PATH -++ GCC_VERSION=4.9.2 -++ export GCC_VERSION -++ GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic -++ export GDB_CROSS -++ GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic -++ export GDB_HOST -++ GNU_VERSION=4.9.2 -++ export GNU_VERSION -++ HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_DIR -++ HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include -++ export HDF5_INCLUDE_OPTS -++ HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_ROOT -++ INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info -++ export INFOPATH -++ INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_MAJOR_VERSION=16.0 -++ export INTEL_MAJOR_VERSION -++ INTEL_MINOR_VERSION=3.210 -++ export INTEL_MINOR_VERSION -++ INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux -++ export INTEL_PATH -++ INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/ -++ export INTEL_PYTHONHOME -++ INTEL_VERSION=16.0.3.210 -++ export INTEL_VERSION -++ IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp -++ export IPPROOT -++ IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib -++ export JASPER_LIBDIR -++ JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la -++ export JASPER_LIBl -++ JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1 -++ export JASPER_SRC -++ JASPER_VER=1.900.1 -++ export JASPER_VER -++ LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib -++ export LD_LIBRARY_PATH -++ LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1 -++ export LIBRARY_PATH -++ LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export LIBSCI_BASE_DIR -++ LIBSCI_VERSION=13.0.3 -++ export LIBSCI_VERSION -++ LIB_NAME=POST -++ export LIB_NAME -++ LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc -++ export LSF_SERVERDIR -++ MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man -++ export MANPATH -++ MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LD_LIBRARY_PATH -++ MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LIBRARY_PATH -++ MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -++ export MODULEPATH -++ MPICH_ABORT_ON_ERROR=1 -++ export MPICH_ABORT_ON_ERROR -++ MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0 -++ export NETCDF_DIR -++ NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export PATH -++ PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig -++ export PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig -++ export PE_CRAY_FIXED_PKGCONFIG_PATH -++ PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4 -++ export PE_CXX_PKGCONFIG_LIBS -++ PE_ENV=INTEL -++ export PE_ENV -++ PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -++ PE_FFTW_DEFAULT_TARGET_haswell=haswell -++ export PE_FFTW_DEFAULT_TARGET_haswell -++ PE_FFTW_DEFAULT_TARGET_interlagos=interlagos -++ export PE_FFTW_DEFAULT_TARGET_interlagos -++ PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge -++ export PE_FFTW_DEFAULT_TARGET_sandybridge -++ PE_FFTW_DEFAULT_TARGET_x86_64=x86_64 -++ export PE_FFTW_DEFAULT_TARGET_x86_64 -++ PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff -++ export PE_FORTRAN_PKGCONFIG_LIBS -++ PE_GA_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_GA_DEFAULT_FIXED_PRGENV -++ PE_GA_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_GA_DEFAULT_GENCOMPS_GNU -++ PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_GA_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_GA_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp -++ export PE_HDF5_CXX_PKGCONFIG_LIBS -++ PE_HDF5_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_DEFAULT_FIXED_PRGENV -++ PE_HDF5_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export PE_HDF5_DIR -++ PE_HDF5_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_FIXED_PRGENV -++ PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran -++ export PE_HDF5_FORTRAN_PKGCONFIG_LIBS -++ PE_HDF5_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_HDF5_GENCOMPILERS_GNU -++ PE_HDF5_GENCOMPS_GNU='51 49 48' -++ export PE_HDF5_GENCOMPS_GNU -++ PE_HDF5_MODULE_NAME=cray-hdf5 -++ export PE_HDF5_MODULE_NAME -++ PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5 -++ export PE_HDF5_PKGCONFIG_LIBS -++ PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_VOLATILE_PRGENV=GNU -++ export PE_HDF5_VOLATILE_PRGENV -++ PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig -++ export PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig -++ export PE_INTEL_FIXED_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -++ PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -++ PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -++ PE_LIBSCI_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3 -++ export PE_LIBSCI_MODULE_NAME -++ PE_LIBSCI_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_OMP_REQUIRES_openmp -++ PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci -++ export PE_LIBSCI_PKGCONFIG_LIBS -++ PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_PKGCONFIG_VARIABLES -++ PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_REQUIRED_PRODUCTS -++ PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_VOLATILE_PRGENV -++ PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64 -++ export PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -++ PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL -++ export PE_MPICH_DEFAULT_FIXED_PRGENV -++ PE_MPICH_DEFAULT_GENCOMPS_CRAY=83 -++ export PE_MPICH_DEFAULT_GENCOMPS_CRAY -++ PE_MPICH_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_MPICH_DEFAULT_GENCOMPS_GNU -++ PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_MPICH_DEFAULT_VOLATILE_PRGENV='CRAY GNU' -++ export PE_MPICH_DEFAULT_VOLATILE_PRGENV -++ PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt -++ export PE_MPICH_MULTITHREADED_LIBS_multithreaded -++ PE_MPICH_NV_LIBS_nvidia20=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia20 -++ PE_MPICH_NV_LIBS_nvidia35=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia35 -++ PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@ -++ export PE_MPICH_PKGCONFIG_VARIABLES -++ PE_MPICH_TARGET_VAR_nvidia20=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia20 -++ PE_MPICH_TARGET_VAR_nvidia35=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia35 -++ PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1 -++ export PE_NETCDF_BASEDIR -++ PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4 -++ export PE_NETCDF_CXX_PKGCONFIG_LIBS -++ PE_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_FIXED_PRGENV -++ PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff -++ export PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -++ PE_NETCDF_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_NETCDF_GENCOMPILERS_GNU -++ PE_NETCDF_GENCOMPS_GNU='51 49 48' -++ export PE_NETCDF_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS='PE_HDF5_PARALLEL PE_MPICH' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_MODULE_NAME=cray-netcdf -++ export PE_NETCDF_MODULE_NAME -++ PE_NETCDF_PKGCONFIG_LIBS=netcdf -++ export PE_NETCDF_PKGCONFIG_LIBS -++ PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_REQUIRED_PRODUCTS -++ PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_VOLATILE_PRGENV -++ PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -++ PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@ -++ export PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -++ PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU='4.9 4.8' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL -++ export PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -++ PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PETSC_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_PETSC_DEFAULT_VOLATILE_PRGENV -++ PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH -++ export PE_PKGCONFIG_DEFAULT_PRODUCTS -++ PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci -++ export PE_PKGCONFIG_LIBS -++ PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI -++ export PE_PKGCONFIG_PRODUCTS -++ PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI -++ export PE_PKGCONFIG_PRODUCTS_DEFAULT -++ PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig -++ export PE_PKG_CONFIG_PATH -++ PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL -++ export PE_PRODUCT_LIST -++ PE_SMA_DIR_CRAY_DEFAULT64=64 -++ export PE_SMA_DIR_CRAY_DEFAULT64 -++ PE_SMA_DIR_PGI_DEFAULT64=64 -++ export PE_SMA_DIR_PGI_DEFAULT64 -++ PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig -++ export PE_SMA_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI -++ export PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -++ PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TPSL_DEFAULT_VOLATILE_PRGENV -++ PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL -++ export PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -++ PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TRILINOS_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -++ PKGCONFIG_ENABLED=1 -++ export PKGCONFIG_ENABLED -++ PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig -++ export PKG_CONFIG_PATH -++ PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig -++ export PKG_CONFIG_PATH_DEFAULT -++ PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src -++ export PNG_SRC -++ PNG_VER=1.2.49 -++ export PNG_VER -++ POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SHMEM_ABORT_ON_ERROR=1 -++ export SHMEM_ABORT_ON_ERROR -++ SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh -++ export SLURM_PROLOG -++ SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb -++ export TBBROOT -++ W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid -++ export XLSF_UIDDIR -++ XTOS_VERSION=5.2.82 -++ export XTOS_VERSION -++ XTPE_NETWORK_TARGET=aries -++ export XTPE_NETWORK_TARGET -++ Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export Z_INC -++ Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src -++ export Z_SRC -++ Z_VER=1.2.7 -++ export Z_VER -++ _LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 -++ export _LMFILES_ -+ module list -++ /opt/modules/3.2.10.3/bin/modulecmd bash list -Currently Loaded Modulefiles: - 1) craype-network-aries - 2) craype/2.3.0 - 3) cray-libsci/13.0.3 - 4) udreg/2.3.2-1.0502.10518.2.17.ari - 5) ugni/6.0-1.0502.10863.8.29.ari - 6) pmi/5.0.11 - 7) dmapp/7.0.1-1.0502.11080.8.76.ari - 8) gni-headers/4.0-1.0502.10859.7.8.ari - 9) xpmem/0.1-2.0502.64982.5.3.ari - 10) dvs/2.5_0.9.0-1.0502.2188.1.116.ari - 11) alps/5.2.4-2.0502.9774.31.11.ari - 12) rca/1.0.0-2.0502.60530.1.62.ari - 13) atp/1.8.1 - 14) PrgEnv-intel/5.2.82 - 15) intel/16.3.210 - 16) cray-netcdf/4.3.3.1 - 17) cray-hdf5/1.8.14 - 18) xt-lsfhpc/9.1.3 - 19) craype-haswell - 20) python/2.7.14 - 21) cmake/3.6.2 - 22) gcc/4.9.2 - 23) jasper-gnu-sandybridge/1.900.1 - 24) png-intel-sandybridge/1.2.49 - 25) zlib-intel-sandybridge/1.2.7 - 26) crtm-intel/2.2.6 - 27) g2/3.1.1 - 28) g2tmpl/1.6.0 - 29) bacio/2.0.3 - 30) ip/3.0.2 - 31) sp/2.0.3 - 32) w3nco/2.0.7 - 33) w3emc/2.3.1 - 34) nemsio/2.2.4 - 35) post/8.0.5 - 36) alps/5.2.4-2.0502.9822.32.1.ari - 37) esmf/8.0.0 - 38) fv3 -+ eval -+ cd build_fv3_1 -+ cmake /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model --- The C compiler identification is Intel 16.0.3.20160415 --- The CXX compiler identification is Intel 16.0.3.20160415 --- The Fortran compiler identification is Intel 16.0.3.20160415 --- Cray Programming Environment 2.3.0 C --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Cray Programming Environment 2.3.0 CXX --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Cray Programming Environment 2.3.0 Fortran --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 -- yes --- Found MPI_C: /opt/cray/craype/2.3.0/bin/cc --- Found MPI_CXX: /opt/cray/craype/2.3.0/bin/CC --- Found MPI_Fortran: /opt/cray/craype/2.3.0/bin/ftn -ESMFMKFILE: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -ESMF_F90ESMFLINKRPATHS: -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include (found version "8.0.0") - -Setting configuration for wcoss_cray - -C compiler: Intel 16.0.3.20160415 (cc) -CXX compiler: Intel 16.0.3.20160415 (CC) -Fortran compiler: Intel 16.0.3.20160415 (ftn) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_1 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Built target fv3cpl -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 24%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 25%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 46%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': -H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_1.exe -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 ../modules.fv3_1 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ elapsed=624 -+ echo 'Elapsed time 624 seconds. Compiling finished' -Elapsed time 624 seconds. Compiling finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ export COMPILE_NR=10 ++ COMPILE_NR=10 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=10 ++ TEST_NR=10 ++ export JBNME=compile_10 ++ JBNME=compile_10 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_10 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129095 +TEST 10 compile is waiting to enter the queue +1 min. TEST 10 compile is running, Status: RUN +2 min. TEST 10 compile is running, Status: RUN +3 min. TEST 10 compile is running, Status: RUN +4 min. TEST 10 compile is running, Status: RUN +5 min. TEST 10 compile is running, Status: RUN +6 min. TEST 10 compile is running, Status: RUN +7 min. TEST 10 compile is running, Status: RUN +8 min. TEST 10 compile is running, Status: RUN +9 min. TEST 10 compile is running, Status: RUN +10 min. TEST 10 compile is running, Status: RUN +11 min. TEST 10 compile is running, Status: RUN +12 min. TEST 10 compile is running, Status: RUN +13 min. TEST 10 compile is running, Status: RUN +14 min. TEST 10 compile is running, Status: RUN +15 min. TEST 10 compile is running, Status: RUN +16 min. TEST 10 compile is finished, Status: DONE ++ elapsed=966 ++ echo 'Elapsed time 966 seconds. Compile 10' +Elapsed time 966 seconds. Compile 10 + SECONDS=0 -+++ readlink -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_cray -+ MAKE_OPT=WW3=Y -+ BUILD_NAME=fv3_2 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_2 -+ [[ wcoss_cray == cheyenne.* ]] -+ [[ wcoss_cray == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -slogin2 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling WW3=Y into fv3_2.exe on wcoss_cray' -Compiling WW3=Y into fv3_2.exe on wcoss_cray -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ mkdir -p build_fv3_2 -+ CCPP_CMAKE_FLAGS= -+ [[ WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ WW3=Y == *\C\C\P\P\=\Y* ]] -+ [[ WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DWW3=Y' -++ trim ' -DWW3=Y' -++ local 'var= -DWW3=Y' -++ var=-DWW3=Y -++ var=-DWW3=Y -++ echo -n -DWW3=Y -+ CCPP_CMAKE_FLAGS=-DWW3=Y -+ source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__13934 -++ eval 'setup__test_function__13934() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__13934 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ eval module help -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -intel(3):ERROR:105: Unable to locate a modulefile for 'intel/16.0.3.210' -fv3(65):ERROR:105: Unable to locate a modulefile for 'g2/3.1.1' -fv3(66):ERROR:105: Unable to locate a modulefile for 'g2tmpl/1.6.0' -fv3(70):ERROR:105: Unable to locate a modulefile for 'bacio/2.0.3' -fv3(71):ERROR:105: Unable to locate a modulefile for 'ip/3.0.2' -fv3(72):ERROR:105: Unable to locate a modulefile for 'sp/2.0.3' -fv3(73):ERROR:105: Unable to locate a modulefile for 'w3nco/2.0.7' -fv3(74):ERROR:105: Unable to locate a modulefile for 'w3emc/2.3.1' -fv3(75):ERROR:105: Unable to locate a modulefile for 'nemsio/2.2.4' -fv3(78):ERROR:105: Unable to locate a modulefile for 'post/8.0.5' -fv3(19):ERROR:105: Unable to locate a modulefile for 'esmf/8.0.0' -++ eval INFOPATH=/usr/local/info:/usr/share/info:/usr/info ';export' 'INFOPATH;MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_DEFAULT_REQUIRED_PRODUCTS;unset' 'ATP_HOME;unset' 'ATP_MRNET_COMM_PATH;unset' 'ATP_POST_LINK_OPTS;unset' 'BACIO_LIB4;unset' 'BACIO_LIB8;unset' 'BACIO_SRC;unset' 'BACIO_VER;unset' 'CMAKE_CXX_COMPILER;unset' 'CMAKE_C_COMPILER;unset' 'CMAKE_Fortran_COMPILER;unset' 'CMAKE_Platform;unset' 'COMP;unset' 'CPATH;unset' 'CRAYOS_VERSION;unset' 'CRAYPE_DIR;unset' 'CRAYPE_NETWORK_TARGET;unset' 'CRAYPE_VERSION;unset' 'CRAY_ALPS_INCLUDE_OPTS;unset' 'CRAY_ALPS_POST_LINK_OPTS;unset' 'CRAY_CPU_TARGET;unset' 'CRAY_DMAPP_INCLUDE_OPTS;unset' 'CRAY_DMAPP_POST_LINK_OPTS;unset' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;unset' 'CRAY_HDF5_DIR;unset' 'CRAY_HDF5_VERSION;unset' 'CRAY_LD_LIBRARY_PATH;unset' 'CRAY_LIBSCI_BASE_DIR;unset' 'CRAY_LIBSCI_DIR;unset' 'CRAY_LIBSCI_PREFIX_DIR;unset' 'CRAY_LIBSCI_VERSION;unset' 'CRAY_NETCDF_VERSION;unset' 'CRAY_PE_MODULES;unset' 'CRAY_PMI_INCLUDE_OPTS;unset' 'CRAY_PMI_POST_LINK_OPTS;unset' 'CRAY_PRE_COMPILE_OPTS;unset' 'CRAY_PRGENVINTEL;unset' 'CRAY_RCA_INCLUDE_OPTS;unset' 'CRAY_RCA_POST_LINK_OPTS;unset' 'CRAY_UDREG_INCLUDE_OPTS;unset' 'CRAY_UDREG_POST_LINK_OPTS;unset' 'CRAY_UGNI_INCLUDE_OPTS;unset' 'CRAY_UGNI_POST_LINK_OPTS;unset' 'CRAY_XPMEM_INCLUDE_OPTS;unset' 'CRAY_XPMEM_POST_LINK_OPTS;unset' 'CRTM_FIX;unset' 'CRTM_INC;unset' 'CRTM_LIB;unset' 'CRTM_SRC;unset' 'CRTM_VER;unset' 'DMAPP_ABORT_ON_ERROR;unset' 'DVS_INCLUDE_OPTS;unset' 'DVS_VERSION;unset' 'ECF_HOSTFILE;unset' 'ECF_PORT;unset' 'ECF_ROOT;unset' 'ESMFMKFILE;unset' 'G2TMPL_INC;unset' 'G2TMPL_LIB;unset' 'G2TMPL_SRC;unset' 'G2TMPL_VER;unset' 'G2_INC4;unset' 'G2_INCd;unset' 'G2_LIB4;unset' 'G2_LIBd;unset' 'G2_SRC;unset' 'G2_VER;unset' 'GCC_PATH;unset' 'GCC_VERSION;unset' 'GDBSERVER_MIC;unset' 'GDB_CROSS;unset' 'GDB_HOST;unset' 'GNU_VERSION;unset' 'HDF5_DIR;unset' 'HDF5_INCLUDE_OPTS;unset' 'HDF5_ROOT;unset' 'INTEL_LICENSE_FILE;unset' 'INTEL_MAJOR_VERSION;unset' 'INTEL_MINOR_VERSION;unset' 'INTEL_PATH;unset' 'INTEL_PYTHONHOME;unset' 'INTEL_VERSION;unset' 'IPPROOT;unset' 'IP_INC4;unset' 'IP_INC8;unset' 'IP_INCd;unset' 'IP_LIB4;unset' 'IP_LIB8;unset' 'IP_LIBd;unset' 'IP_SRC;unset' 'IP_VER;unset' 'JASPER_INC;unset' 'JASPER_LIB;unset' 'JASPER_LIBDIR;unset' 'JASPER_LIBl;unset' 'JASPER_SRC;unset' 'JASPER_VER;unset' 'LD_LIBRARY_PATH;unset' 'LIBRARY_PATH;unset' 'LIBSCI_BASE_DIR;unset' 'LIBSCI_VERSION;unset' 'LIB_NAME;unset' 'LOADEDMODULES;unset' 'LSF_BINDIR;unset' 'LSF_ENVDIR;unset' 'LSF_LIBDIR;unset' 'LSF_SERVERDIR;unset' 'MIC_LD_LIBRARY_PATH;unset' 'MIC_LIBRARY_PATH;unset' 'MKLROOT;unset' 'MPICH_ABORT_ON_ERROR;unset' 'MPM_LAUNCHER;unset' 'NEMSIO_INC;unset' 'NEMSIO_LIB;unset' 'NEMSIO_SRC;unset' 'NEMSIO_VER;unset' 'NETCDF_DIR;unset' 'NLSPATH;unset' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_CRAY_FIXED_PKGCONFIG_PATH;unset' 'PE_CXX_PKGCONFIG_LIBS;unset' 'PE_ENV;unset' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_FFTW_DEFAULT_TARGET_haswell;unset' 'PE_FFTW_DEFAULT_TARGET_interlagos;unset' 'PE_FFTW_DEFAULT_TARGET_sandybridge;unset' 'PE_FFTW_DEFAULT_TARGET_x86_64;unset' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_GA_DEFAULT_FIXED_PRGENV;unset' 'PE_GA_DEFAULT_GENCOMPS_GNU;unset' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_GA_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_CXX_PKGCONFIG_LIBS;unset' 'PE_HDF5_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_DIR;unset' 'PE_HDF5_FIXED_PRGENV;unset' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_HDF5_GENCOMPILERS_GNU;unset' 'PE_HDF5_GENCOMPS_GNU;unset' 'PE_HDF5_MODULE_NAME;unset' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_PKGCONFIG_LIBS;unset' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_VOLATILE_PRGENV;unset' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_INTEL_FIXED_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;unset' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_MODULE_NAME;unset' 'PE_LIBSCI_OMP_REQUIRES;unset' 'PE_LIBSCI_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_PKGCONFIG_LIBS;unset' 'PE_LIBSCI_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_VOLATILE_PRGENV;unset' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;unset' 'PE_MPICH_DEFAULT_FIXED_PRGENV;unset' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;unset' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;unset' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;unset' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;unset' 'PE_MPICH_NV_LIBS;unset' 'PE_MPICH_NV_LIBS_nvidia20;unset' 'PE_MPICH_NV_LIBS_nvidia35;unset' 'PE_MPICH_PKGCONFIG_VARIABLES;unset' 'PE_MPICH_TARGET_VAR_nvidia20;unset' 'PE_MPICH_TARGET_VAR_nvidia35;unset' 'PE_NETCDF_BASEDIR;unset' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;unset' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_FIXED_PRGENV;unset' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_NETCDF_GENCOMPILERS_GNU;unset' 'PE_NETCDF_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_MODULE_NAME;unset' 'PE_NETCDF_PKGCONFIG_LIBS;unset' 'PE_NETCDF_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_VOLATILE_PRGENV;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;unset' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;unset' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;unset' 'PE_PKGCONFIG_LIBS;unset' 'PE_PKGCONFIG_PRODUCTS;unset' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;unset' 'PE_PKG_CONFIG_PATH;unset' 'PE_PRODUCT_LIST;unset' 'PE_SMA_DIR_CRAY_DEFAULT64;unset' 'PE_SMA_DIR_PGI_DEFAULT64;unset' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;unset' 'PKGCONFIG_ENABLED;unset' 'PKG_CONFIG_PATH;unset' 'PKG_CONFIG_PATH_DEFAULT;unset' 'PNG_INC;unset' 'PNG_LIB;unset' 'PNG_LIB12;unset' 'PNG_LIBDIR;unset' 'PNG_LIBso;unset' 'PNG_SRC;unset' 'PNG_VER;unset' 'POST_INC;unset' 'POST_LIB;unset' 'POST_SRC;unset' 'POST_VER;unset' 'PYTHONPATH;unset' 'QT_PLUGIN_PATH;unset' 'SHMEM_ABORT_ON_ERROR;unset' 'SLURM_PROLOG;unset' 'SP_LIB4;unset' 'SP_LIB8;unset' 'SP_LIBd;unset' 'SP_SRC;unset' 'SP_VER;unset' 'TBBROOT;unset' 'W3EMC_INC4;unset' 'W3EMC_INC8;unset' 'W3EMC_INCd;unset' 'W3EMC_LIB4;unset' 'W3EMC_LIB8;unset' 'W3EMC_LIBd;unset' 'W3EMC_SRC;unset' 'W3EMC_VER;unset' 'W3NCO_LIB4;unset' 'W3NCO_LIB8;unset' 'W3NCO_LIBd;unset' 'W3NCO_SRC;unset' 'W3NCO_VER;unset' 'XLSF_UIDDIR;unset' 'XTOS_VERSION;unset' 'XTPE_NETWORK_TARGET;unset' 'Z_INC;unset' 'Z_LIB;unset' 'Z_SRC;unset' 'Z_VER;unset' '_LMFILES_;' -+++ INFOPATH=/usr/local/info:/usr/share/info:/usr/info -+++ export INFOPATH -+++ MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man -+++ export MANPATH -+++ MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -+++ PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin -+++ export PATH -+++ PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -+++ export PE_HDF5_DEFAULT_REQUIRED_PRODUCTS -+++ unset ATP_HOME -+++ unset ATP_MRNET_COMM_PATH -+++ unset ATP_POST_LINK_OPTS -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset CPATH -+++ unset CRAYOS_VERSION -+++ unset CRAYPE_DIR -+++ unset CRAYPE_NETWORK_TARGET -+++ unset CRAYPE_VERSION -+++ unset CRAY_ALPS_INCLUDE_OPTS -+++ unset CRAY_ALPS_POST_LINK_OPTS -+++ unset CRAY_CPU_TARGET -+++ unset CRAY_DMAPP_INCLUDE_OPTS -+++ unset CRAY_DMAPP_POST_LINK_OPTS -+++ unset CRAY_GNI_HEADERS_INCLUDE_OPTS -+++ unset CRAY_HDF5_DIR -+++ unset CRAY_HDF5_VERSION -+++ unset CRAY_LD_LIBRARY_PATH -+++ unset CRAY_LIBSCI_BASE_DIR -+++ unset CRAY_LIBSCI_DIR -+++ unset CRAY_LIBSCI_PREFIX_DIR -+++ unset CRAY_LIBSCI_VERSION -+++ unset CRAY_NETCDF_VERSION -+++ unset CRAY_PE_MODULES -+++ unset CRAY_PMI_INCLUDE_OPTS -+++ unset CRAY_PMI_POST_LINK_OPTS -+++ unset CRAY_PRE_COMPILE_OPTS -+++ unset CRAY_PRGENVINTEL -+++ unset CRAY_RCA_INCLUDE_OPTS -+++ unset CRAY_RCA_POST_LINK_OPTS -+++ unset CRAY_UDREG_INCLUDE_OPTS -+++ unset CRAY_UDREG_POST_LINK_OPTS -+++ unset CRAY_UGNI_INCLUDE_OPTS -+++ unset CRAY_UGNI_POST_LINK_OPTS -+++ unset CRAY_XPMEM_INCLUDE_OPTS -+++ unset CRAY_XPMEM_POST_LINK_OPTS -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DMAPP_ABORT_ON_ERROR -+++ unset DVS_INCLUDE_OPTS -+++ unset DVS_VERSION -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GCC_PATH -+++ unset GCC_VERSION -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset GDB_HOST -+++ unset GNU_VERSION -+++ unset HDF5_DIR -+++ unset HDF5_INCLUDE_OPTS -+++ unset HDF5_ROOT -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_MAJOR_VERSION -+++ unset INTEL_MINOR_VERSION -+++ unset INTEL_PATH -+++ unset INTEL_PYTHONHOME -+++ unset INTEL_VERSION -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_LIBl -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset LD_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIBSCI_BASE_DIR -+++ unset LIBSCI_VERSION -+++ unset LIB_NAME -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ unset MIC_LD_LIBRARY_PATH -+++ unset MIC_LIBRARY_PATH -+++ unset MKLROOT -+++ unset MPICH_ABORT_ON_ERROR -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF_DIR -+++ unset NLSPATH -+++ unset PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_CRAY_FIXED_PKGCONFIG_PATH -+++ unset PE_CXX_PKGCONFIG_LIBS -+++ unset PE_ENV -+++ unset PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_FFTW_DEFAULT_TARGET_haswell -+++ unset PE_FFTW_DEFAULT_TARGET_interlagos -+++ unset PE_FFTW_DEFAULT_TARGET_sandybridge -+++ unset PE_FFTW_DEFAULT_TARGET_x86_64 -+++ unset PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_GA_DEFAULT_FIXED_PRGENV -+++ unset PE_GA_DEFAULT_GENCOMPS_GNU -+++ unset PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_GA_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_CXX_PKGCONFIG_LIBS -+++ unset PE_HDF5_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_DIR -+++ unset PE_HDF5_FIXED_PRGENV -+++ unset PE_HDF5_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_HDF5_GENCOMPILERS_GNU -+++ unset PE_HDF5_GENCOMPS_GNU -+++ unset PE_HDF5_MODULE_NAME -+++ unset PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_PKGCONFIG_LIBS -+++ unset PE_HDF5_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_VOLATILE_PRGENV -+++ unset PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_INTEL_FIXED_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -+++ unset PE_LIBSCI_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_MODULE_NAME -+++ unset PE_LIBSCI_OMP_REQUIRES -+++ unset PE_LIBSCI_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_PKGCONFIG_LIBS -+++ unset PE_LIBSCI_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_VOLATILE_PRGENV -+++ unset PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -+++ unset PE_MPICH_DEFAULT_FIXED_PRGENV -+++ unset PE_MPICH_DEFAULT_GENCOMPS_CRAY -+++ unset PE_MPICH_DEFAULT_GENCOMPS_GNU -+++ unset PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_MPICH_DEFAULT_VOLATILE_PRGENV -+++ unset PE_MPICH_MULTITHREADED_LIBS_multithreaded -+++ unset PE_MPICH_NV_LIBS -+++ unset PE_MPICH_NV_LIBS_nvidia20 -+++ unset PE_MPICH_NV_LIBS_nvidia35 -+++ unset PE_MPICH_PKGCONFIG_VARIABLES -+++ unset PE_MPICH_TARGET_VAR_nvidia20 -+++ unset PE_MPICH_TARGET_VAR_nvidia35 -+++ unset PE_NETCDF_BASEDIR -+++ unset PE_NETCDF_CXX_PKGCONFIG_LIBS -+++ unset PE_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_FIXED_PRGENV -+++ unset PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_NETCDF_GENCOMPILERS_GNU -+++ unset PE_NETCDF_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_MODULE_NAME -+++ unset PE_NETCDF_PKGCONFIG_LIBS -+++ unset PE_NETCDF_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_VOLATILE_PRGENV -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -+++ unset PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -+++ unset PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PETSC_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PKGCONFIG_DEFAULT_PRODUCTS -+++ unset PE_PKGCONFIG_LIBS -+++ unset PE_PKGCONFIG_PRODUCTS -+++ unset PE_PKGCONFIG_PRODUCTS_DEFAULT -+++ unset PE_PKG_CONFIG_PATH -+++ unset PE_PRODUCT_LIST -+++ unset PE_SMA_DIR_CRAY_DEFAULT64 -+++ unset PE_SMA_DIR_PGI_DEFAULT64 -+++ unset PE_SMA_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -+++ unset PKGCONFIG_ENABLED -+++ unset PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH_DEFAULT -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PYTHONPATH -+++ unset QT_PLUGIN_PATH -+++ unset SHMEM_ABORT_ON_ERROR -+++ unset SLURM_PROLOG -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset XTOS_VERSION -+++ unset XTPE_NETWORK_TARGET -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset _LMFILES_ -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -++ eval -++ unset _LMFILES_ -++ unset LOADEDMODULES -++ module use /opt/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/modulefiles -++ eval -++ module use /opt/cray/ari/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/ari/modulefiles -++ eval MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles ';export' 'MODULEPATH;' -+++ MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -++ module use /opt/cray/craype/default/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/craype/default/alt-modulefiles -++ eval -++ module use /opt/cray/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/alt-modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -++ eval -++ module use /usrx/local/prod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /usrx/local/prod/modulefiles -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__13934 -++ unset __ms_function_name -+ [[ wcoss_cray == macosx.* ]] -+ [[ wcoss_cray == linux.* ]] -+ module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -+ eval -+ module load fv3 -++ /opt/modules/3.2.10.3/bin/modulecmd bash load fv3 -+ eval ATP_HOME=/opt/cray/atp/1.8.1 ';export' 'ATP_HOME;ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper' ';export' 'ATP_MRNET_COMM_PATH;ATP_POST_LINK_OPTS=-Wl,-L/opt/cray/atp/1.8.1/libApp/\' ';export' 'ATP_POST_LINK_OPTS;BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a' ';export' 'BACIO_LIB4;BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a' ';export' 'BACIO_LIB8;BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3' ';export' 'BACIO_SRC;BACIO_VER=v2.0.3' ';export' 'BACIO_VER;CMAKE_CXX_COMPILER=CC' ';export' 'CMAKE_CXX_COMPILER;CMAKE_C_COMPILER=cc' ';export' 'CMAKE_C_COMPILER;CMAKE_Fortran_COMPILER=ftn' ';export' 'CMAKE_Fortran_COMPILER;CMAKE_Platform=wcoss_cray' ';export' 'CMAKE_Platform;COMP=intel' ';export' 'COMP;CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include' ';export' 'CPATH;CRAYOS_VERSION=5.2.82' ';export' 'CRAYOS_VERSION;CRAYPE_DIR=/opt/cray/craype/2.3.0' ';export' 'CRAYPE_DIR;CRAYPE_NETWORK_TARGET=aries' ';export' 'CRAYPE_NETWORK_TARGET;CRAYPE_VERSION=2.3.0' ';export' 'CRAYPE_VERSION;CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include' ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_CPU_TARGET=haswell' ';export' 'CRAY_CPU_TARGET;CRAY_DMAPP_INCLUDE_OPTS=-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include\' '-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include\' ';export' 'CRAY_DMAPP_INCLUDE_OPTS;CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64' ';export' 'CRAY_DMAPP_POST_LINK_OPTS;CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include' ';export' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'CRAY_HDF5_DIR;CRAY_HDF5_VERSION=1.8.14' ';export' 'CRAY_HDF5_VERSION;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib' ';export' 'CRAY_LD_LIBRARY_PATH;CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_BASE_DIR;CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_DIR;CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64' ';export' 'CRAY_LIBSCI_PREFIX_DIR;CRAY_LIBSCI_VERSION=13.0.3' ';export' 'CRAY_LIBSCI_VERSION;CRAY_NETCDF_VERSION=4.3.3.1' ';export' 'CRAY_NETCDF_VERSION;CRAY_PE_MODULES=cray-hdf5:cray-netcdf' ';export' 'CRAY_PE_MODULES;CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include' ';export' 'CRAY_PMI_INCLUDE_OPTS;CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64' ';export' 'CRAY_PMI_POST_LINK_OPTS;CRAY_PRE_COMPILE_OPTS=-hnetwork=aries' ';export' 'CRAY_PRE_COMPILE_OPTS;CRAY_PRGENVINTEL=loaded' ';export' 'CRAY_PRGENVINTEL;CRAY_RCA_INCLUDE_OPTS=-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include\' '-I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include\' '-I/opt/cray-hss-devel/7.2.0/include\' ';export' 'CRAY_RCA_INCLUDE_OPTS;CRAY_RCA_POST_LINK_OPTS=-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64\' '-lrca\' ';export' 'CRAY_RCA_POST_LINK_OPTS;CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include' ';export' 'CRAY_UDREG_INCLUDE_OPTS;CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64' ';export' 'CRAY_UDREG_POST_LINK_OPTS;CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include' ';export' 'CRAY_UGNI_INCLUDE_OPTS;CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64' ';export' 'CRAY_UGNI_POST_LINK_OPTS;CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include' ';export' 'CRAY_XPMEM_INCLUDE_OPTS;CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64' ';export' 'CRAY_XPMEM_POST_LINK_OPTS;CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix' ';export' 'CRTM_FIX;CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6' ';export' 'CRTM_INC;CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a' ';export' 'CRTM_LIB;CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src' ';export' 'CRTM_SRC;CRTM_VER=v2.2.6' ';export' 'CRTM_VER;DMAPP_ABORT_ON_ERROR=1' ';export' 'DMAPP_ABORT_ON_ERROR;DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include' ';export' 'DVS_INCLUDE_OPTS;DVS_VERSION=0.9.0' ';export' 'DVS_VERSION;ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk' ';export' 'ESMFMKFILE;G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0' ';export' 'G2TMPL_INC;G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a' ';export' 'G2TMPL_LIB;G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src' ';export' 'G2TMPL_SRC;G2TMPL_VER=v1.6.0' ';export' 'G2TMPL_VER;G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4' ';export' 'G2_INC4;G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d' ';export' 'G2_INCd;G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a' ';export' 'G2_LIB4;G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a' ';export' 'G2_LIBd;G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1' ';export' 'G2_SRC;G2_VER=v3.1.1' ';export' 'G2_VER;GCC_PATH=/opt/gcc/4.9.2' ';export' 'GCC_PATH;GCC_VERSION=4.9.2' ';export' 'GCC_VERSION;GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver' ';export' 'GDBSERVER_MIC;GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic' ';export' 'GDB_CROSS;GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic' ';export' 'GDB_HOST;GNU_VERSION=4.9.2' ';export' 'GNU_VERSION;HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_DIR;HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include' ';export' 'HDF5_INCLUDE_OPTS;HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_ROOT;INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info' ';export' 'INFOPATH;INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses' ';export' 'INTEL_LICENSE_FILE;INTEL_MAJOR_VERSION=16.0' ';export' 'INTEL_MAJOR_VERSION;INTEL_MINOR_VERSION=3.210' ';export' 'INTEL_MINOR_VERSION;INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux' ';export' 'INTEL_PATH;INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/' ';export' 'INTEL_PYTHONHOME;INTEL_VERSION=16.0.3.210' ';export' 'INTEL_VERSION;IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp' ';export' 'IPPROOT;IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4' ';export' 'IP_INC4;IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8' ';export' 'IP_INC8;IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d' ';export' 'IP_INCd;IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a' ';export' 'IP_LIB4;IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a' ';export' 'IP_LIB8;IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a' ';export' 'IP_LIBd;IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2' ';export' 'IP_SRC;IP_VER=v3.0.2' ';export' 'IP_VER;JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include' ';export' 'JASPER_INC;JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a' ';export' 'JASPER_LIB;JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib' ';export' 'JASPER_LIBDIR;JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la' ';export' 'JASPER_LIBl;JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1' ';export' 'JASPER_SRC;JASPER_VER=1.900.1' ';export' 'JASPER_VER;LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib' ';export' 'LD_LIBRARY_PATH;LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1' ';export' 'LIBRARY_PATH;LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'LIBSCI_BASE_DIR;LIBSCI_VERSION=13.0.3' ';export' 'LIBSCI_VERSION;LIB_NAME=POST' ';export' 'LIB_NAME;LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3' ';export' 'LOADEDMODULES;LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin' ';export' 'LSF_BINDIR;LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf' ';export' 'LSF_ENVDIR;LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib' ';export' 'LSF_LIBDIR;LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc' ';export' 'LSF_SERVERDIR;MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man' ';export' 'MANPATH;MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LD_LIBRARY_PATH;MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LIBRARY_PATH;MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl' ';export' 'MKLROOT;MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;MPICH_ABORT_ON_ERROR=1' ';export' 'MPICH_ABORT_ON_ERROR;MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh' ';export' 'MPM_LAUNCHER;NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4' ';export' 'NEMSIO_INC;NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a' ';export' 'NEMSIO_LIB;NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4' ';export' 'NEMSIO_SRC;NEMSIO_VER=v2.2.4' ';export' 'NEMSIO_VER;NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0' ';export' 'NETCDF_DIR;NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N' ';export' 'NLSPATH;PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'PATH;PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig' ';export' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig' ';export' 'PE_CRAY_FIXED_PKGCONFIG_PATH;PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4' ';export' 'PE_CXX_PKGCONFIG_LIBS;PE_ENV=INTEL' ';export' 'PE_ENV;PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;PE_FFTW_DEFAULT_TARGET_haswell=haswell' ';export' 'PE_FFTW_DEFAULT_TARGET_haswell;PE_FFTW_DEFAULT_TARGET_interlagos=interlagos' ';export' 'PE_FFTW_DEFAULT_TARGET_interlagos;PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge' ';export' 'PE_FFTW_DEFAULT_TARGET_sandybridge;PE_FFTW_DEFAULT_TARGET_x86_64=x86_64' ';export' 'PE_FFTW_DEFAULT_TARGET_x86_64;PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff' ';export' 'PE_FORTRAN_PKGCONFIG_LIBS;PE_GA_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_GA_DEFAULT_FIXED_PRGENV;PE_GA_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_GA_DEFAULT_GENCOMPS_GNU;PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_GA_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_GA_DEFAULT_VOLATILE_PRGENV;PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp' ';export' 'PE_HDF5_CXX_PKGCONFIG_LIBS;PE_HDF5_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_DEFAULT_FIXED_PRGENV;PE_HDF5_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;PE_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'PE_HDF5_DIR;PE_HDF5_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_FIXED_PRGENV;PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran' ';export' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;PE_HDF5_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_HDF5_GENCOMPILERS_GNU;PE_HDF5_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_HDF5_GENCOMPS_GNU;PE_HDF5_MODULE_NAME=cray-hdf5' ';export' 'PE_HDF5_MODULE_NAME;PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5' ';export' 'PE_HDF5_PKGCONFIG_LIBS;PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;PE_HDF5_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_VOLATILE_PRGENV;PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig' ';export' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig' ';export' 'PE_INTEL_FIXED_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;PE_LIBSCI_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;PE_LIBSCI_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;PE_LIBSCI_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3' ';export' 'PE_LIBSCI_MODULE_NAME;PE_LIBSCI_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_OMP_REQUIRES_openmp;PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci' ';export' 'PE_LIBSCI_PKGCONFIG_LIBS;PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_PKGCONFIG_VARIABLES;PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_REQUIRED_PRODUCTS;PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_VOLATILE_PRGENV;PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64' ';export' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL' ';export' 'PE_MPICH_DEFAULT_FIXED_PRGENV;PE_MPICH_DEFAULT_GENCOMPS_CRAY=83' ';export' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;PE_MPICH_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_MPICH_DEFAULT_VOLATILE_PRGENV=CRAY\' GNU ';export' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt' ';export' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;PE_MPICH_NV_LIBS_nvidia20=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia20;PE_MPICH_NV_LIBS_nvidia35=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia35;PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@' ';export' 'PE_MPICH_PKGCONFIG_VARIABLES;PE_MPICH_TARGET_VAR_nvidia20=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia20;PE_MPICH_TARGET_VAR_nvidia35=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia35;PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1' ';export' 'PE_NETCDF_BASEDIR;PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4' ';export' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;PE_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;PE_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_FIXED_PRGENV;PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff' ';export' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;PE_NETCDF_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_NETCDF_GENCOMPILERS_GNU;PE_NETCDF_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_NETCDF_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5_PARALLEL\' PE_MPICH ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_MODULE_NAME=cray-netcdf' ';export' 'PE_NETCDF_MODULE_NAME;PE_NETCDF_PKGCONFIG_LIBS=netcdf' ';export' 'PE_NETCDF_PKGCONFIG_LIBS;PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_REQUIRED_PRODUCTS;PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_VOLATILE_PRGENV;PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@' ';export' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU=4.9\' 4.8 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL' ';export' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PETSC_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH' ';export' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci' ';export' 'PE_PKGCONFIG_LIBS;PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI' ';export' 'PE_PKGCONFIG_PRODUCTS;PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI' ';export' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig' ';export' 'PE_PKG_CONFIG_PATH;PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL' ';export' 'PE_PRODUCT_LIST;PE_SMA_DIR_CRAY_DEFAULT64=64' ';export' 'PE_SMA_DIR_CRAY_DEFAULT64;PE_SMA_DIR_PGI_DEFAULT64=64' ';export' 'PE_SMA_DIR_PGI_DEFAULT64;PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig' ';export' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI' ';export' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL' ';export' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TRILINOS_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;PKGCONFIG_ENABLED=1' ';export' 'PKGCONFIG_ENABLED;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig' ';export' 'PKG_CONFIG_PATH;PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH_DEFAULT;PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include' ';export' 'PNG_INC;PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a' ';export' 'PNG_LIB;PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a' ';export' 'PNG_LIB12;PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib' ';export' 'PNG_LIBDIR;PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so' ';export' 'PNG_LIBso;PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src' ';export' 'PNG_SRC;PNG_VER=1.2.49' ';export' 'PNG_VER;POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4' ';export' 'POST_INC;POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a' ';export' 'POST_LIB;POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5' ';export' 'POST_SRC;POST_VER=v8.0.5' ';export' 'POST_VER;SHMEM_ABORT_ON_ERROR=1' ';export' 'SHMEM_ABORT_ON_ERROR;SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh' ';export' 'SLURM_PROLOG;SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a' ';export' 'SP_LIB4;SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a' ';export' 'SP_LIB8;SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a' ';export' 'SP_LIBd;SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3' ';export' 'SP_SRC;SP_VER=v2.0.3' ';export' 'SP_VER;TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb' ';export' 'TBBROOT;W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4' ';export' 'W3EMC_INC4;W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8' ';export' 'W3EMC_INC8;W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d' ';export' 'W3EMC_INCd;W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a' ';export' 'W3EMC_LIB4;W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a' ';export' 'W3EMC_LIB8;W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a' ';export' 'W3EMC_LIBd;W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1' ';export' 'W3EMC_SRC;W3EMC_VER=v2.3.1' ';export' 'W3EMC_VER;W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a' ';export' 'W3NCO_LIB4;W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a' ';export' 'W3NCO_LIB8;W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a' ';export' 'W3NCO_LIBd;W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7' ';export' 'W3NCO_SRC;W3NCO_VER=v2.0.7' ';export' 'W3NCO_VER;XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid' ';export' 'XLSF_UIDDIR;XTOS_VERSION=5.2.82' ';export' 'XTOS_VERSION;XTPE_NETWORK_TARGET=aries' ';export' 'XTPE_NETWORK_TARGET;Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'Z_INC;Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a' ';export' 'Z_LIB;Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src' ';export' 'Z_SRC;Z_VER=1.2.7' ';export' 'Z_VER;_LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3' ';export' '_LMFILES_;' -++ ATP_HOME=/opt/cray/atp/1.8.1 -++ export ATP_HOME -++ ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper -++ export ATP_MRNET_COMM_PATH -++ ATP_POST_LINK_OPTS='-Wl,-L/opt/cray/atp/1.8.1/libApp/ ' -++ export ATP_POST_LINK_OPTS -++ BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ CMAKE_CXX_COMPILER=CC -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=cc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=ftn -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_cray -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include -++ export CPATH -++ CRAYOS_VERSION=5.2.82 -++ export CRAYOS_VERSION -++ CRAYPE_DIR=/opt/cray/craype/2.3.0 -++ export CRAYPE_DIR -++ CRAYPE_NETWORK_TARGET=aries -++ export CRAYPE_NETWORK_TARGET -++ CRAYPE_VERSION=2.3.0 -++ export CRAYPE_VERSION -++ CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include -++ export CRAY_ALPS_INCLUDE_OPTS -++ CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64 -++ export CRAY_ALPS_POST_LINK_OPTS -++ CRAY_CPU_TARGET=haswell -++ export CRAY_CPU_TARGET -++ CRAY_DMAPP_INCLUDE_OPTS='-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include -I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include ' -++ export CRAY_DMAPP_INCLUDE_OPTS -++ CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64 -++ export CRAY_DMAPP_POST_LINK_OPTS -++ CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include -++ export CRAY_GNI_HEADERS_INCLUDE_OPTS -++ CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export CRAY_HDF5_DIR -++ CRAY_HDF5_VERSION=1.8.14 -++ export CRAY_HDF5_VERSION -++ CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib -++ export CRAY_LD_LIBRARY_PATH -++ CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_BASE_DIR -++ CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_DIR -++ CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64 -++ export CRAY_LIBSCI_PREFIX_DIR -++ CRAY_LIBSCI_VERSION=13.0.3 -++ export CRAY_LIBSCI_VERSION -++ CRAY_NETCDF_VERSION=4.3.3.1 -++ export CRAY_NETCDF_VERSION -++ CRAY_PE_MODULES=cray-hdf5:cray-netcdf -++ export CRAY_PE_MODULES -++ CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include -++ export CRAY_PMI_INCLUDE_OPTS -++ CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64 -++ export CRAY_PMI_POST_LINK_OPTS -++ CRAY_PRE_COMPILE_OPTS=-hnetwork=aries -++ export CRAY_PRE_COMPILE_OPTS -++ CRAY_PRGENVINTEL=loaded -++ export CRAY_PRGENVINTEL -++ CRAY_RCA_INCLUDE_OPTS='-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include -I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include -I/opt/cray-hss-devel/7.2.0/include ' -++ export CRAY_RCA_INCLUDE_OPTS -++ CRAY_RCA_POST_LINK_OPTS='-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64 -lrca ' -++ export CRAY_RCA_POST_LINK_OPTS -++ CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include -++ export CRAY_UDREG_INCLUDE_OPTS -++ CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64 -++ export CRAY_UDREG_POST_LINK_OPTS -++ CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include -++ export CRAY_UGNI_INCLUDE_OPTS -++ CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64 -++ export CRAY_UGNI_POST_LINK_OPTS -++ CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include -++ export CRAY_XPMEM_INCLUDE_OPTS -++ CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64 -++ export CRAY_XPMEM_POST_LINK_OPTS -++ CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DMAPP_ABORT_ON_ERROR=1 -++ export DMAPP_ABORT_ON_ERROR -++ DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include -++ export DVS_INCLUDE_OPTS -++ DVS_VERSION=0.9.0 -++ export DVS_VERSION -++ ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GCC_PATH=/opt/gcc/4.9.2 -++ export GCC_PATH -++ GCC_VERSION=4.9.2 -++ export GCC_VERSION -++ GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic -++ export GDB_CROSS -++ GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic -++ export GDB_HOST -++ GNU_VERSION=4.9.2 -++ export GNU_VERSION -++ HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_DIR -++ HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include -++ export HDF5_INCLUDE_OPTS -++ HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_ROOT -++ INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info -++ export INFOPATH -++ INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_MAJOR_VERSION=16.0 -++ export INTEL_MAJOR_VERSION -++ INTEL_MINOR_VERSION=3.210 -++ export INTEL_MINOR_VERSION -++ INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux -++ export INTEL_PATH -++ INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/ -++ export INTEL_PYTHONHOME -++ INTEL_VERSION=16.0.3.210 -++ export INTEL_VERSION -++ IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp -++ export IPPROOT -++ IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib -++ export JASPER_LIBDIR -++ JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la -++ export JASPER_LIBl -++ JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1 -++ export JASPER_SRC -++ JASPER_VER=1.900.1 -++ export JASPER_VER -++ LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib -++ export LD_LIBRARY_PATH -++ LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1 -++ export LIBRARY_PATH -++ LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export LIBSCI_BASE_DIR -++ LIBSCI_VERSION=13.0.3 -++ export LIBSCI_VERSION -++ LIB_NAME=POST -++ export LIB_NAME -++ LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc -++ export LSF_SERVERDIR -++ MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man -++ export MANPATH -++ MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LD_LIBRARY_PATH -++ MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LIBRARY_PATH -++ MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -++ export MODULEPATH -++ MPICH_ABORT_ON_ERROR=1 -++ export MPICH_ABORT_ON_ERROR -++ MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0 -++ export NETCDF_DIR -++ NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export PATH -++ PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig -++ export PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig -++ export PE_CRAY_FIXED_PKGCONFIG_PATH -++ PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4 -++ export PE_CXX_PKGCONFIG_LIBS -++ PE_ENV=INTEL -++ export PE_ENV -++ PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -++ PE_FFTW_DEFAULT_TARGET_haswell=haswell -++ export PE_FFTW_DEFAULT_TARGET_haswell -++ PE_FFTW_DEFAULT_TARGET_interlagos=interlagos -++ export PE_FFTW_DEFAULT_TARGET_interlagos -++ PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge -++ export PE_FFTW_DEFAULT_TARGET_sandybridge -++ PE_FFTW_DEFAULT_TARGET_x86_64=x86_64 -++ export PE_FFTW_DEFAULT_TARGET_x86_64 -++ PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff -++ export PE_FORTRAN_PKGCONFIG_LIBS -++ PE_GA_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_GA_DEFAULT_FIXED_PRGENV -++ PE_GA_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_GA_DEFAULT_GENCOMPS_GNU -++ PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_GA_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_GA_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp -++ export PE_HDF5_CXX_PKGCONFIG_LIBS -++ PE_HDF5_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_DEFAULT_FIXED_PRGENV -++ PE_HDF5_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export PE_HDF5_DIR -++ PE_HDF5_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_FIXED_PRGENV -++ PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran -++ export PE_HDF5_FORTRAN_PKGCONFIG_LIBS -++ PE_HDF5_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_HDF5_GENCOMPILERS_GNU -++ PE_HDF5_GENCOMPS_GNU='51 49 48' -++ export PE_HDF5_GENCOMPS_GNU -++ PE_HDF5_MODULE_NAME=cray-hdf5 -++ export PE_HDF5_MODULE_NAME -++ PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5 -++ export PE_HDF5_PKGCONFIG_LIBS -++ PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_VOLATILE_PRGENV=GNU -++ export PE_HDF5_VOLATILE_PRGENV -++ PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig -++ export PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig -++ export PE_INTEL_FIXED_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -++ PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -++ PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -++ PE_LIBSCI_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3 -++ export PE_LIBSCI_MODULE_NAME -++ PE_LIBSCI_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_OMP_REQUIRES_openmp -++ PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci -++ export PE_LIBSCI_PKGCONFIG_LIBS -++ PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_PKGCONFIG_VARIABLES -++ PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_REQUIRED_PRODUCTS -++ PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_VOLATILE_PRGENV -++ PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64 -++ export PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -++ PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL -++ export PE_MPICH_DEFAULT_FIXED_PRGENV -++ PE_MPICH_DEFAULT_GENCOMPS_CRAY=83 -++ export PE_MPICH_DEFAULT_GENCOMPS_CRAY -++ PE_MPICH_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_MPICH_DEFAULT_GENCOMPS_GNU -++ PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_MPICH_DEFAULT_VOLATILE_PRGENV='CRAY GNU' -++ export PE_MPICH_DEFAULT_VOLATILE_PRGENV -++ PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt -++ export PE_MPICH_MULTITHREADED_LIBS_multithreaded -++ PE_MPICH_NV_LIBS_nvidia20=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia20 -++ PE_MPICH_NV_LIBS_nvidia35=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia35 -++ PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@ -++ export PE_MPICH_PKGCONFIG_VARIABLES -++ PE_MPICH_TARGET_VAR_nvidia20=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia20 -++ PE_MPICH_TARGET_VAR_nvidia35=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia35 -++ PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1 -++ export PE_NETCDF_BASEDIR -++ PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4 -++ export PE_NETCDF_CXX_PKGCONFIG_LIBS -++ PE_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_FIXED_PRGENV -++ PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff -++ export PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -++ PE_NETCDF_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_NETCDF_GENCOMPILERS_GNU -++ PE_NETCDF_GENCOMPS_GNU='51 49 48' -++ export PE_NETCDF_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS='PE_HDF5_PARALLEL PE_MPICH' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_MODULE_NAME=cray-netcdf -++ export PE_NETCDF_MODULE_NAME -++ PE_NETCDF_PKGCONFIG_LIBS=netcdf -++ export PE_NETCDF_PKGCONFIG_LIBS -++ PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_REQUIRED_PRODUCTS -++ PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_VOLATILE_PRGENV -++ PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -++ PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@ -++ export PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -++ PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU='4.9 4.8' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL -++ export PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -++ PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PETSC_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_PETSC_DEFAULT_VOLATILE_PRGENV -++ PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH -++ export PE_PKGCONFIG_DEFAULT_PRODUCTS -++ PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci -++ export PE_PKGCONFIG_LIBS -++ PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI -++ export PE_PKGCONFIG_PRODUCTS -++ PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI -++ export PE_PKGCONFIG_PRODUCTS_DEFAULT -++ PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig -++ export PE_PKG_CONFIG_PATH -++ PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL -++ export PE_PRODUCT_LIST -++ PE_SMA_DIR_CRAY_DEFAULT64=64 -++ export PE_SMA_DIR_CRAY_DEFAULT64 -++ PE_SMA_DIR_PGI_DEFAULT64=64 -++ export PE_SMA_DIR_PGI_DEFAULT64 -++ PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig -++ export PE_SMA_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI -++ export PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -++ PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TPSL_DEFAULT_VOLATILE_PRGENV -++ PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL -++ export PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -++ PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TRILINOS_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -++ PKGCONFIG_ENABLED=1 -++ export PKGCONFIG_ENABLED -++ PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig -++ export PKG_CONFIG_PATH -++ PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig -++ export PKG_CONFIG_PATH_DEFAULT -++ PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src -++ export PNG_SRC -++ PNG_VER=1.2.49 -++ export PNG_VER -++ POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SHMEM_ABORT_ON_ERROR=1 -++ export SHMEM_ABORT_ON_ERROR -++ SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh -++ export SLURM_PROLOG -++ SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb -++ export TBBROOT -++ W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid -++ export XLSF_UIDDIR -++ XTOS_VERSION=5.2.82 -++ export XTOS_VERSION -++ XTPE_NETWORK_TARGET=aries -++ export XTPE_NETWORK_TARGET -++ Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export Z_INC -++ Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src -++ export Z_SRC -++ Z_VER=1.2.7 -++ export Z_VER -++ _LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 -++ export _LMFILES_ -+ module list -++ /opt/modules/3.2.10.3/bin/modulecmd bash list -Currently Loaded Modulefiles: - 1) craype-network-aries - 2) craype/2.3.0 - 3) cray-libsci/13.0.3 - 4) udreg/2.3.2-1.0502.10518.2.17.ari - 5) ugni/6.0-1.0502.10863.8.29.ari - 6) pmi/5.0.11 - 7) dmapp/7.0.1-1.0502.11080.8.76.ari - 8) gni-headers/4.0-1.0502.10859.7.8.ari - 9) xpmem/0.1-2.0502.64982.5.3.ari - 10) dvs/2.5_0.9.0-1.0502.2188.1.116.ari - 11) alps/5.2.4-2.0502.9774.31.11.ari - 12) rca/1.0.0-2.0502.60530.1.62.ari - 13) atp/1.8.1 - 14) PrgEnv-intel/5.2.82 - 15) intel/16.3.210 - 16) cray-netcdf/4.3.3.1 - 17) cray-hdf5/1.8.14 - 18) xt-lsfhpc/9.1.3 - 19) craype-haswell - 20) python/2.7.14 - 21) cmake/3.6.2 - 22) gcc/4.9.2 - 23) jasper-gnu-sandybridge/1.900.1 - 24) png-intel-sandybridge/1.2.49 - 25) zlib-intel-sandybridge/1.2.7 - 26) crtm-intel/2.2.6 - 27) g2/3.1.1 - 28) g2tmpl/1.6.0 - 29) bacio/2.0.3 - 30) ip/3.0.2 - 31) sp/2.0.3 - 32) w3nco/2.0.7 - 33) w3emc/2.3.1 - 34) nemsio/2.2.4 - 35) post/8.0.5 - 36) alps/5.2.4-2.0502.9822.32.1.ari - 37) esmf/8.0.0 - 38) fv3 -+ eval -+ cd build_fv3_2 -+ cmake /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DWW3=Y --- The C compiler identification is Intel 16.0.3.20160415 --- The CXX compiler identification is Intel 16.0.3.20160415 --- The Fortran compiler identification is Intel 16.0.3.20160415 --- Cray Programming Environment 2.3.0 C --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Cray Programming Environment 2.3.0 CXX --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Cray Programming Environment 2.3.0 Fortran --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 -- yes --- Found MPI_C: /opt/cray/craype/2.3.0/bin/cc --- Found MPI_CXX: /opt/cray/craype/2.3.0/bin/CC --- Found MPI_Fortran: /opt/cray/craype/2.3.0/bin/ftn -ESMFMKFILE: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -ESMF_F90ESMFLINKRPATHS: -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include (found version "8.0.0") - -Setting configuration for wcoss_cray - -C compiler: Intel 16.0.3.20160415 (cc) -CXX compiler: Intel 16.0.3.20160415 (CC) -Fortran compiler: Intel 16.0.3.20160415 (ftn) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=wcoss_cray ww3_nems - in: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_2 -+ make -j 8 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Linking Fortran static library libfv3cpl.a -[ 5%] Built target fv3cpl -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Built target ww3_nems -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Scanning dependencies of target fv3core -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': -H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_2.exe -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 ../modules.fv3_2 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ elapsed=631 -+ echo 'Elapsed time 631 seconds. Compiling WW3=Y finished' -Elapsed time 631 seconds. Compiling WW3=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=11 ++ COMPILE_NR=11 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=11 ++ TEST_NR=11 ++ export JBNME=compile_11 ++ JBNME=compile_11 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_11 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129247 +TEST 11 compile is waiting to enter the queue +1 min. TEST 11 compile is running, Status: RUN +2 min. TEST 11 compile is running, Status: RUN +3 min. TEST 11 compile is running, Status: RUN +4 min. TEST 11 compile is running, Status: RUN +5 min. TEST 11 compile is running, Status: RUN +6 min. TEST 11 compile is running, Status: RUN +7 min. TEST 11 compile is running, Status: RUN +8 min. TEST 11 compile is running, Status: RUN +9 min. TEST 11 compile is running, Status: RUN +10 min. TEST 11 compile is running, Status: RUN +11 min. TEST 11 compile is running, Status: RUN +12 min. TEST 11 compile is running, Status: RUN +13 min. TEST 11 compile is running, Status: RUN +14 min. TEST 11 compile is running, Status: RUN +15 min. TEST 11 compile is finished, Status: DONE ++ elapsed=906 ++ echo 'Elapsed time 906 seconds. Compile 11' +Elapsed time 906 seconds. Compile 11 + SECONDS=0 -+++ readlink -f /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_cray -+ MAKE_OPT=32BIT=Y -+ BUILD_NAME=fv3_3 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_3 -+ [[ wcoss_cray == cheyenne.* ]] -+ [[ wcoss_cray == wcoss_dell_p3 ]] -+ MAKE_THREADS=8 -+ hostname -slogin2 -+ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling 32BIT=Y into fv3_3.exe on wcoss_cray' -Compiling 32BIT=Y into fv3_3.exe on wcoss_cray -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ mkdir -p build_fv3_3 -+ CCPP_CMAKE_FLAGS= -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y' -++ local 'var= -D32BIT=Y' -++ var=-D32BIT=Y -++ var=-D32BIT=Y -++ echo -n -D32BIT=Y -+ CCPP_CMAKE_FLAGS=-D32BIT=Y -+ source /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__13935 -++ eval 'setup__test_function__13935() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__13935 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ eval module help -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -intel(3):ERROR:105: Unable to locate a modulefile for 'intel/16.0.3.210' -fv3(65):ERROR:105: Unable to locate a modulefile for 'g2/3.1.1' -fv3(66):ERROR:105: Unable to locate a modulefile for 'g2tmpl/1.6.0' -fv3(70):ERROR:105: Unable to locate a modulefile for 'bacio/2.0.3' -fv3(71):ERROR:105: Unable to locate a modulefile for 'ip/3.0.2' -fv3(72):ERROR:105: Unable to locate a modulefile for 'sp/2.0.3' -fv3(73):ERROR:105: Unable to locate a modulefile for 'w3nco/2.0.7' -fv3(74):ERROR:105: Unable to locate a modulefile for 'w3emc/2.3.1' -fv3(75):ERROR:105: Unable to locate a modulefile for 'nemsio/2.2.4' -fv3(78):ERROR:105: Unable to locate a modulefile for 'post/8.0.5' -fv3(19):ERROR:105: Unable to locate a modulefile for 'esmf/8.0.0' -++ eval INFOPATH=/usr/local/info:/usr/share/info:/usr/info ';export' 'INFOPATH;MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man' ';export' 'MANPATH;MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin' ';export' 'PATH;PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_DEFAULT_REQUIRED_PRODUCTS;unset' 'ATP_HOME;unset' 'ATP_MRNET_COMM_PATH;unset' 'ATP_POST_LINK_OPTS;unset' 'BACIO_LIB4;unset' 'BACIO_LIB8;unset' 'BACIO_SRC;unset' 'BACIO_VER;unset' 'CMAKE_CXX_COMPILER;unset' 'CMAKE_C_COMPILER;unset' 'CMAKE_Fortran_COMPILER;unset' 'CMAKE_Platform;unset' 'COMP;unset' 'CPATH;unset' 'CRAYOS_VERSION;unset' 'CRAYPE_DIR;unset' 'CRAYPE_NETWORK_TARGET;unset' 'CRAYPE_VERSION;unset' 'CRAY_ALPS_INCLUDE_OPTS;unset' 'CRAY_ALPS_POST_LINK_OPTS;unset' 'CRAY_CPU_TARGET;unset' 'CRAY_DMAPP_INCLUDE_OPTS;unset' 'CRAY_DMAPP_POST_LINK_OPTS;unset' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;unset' 'CRAY_HDF5_DIR;unset' 'CRAY_HDF5_VERSION;unset' 'CRAY_LD_LIBRARY_PATH;unset' 'CRAY_LIBSCI_BASE_DIR;unset' 'CRAY_LIBSCI_DIR;unset' 'CRAY_LIBSCI_PREFIX_DIR;unset' 'CRAY_LIBSCI_VERSION;unset' 'CRAY_NETCDF_VERSION;unset' 'CRAY_PE_MODULES;unset' 'CRAY_PMI_INCLUDE_OPTS;unset' 'CRAY_PMI_POST_LINK_OPTS;unset' 'CRAY_PRE_COMPILE_OPTS;unset' 'CRAY_PRGENVINTEL;unset' 'CRAY_RCA_INCLUDE_OPTS;unset' 'CRAY_RCA_POST_LINK_OPTS;unset' 'CRAY_UDREG_INCLUDE_OPTS;unset' 'CRAY_UDREG_POST_LINK_OPTS;unset' 'CRAY_UGNI_INCLUDE_OPTS;unset' 'CRAY_UGNI_POST_LINK_OPTS;unset' 'CRAY_XPMEM_INCLUDE_OPTS;unset' 'CRAY_XPMEM_POST_LINK_OPTS;unset' 'CRTM_FIX;unset' 'CRTM_INC;unset' 'CRTM_LIB;unset' 'CRTM_SRC;unset' 'CRTM_VER;unset' 'DMAPP_ABORT_ON_ERROR;unset' 'DVS_INCLUDE_OPTS;unset' 'DVS_VERSION;unset' 'ECF_HOSTFILE;unset' 'ECF_PORT;unset' 'ECF_ROOT;unset' 'ESMFMKFILE;unset' 'G2TMPL_INC;unset' 'G2TMPL_LIB;unset' 'G2TMPL_SRC;unset' 'G2TMPL_VER;unset' 'G2_INC4;unset' 'G2_INCd;unset' 'G2_LIB4;unset' 'G2_LIBd;unset' 'G2_SRC;unset' 'G2_VER;unset' 'GCC_PATH;unset' 'GCC_VERSION;unset' 'GDBSERVER_MIC;unset' 'GDB_CROSS;unset' 'GDB_HOST;unset' 'GNU_VERSION;unset' 'HDF5_DIR;unset' 'HDF5_INCLUDE_OPTS;unset' 'HDF5_ROOT;unset' 'INTEL_LICENSE_FILE;unset' 'INTEL_MAJOR_VERSION;unset' 'INTEL_MINOR_VERSION;unset' 'INTEL_PATH;unset' 'INTEL_PYTHONHOME;unset' 'INTEL_VERSION;unset' 'IPPROOT;unset' 'IP_INC4;unset' 'IP_INC8;unset' 'IP_INCd;unset' 'IP_LIB4;unset' 'IP_LIB8;unset' 'IP_LIBd;unset' 'IP_SRC;unset' 'IP_VER;unset' 'JASPER_INC;unset' 'JASPER_LIB;unset' 'JASPER_LIBDIR;unset' 'JASPER_LIBl;unset' 'JASPER_SRC;unset' 'JASPER_VER;unset' 'LD_LIBRARY_PATH;unset' 'LIBRARY_PATH;unset' 'LIBSCI_BASE_DIR;unset' 'LIBSCI_VERSION;unset' 'LIB_NAME;unset' 'LOADEDMODULES;unset' 'LSF_BINDIR;unset' 'LSF_ENVDIR;unset' 'LSF_LIBDIR;unset' 'LSF_SERVERDIR;unset' 'MIC_LD_LIBRARY_PATH;unset' 'MIC_LIBRARY_PATH;unset' 'MKLROOT;unset' 'MPICH_ABORT_ON_ERROR;unset' 'MPM_LAUNCHER;unset' 'NEMSIO_INC;unset' 'NEMSIO_LIB;unset' 'NEMSIO_SRC;unset' 'NEMSIO_VER;unset' 'NETCDF_DIR;unset' 'NLSPATH;unset' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_CRAY_FIXED_PKGCONFIG_PATH;unset' 'PE_CXX_PKGCONFIG_LIBS;unset' 'PE_ENV;unset' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_FFTW_DEFAULT_TARGET_haswell;unset' 'PE_FFTW_DEFAULT_TARGET_interlagos;unset' 'PE_FFTW_DEFAULT_TARGET_sandybridge;unset' 'PE_FFTW_DEFAULT_TARGET_x86_64;unset' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_GA_DEFAULT_FIXED_PRGENV;unset' 'PE_GA_DEFAULT_GENCOMPS_GNU;unset' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_GA_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_CXX_PKGCONFIG_LIBS;unset' 'PE_HDF5_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_DIR;unset' 'PE_HDF5_FIXED_PRGENV;unset' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_HDF5_GENCOMPILERS_GNU;unset' 'PE_HDF5_GENCOMPS_GNU;unset' 'PE_HDF5_MODULE_NAME;unset' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_HDF5_PKGCONFIG_LIBS;unset' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;unset' 'PE_HDF5_VOLATILE_PRGENV;unset' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;unset' 'PE_INTEL_FIXED_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES;unset' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;unset' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;unset' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;unset' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;unset' 'PE_LIBSCI_MODULE_NAME;unset' 'PE_LIBSCI_OMP_REQUIRES;unset' 'PE_LIBSCI_OMP_REQUIRES_openmp;unset' 'PE_LIBSCI_PKGCONFIG_LIBS;unset' 'PE_LIBSCI_PKGCONFIG_VARIABLES;unset' 'PE_LIBSCI_REQUIRED_PRODUCTS;unset' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;unset' 'PE_LIBSCI_VOLATILE_PRGENV;unset' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;unset' 'PE_MPICH_DEFAULT_FIXED_PRGENV;unset' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;unset' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;unset' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;unset' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;unset' 'PE_MPICH_NV_LIBS;unset' 'PE_MPICH_NV_LIBS_nvidia20;unset' 'PE_MPICH_NV_LIBS_nvidia35;unset' 'PE_MPICH_PKGCONFIG_VARIABLES;unset' 'PE_MPICH_TARGET_VAR_nvidia20;unset' 'PE_MPICH_TARGET_VAR_nvidia35;unset' 'PE_NETCDF_BASEDIR;unset' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;unset' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_FIXED_PRGENV;unset' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;unset' 'PE_NETCDF_GENCOMPILERS_GNU;unset' 'PE_NETCDF_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_NETCDF_MODULE_NAME;unset' 'PE_NETCDF_PKGCONFIG_LIBS;unset' 'PE_NETCDF_REQUIRED_PRODUCTS;unset' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;unset' 'PE_NETCDF_VOLATILE_PRGENV;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS;unset' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;unset' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;unset' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;unset' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;unset' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;unset' 'PE_PKGCONFIG_LIBS;unset' 'PE_PKGCONFIG_PRODUCTS;unset' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;unset' 'PE_PKG_CONFIG_PATH;unset' 'PE_PRODUCT_LIST;unset' 'PE_SMA_DIR_CRAY_DEFAULT64;unset' 'PE_SMA_DIR_PGI_DEFAULT64;unset' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;unset' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;unset' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;unset' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;unset' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;unset' 'PKGCONFIG_ENABLED;unset' 'PKG_CONFIG_PATH;unset' 'PKG_CONFIG_PATH_DEFAULT;unset' 'PNG_INC;unset' 'PNG_LIB;unset' 'PNG_LIB12;unset' 'PNG_LIBDIR;unset' 'PNG_LIBso;unset' 'PNG_SRC;unset' 'PNG_VER;unset' 'POST_INC;unset' 'POST_LIB;unset' 'POST_SRC;unset' 'POST_VER;unset' 'PYTHONPATH;unset' 'QT_PLUGIN_PATH;unset' 'SHMEM_ABORT_ON_ERROR;unset' 'SLURM_PROLOG;unset' 'SP_LIB4;unset' 'SP_LIB8;unset' 'SP_LIBd;unset' 'SP_SRC;unset' 'SP_VER;unset' 'TBBROOT;unset' 'W3EMC_INC4;unset' 'W3EMC_INC8;unset' 'W3EMC_INCd;unset' 'W3EMC_LIB4;unset' 'W3EMC_LIB8;unset' 'W3EMC_LIBd;unset' 'W3EMC_SRC;unset' 'W3EMC_VER;unset' 'W3NCO_LIB4;unset' 'W3NCO_LIB8;unset' 'W3NCO_LIBd;unset' 'W3NCO_SRC;unset' 'W3NCO_VER;unset' 'XLSF_UIDDIR;unset' 'XTOS_VERSION;unset' 'XTPE_NETWORK_TARGET;unset' 'Z_INC;unset' 'Z_LIB;unset' 'Z_SRC;unset' 'Z_VER;unset' '_LMFILES_;' -+++ INFOPATH=/usr/local/info:/usr/share/info:/usr/info -+++ export INFOPATH -+++ MANPATH=/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man -+++ export MANPATH -+++ MODULEPATH=/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -+++ PATH=/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin -+++ export PATH -+++ PE_HDF5_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -+++ export PE_HDF5_DEFAULT_REQUIRED_PRODUCTS -+++ unset ATP_HOME -+++ unset ATP_MRNET_COMM_PATH -+++ unset ATP_POST_LINK_OPTS -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset CPATH -+++ unset CRAYOS_VERSION -+++ unset CRAYPE_DIR -+++ unset CRAYPE_NETWORK_TARGET -+++ unset CRAYPE_VERSION -+++ unset CRAY_ALPS_INCLUDE_OPTS -+++ unset CRAY_ALPS_POST_LINK_OPTS -+++ unset CRAY_CPU_TARGET -+++ unset CRAY_DMAPP_INCLUDE_OPTS -+++ unset CRAY_DMAPP_POST_LINK_OPTS -+++ unset CRAY_GNI_HEADERS_INCLUDE_OPTS -+++ unset CRAY_HDF5_DIR -+++ unset CRAY_HDF5_VERSION -+++ unset CRAY_LD_LIBRARY_PATH -+++ unset CRAY_LIBSCI_BASE_DIR -+++ unset CRAY_LIBSCI_DIR -+++ unset CRAY_LIBSCI_PREFIX_DIR -+++ unset CRAY_LIBSCI_VERSION -+++ unset CRAY_NETCDF_VERSION -+++ unset CRAY_PE_MODULES -+++ unset CRAY_PMI_INCLUDE_OPTS -+++ unset CRAY_PMI_POST_LINK_OPTS -+++ unset CRAY_PRE_COMPILE_OPTS -+++ unset CRAY_PRGENVINTEL -+++ unset CRAY_RCA_INCLUDE_OPTS -+++ unset CRAY_RCA_POST_LINK_OPTS -+++ unset CRAY_UDREG_INCLUDE_OPTS -+++ unset CRAY_UDREG_POST_LINK_OPTS -+++ unset CRAY_UGNI_INCLUDE_OPTS -+++ unset CRAY_UGNI_POST_LINK_OPTS -+++ unset CRAY_XPMEM_INCLUDE_OPTS -+++ unset CRAY_XPMEM_POST_LINK_OPTS -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DMAPP_ABORT_ON_ERROR -+++ unset DVS_INCLUDE_OPTS -+++ unset DVS_VERSION -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GCC_PATH -+++ unset GCC_VERSION -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset GDB_HOST -+++ unset GNU_VERSION -+++ unset HDF5_DIR -+++ unset HDF5_INCLUDE_OPTS -+++ unset HDF5_ROOT -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_MAJOR_VERSION -+++ unset INTEL_MINOR_VERSION -+++ unset INTEL_PATH -+++ unset INTEL_PYTHONHOME -+++ unset INTEL_VERSION -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_LIBl -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset LD_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIBSCI_BASE_DIR -+++ unset LIBSCI_VERSION -+++ unset LIB_NAME -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ unset MIC_LD_LIBRARY_PATH -+++ unset MIC_LIBRARY_PATH -+++ unset MKLROOT -+++ unset MPICH_ABORT_ON_ERROR -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF_DIR -+++ unset NLSPATH -+++ unset PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_CRAY_FIXED_PKGCONFIG_PATH -+++ unset PE_CXX_PKGCONFIG_LIBS -+++ unset PE_ENV -+++ unset PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_FFTW_DEFAULT_TARGET_haswell -+++ unset PE_FFTW_DEFAULT_TARGET_interlagos -+++ unset PE_FFTW_DEFAULT_TARGET_sandybridge -+++ unset PE_FFTW_DEFAULT_TARGET_x86_64 -+++ unset PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_GA_DEFAULT_FIXED_PRGENV -+++ unset PE_GA_DEFAULT_GENCOMPS_GNU -+++ unset PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_GA_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_CXX_PKGCONFIG_LIBS -+++ unset PE_HDF5_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_DIR -+++ unset PE_HDF5_FIXED_PRGENV -+++ unset PE_HDF5_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_HDF5_GENCOMPILERS_GNU -+++ unset PE_HDF5_GENCOMPS_GNU -+++ unset PE_HDF5_MODULE_NAME -+++ unset PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_HDF5_PKGCONFIG_LIBS -+++ unset PE_HDF5_VOLATILE_PKGCONFIG_PATH -+++ unset PE_HDF5_VOLATILE_PRGENV -+++ unset PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -+++ unset PE_INTEL_FIXED_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES -+++ unset PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -+++ unset PE_LIBSCI_GENCOMPS_CRAY_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_GNU_x86_64 -+++ unset PE_LIBSCI_GENCOMPS_INTEL_x86_64 -+++ unset PE_LIBSCI_MODULE_NAME -+++ unset PE_LIBSCI_OMP_REQUIRES -+++ unset PE_LIBSCI_OMP_REQUIRES_openmp -+++ unset PE_LIBSCI_PKGCONFIG_LIBS -+++ unset PE_LIBSCI_PKGCONFIG_VARIABLES -+++ unset PE_LIBSCI_REQUIRED_PRODUCTS -+++ unset PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -+++ unset PE_LIBSCI_VOLATILE_PRGENV -+++ unset PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -+++ unset PE_MPICH_DEFAULT_FIXED_PRGENV -+++ unset PE_MPICH_DEFAULT_GENCOMPS_CRAY -+++ unset PE_MPICH_DEFAULT_GENCOMPS_GNU -+++ unset PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_MPICH_DEFAULT_VOLATILE_PRGENV -+++ unset PE_MPICH_MULTITHREADED_LIBS_multithreaded -+++ unset PE_MPICH_NV_LIBS -+++ unset PE_MPICH_NV_LIBS_nvidia20 -+++ unset PE_MPICH_NV_LIBS_nvidia35 -+++ unset PE_MPICH_PKGCONFIG_VARIABLES -+++ unset PE_MPICH_TARGET_VAR_nvidia20 -+++ unset PE_MPICH_TARGET_VAR_nvidia35 -+++ unset PE_NETCDF_BASEDIR -+++ unset PE_NETCDF_CXX_PKGCONFIG_LIBS -+++ unset PE_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_FIXED_PRGENV -+++ unset PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -+++ unset PE_NETCDF_GENCOMPILERS_GNU -+++ unset PE_NETCDF_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_NETCDF_MODULE_NAME -+++ unset PE_NETCDF_PKGCONFIG_LIBS -+++ unset PE_NETCDF_REQUIRED_PRODUCTS -+++ unset PE_NETCDF_VOLATILE_PKGCONFIG_PATH -+++ unset PE_NETCDF_VOLATILE_PRGENV -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS -+++ unset PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -+++ unset PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -+++ unset PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -+++ unset PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_PETSC_DEFAULT_VOLATILE_PRGENV -+++ unset PE_PKGCONFIG_DEFAULT_PRODUCTS -+++ unset PE_PKGCONFIG_LIBS -+++ unset PE_PKGCONFIG_PRODUCTS -+++ unset PE_PKGCONFIG_PRODUCTS_DEFAULT -+++ unset PE_PKG_CONFIG_PATH -+++ unset PE_PRODUCT_LIST -+++ unset PE_SMA_DIR_CRAY_DEFAULT64 -+++ unset PE_SMA_DIR_PGI_DEFAULT64 -+++ unset PE_SMA_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -+++ unset PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TPSL_DEFAULT_VOLATILE_PRGENV -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -+++ unset PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -+++ unset PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -+++ unset PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -+++ unset PKGCONFIG_ENABLED -+++ unset PKG_CONFIG_PATH -+++ unset PKG_CONFIG_PATH_DEFAULT -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PYTHONPATH -+++ unset QT_PLUGIN_PATH -+++ unset SHMEM_ABORT_ON_ERROR -+++ unset SLURM_PROLOG -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset XTOS_VERSION -+++ unset XTPE_NETWORK_TARGET -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset _LMFILES_ -++ module purge -+++ /opt/modules/3.2.10.3/bin/modulecmd bash purge -++ eval -++ unset _LMFILES_ -++ unset LOADEDMODULES -++ module use /opt/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/modulefiles -++ eval -++ module use /opt/cray/ari/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/ari/modulefiles -++ eval MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles ';export' 'MODULEPATH;' -+++ MODULEPATH=/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -+++ export MODULEPATH -++ module use /opt/cray/craype/default/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/craype/default/alt-modulefiles -++ eval -++ module use /opt/cray/alt-modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /opt/cray/alt-modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/modulefiles -++ eval -++ module use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps/nco/ops/nwprod/lib/modulefiles -++ eval -++ module use /usrx/local/prod/modulefiles -+++ /opt/modules/3.2.10.3/bin/modulecmd bash use /usrx/local/prod/modulefiles -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__13935 -++ unset __ms_function_name -+ [[ wcoss_cray == macosx.* ]] -+ [[ wcoss_cray == linux.* ]] -+ module use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -++ /opt/modules/3.2.10.3/bin/modulecmd bash use /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray -+ eval -+ module load fv3 -++ /opt/modules/3.2.10.3/bin/modulecmd bash load fv3 -+ eval ATP_HOME=/opt/cray/atp/1.8.1 ';export' 'ATP_HOME;ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper' ';export' 'ATP_MRNET_COMM_PATH;ATP_POST_LINK_OPTS=-Wl,-L/opt/cray/atp/1.8.1/libApp/\' ';export' 'ATP_POST_LINK_OPTS;BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a' ';export' 'BACIO_LIB4;BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a' ';export' 'BACIO_LIB8;BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3' ';export' 'BACIO_SRC;BACIO_VER=v2.0.3' ';export' 'BACIO_VER;CMAKE_CXX_COMPILER=CC' ';export' 'CMAKE_CXX_COMPILER;CMAKE_C_COMPILER=cc' ';export' 'CMAKE_C_COMPILER;CMAKE_Fortran_COMPILER=ftn' ';export' 'CMAKE_Fortran_COMPILER;CMAKE_Platform=wcoss_cray' ';export' 'CMAKE_Platform;COMP=intel' ';export' 'COMP;CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include' ';export' 'CPATH;CRAYOS_VERSION=5.2.82' ';export' 'CRAYOS_VERSION;CRAYPE_DIR=/opt/cray/craype/2.3.0' ';export' 'CRAYPE_DIR;CRAYPE_NETWORK_TARGET=aries' ';export' 'CRAYPE_NETWORK_TARGET;CRAYPE_VERSION=2.3.0' ';export' 'CRAYPE_VERSION;CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include' ';export' 'CRAY_ALPS_INCLUDE_OPTS;CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64' ';export' 'CRAY_ALPS_POST_LINK_OPTS;CRAY_CPU_TARGET=haswell' ';export' 'CRAY_CPU_TARGET;CRAY_DMAPP_INCLUDE_OPTS=-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include\' '-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include\' ';export' 'CRAY_DMAPP_INCLUDE_OPTS;CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64' ';export' 'CRAY_DMAPP_POST_LINK_OPTS;CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include' ';export' 'CRAY_GNI_HEADERS_INCLUDE_OPTS;CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'CRAY_HDF5_DIR;CRAY_HDF5_VERSION=1.8.14' ';export' 'CRAY_HDF5_VERSION;CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib' ';export' 'CRAY_LD_LIBRARY_PATH;CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_BASE_DIR;CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3' ';export' 'CRAY_LIBSCI_DIR;CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64' ';export' 'CRAY_LIBSCI_PREFIX_DIR;CRAY_LIBSCI_VERSION=13.0.3' ';export' 'CRAY_LIBSCI_VERSION;CRAY_NETCDF_VERSION=4.3.3.1' ';export' 'CRAY_NETCDF_VERSION;CRAY_PE_MODULES=cray-hdf5:cray-netcdf' ';export' 'CRAY_PE_MODULES;CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include' ';export' 'CRAY_PMI_INCLUDE_OPTS;CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64' ';export' 'CRAY_PMI_POST_LINK_OPTS;CRAY_PRE_COMPILE_OPTS=-hnetwork=aries' ';export' 'CRAY_PRE_COMPILE_OPTS;CRAY_PRGENVINTEL=loaded' ';export' 'CRAY_PRGENVINTEL;CRAY_RCA_INCLUDE_OPTS=-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include\' '-I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include\' '-I/opt/cray-hss-devel/7.2.0/include\' ';export' 'CRAY_RCA_INCLUDE_OPTS;CRAY_RCA_POST_LINK_OPTS=-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64\' '-lrca\' ';export' 'CRAY_RCA_POST_LINK_OPTS;CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include' ';export' 'CRAY_UDREG_INCLUDE_OPTS;CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64' ';export' 'CRAY_UDREG_POST_LINK_OPTS;CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include' ';export' 'CRAY_UGNI_INCLUDE_OPTS;CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64' ';export' 'CRAY_UGNI_POST_LINK_OPTS;CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include' ';export' 'CRAY_XPMEM_INCLUDE_OPTS;CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64' ';export' 'CRAY_XPMEM_POST_LINK_OPTS;CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix' ';export' 'CRTM_FIX;CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6' ';export' 'CRTM_INC;CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a' ';export' 'CRTM_LIB;CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src' ';export' 'CRTM_SRC;CRTM_VER=v2.2.6' ';export' 'CRTM_VER;DMAPP_ABORT_ON_ERROR=1' ';export' 'DMAPP_ABORT_ON_ERROR;DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include' ';export' 'DVS_INCLUDE_OPTS;DVS_VERSION=0.9.0' ';export' 'DVS_VERSION;ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk' ';export' 'ESMFMKFILE;G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0' ';export' 'G2TMPL_INC;G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a' ';export' 'G2TMPL_LIB;G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src' ';export' 'G2TMPL_SRC;G2TMPL_VER=v1.6.0' ';export' 'G2TMPL_VER;G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4' ';export' 'G2_INC4;G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d' ';export' 'G2_INCd;G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a' ';export' 'G2_LIB4;G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a' ';export' 'G2_LIBd;G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1' ';export' 'G2_SRC;G2_VER=v3.1.1' ';export' 'G2_VER;GCC_PATH=/opt/gcc/4.9.2' ';export' 'GCC_PATH;GCC_VERSION=4.9.2' ';export' 'GCC_VERSION;GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver' ';export' 'GDBSERVER_MIC;GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic' ';export' 'GDB_CROSS;GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic' ';export' 'GDB_HOST;GNU_VERSION=4.9.2' ';export' 'GNU_VERSION;HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_DIR;HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include' ';export' 'HDF5_INCLUDE_OPTS;HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0' ';export' 'HDF5_ROOT;INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info' ';export' 'INFOPATH;INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses' ';export' 'INTEL_LICENSE_FILE;INTEL_MAJOR_VERSION=16.0' ';export' 'INTEL_MAJOR_VERSION;INTEL_MINOR_VERSION=3.210' ';export' 'INTEL_MINOR_VERSION;INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux' ';export' 'INTEL_PATH;INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/' ';export' 'INTEL_PYTHONHOME;INTEL_VERSION=16.0.3.210' ';export' 'INTEL_VERSION;IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp' ';export' 'IPPROOT;IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4' ';export' 'IP_INC4;IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8' ';export' 'IP_INC8;IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d' ';export' 'IP_INCd;IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a' ';export' 'IP_LIB4;IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a' ';export' 'IP_LIB8;IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a' ';export' 'IP_LIBd;IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2' ';export' 'IP_SRC;IP_VER=v3.0.2' ';export' 'IP_VER;JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include' ';export' 'JASPER_INC;JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a' ';export' 'JASPER_LIB;JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib' ';export' 'JASPER_LIBDIR;JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la' ';export' 'JASPER_LIBl;JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1' ';export' 'JASPER_SRC;JASPER_VER=1.900.1' ';export' 'JASPER_VER;LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib' ';export' 'LD_LIBRARY_PATH;LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1' ';export' 'LIBRARY_PATH;LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3' ';export' 'LIBSCI_BASE_DIR;LIBSCI_VERSION=13.0.3' ';export' 'LIBSCI_VERSION;LIB_NAME=POST' ';export' 'LIB_NAME;LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3' ';export' 'LOADEDMODULES;LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin' ';export' 'LSF_BINDIR;LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf' ';export' 'LSF_ENVDIR;LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib' ';export' 'LSF_LIBDIR;LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc' ';export' 'LSF_SERVERDIR;MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man' ';export' 'MANPATH;MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LD_LIBRARY_PATH;MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic' ';export' 'MIC_LIBRARY_PATH;MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl' ';export' 'MKLROOT;MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles' ';export' 'MODULEPATH;MPICH_ABORT_ON_ERROR=1' ';export' 'MPICH_ABORT_ON_ERROR;MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh' ';export' 'MPM_LAUNCHER;NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4' ';export' 'NEMSIO_INC;NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a' ';export' 'NEMSIO_LIB;NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4' ';export' 'NEMSIO_SRC;NEMSIO_VER=v2.2.4' ';export' 'NEMSIO_VER;NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0' ';export' 'NETCDF_DIR;NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N' ';export' 'NLSPATH;PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'PATH;PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig' ';export' 'PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH;PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig' ';export' 'PE_CRAY_FIXED_PKGCONFIG_PATH;PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4' ';export' 'PE_CXX_PKGCONFIG_LIBS;PE_ENV=INTEL' ';export' 'PE_ENV;PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_FFTW_DEFAULT_REQUIRED_PRODUCTS;PE_FFTW_DEFAULT_TARGET_haswell=haswell' ';export' 'PE_FFTW_DEFAULT_TARGET_haswell;PE_FFTW_DEFAULT_TARGET_interlagos=interlagos' ';export' 'PE_FFTW_DEFAULT_TARGET_interlagos;PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge' ';export' 'PE_FFTW_DEFAULT_TARGET_sandybridge;PE_FFTW_DEFAULT_TARGET_x86_64=x86_64' ';export' 'PE_FFTW_DEFAULT_TARGET_x86_64;PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff' ';export' 'PE_FORTRAN_PKGCONFIG_LIBS;PE_GA_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_GA_DEFAULT_FIXED_PRGENV;PE_GA_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_GA_DEFAULT_GENCOMPS_GNU;PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_GA_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_GA_DEFAULT_VOLATILE_PRGENV;PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp' ';export' 'PE_HDF5_CXX_PKGCONFIG_LIBS;PE_HDF5_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_DEFAULT_FIXED_PRGENV;PE_HDF5_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_DEFAULT_GENCOMPS_GNU;PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_DEFAULT_VOLATILE_PRGENV;PE_HDF5_DIR=/opt/cray/hdf5/1.8.14' ';export' 'PE_HDF5_DIR;PE_HDF5_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_FIXED_PRGENV;PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran' ';export' 'PE_HDF5_FORTRAN_PKGCONFIG_LIBS;PE_HDF5_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_HDF5_GENCOMPILERS_GNU;PE_HDF5_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_HDF5_GENCOMPS_GNU;PE_HDF5_MODULE_NAME=cray-hdf5' ';export' 'PE_HDF5_MODULE_NAME;PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV;PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU;PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5' ';export' 'PE_HDF5_PKGCONFIG_LIBS;PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig' ';export' 'PE_HDF5_VOLATILE_PKGCONFIG_PATH;PE_HDF5_VOLATILE_PRGENV=GNU' ';export' 'PE_HDF5_VOLATILE_PRGENV;PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig' ';export' 'PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH;PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig' ';export' 'PE_INTEL_FIXED_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64;PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64;PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp;PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES;PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS;PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_DEFAULT_VOLATILE_PRGENV;PE_LIBSCI_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_LIBSCI_GENCOMPS_CRAY_x86_64;PE_LIBSCI_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_LIBSCI_GENCOMPS_GNU_x86_64;PE_LIBSCI_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_LIBSCI_GENCOMPS_INTEL_x86_64;PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3' ';export' 'PE_LIBSCI_MODULE_NAME;PE_LIBSCI_OMP_REQUIRES_openmp=_mp' ';export' 'PE_LIBSCI_OMP_REQUIRES_openmp;PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci' ';export' 'PE_LIBSCI_PKGCONFIG_LIBS;PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@' ';export' 'PE_LIBSCI_PKGCONFIG_VARIABLES;PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH' ';export' 'PE_LIBSCI_REQUIRED_PRODUCTS;PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig' ';export' 'PE_LIBSCI_VOLATILE_PKGCONFIG_PATH;PE_LIBSCI_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_LIBSCI_VOLATILE_PRGENV;PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64' ';export' 'PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64;PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL' ';export' 'PE_MPICH_DEFAULT_FIXED_PRGENV;PE_MPICH_DEFAULT_GENCOMPS_CRAY=83' ';export' 'PE_MPICH_DEFAULT_GENCOMPS_CRAY;PE_MPICH_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_MPICH_DEFAULT_GENCOMPS_GNU;PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_MPICH_DEFAULT_VOLATILE_PRGENV=CRAY\' GNU ';export' 'PE_MPICH_DEFAULT_VOLATILE_PRGENV;PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt' ';export' 'PE_MPICH_MULTITHREADED_LIBS_multithreaded;PE_MPICH_NV_LIBS_nvidia20=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia20;PE_MPICH_NV_LIBS_nvidia35=-lcudart' ';export' 'PE_MPICH_NV_LIBS_nvidia35;PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@' ';export' 'PE_MPICH_PKGCONFIG_VARIABLES;PE_MPICH_TARGET_VAR_nvidia20=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia20;PE_MPICH_TARGET_VAR_nvidia35=-lcudart' ';export' 'PE_MPICH_TARGET_VAR_nvidia35;PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1' ';export' 'PE_NETCDF_BASEDIR;PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4' ';export' 'PE_NETCDF_CXX_PKGCONFIG_LIBS;PE_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_DEFAULT_FIXED_PRGENV;PE_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_DEFAULT_GENCOMPS_GNU;PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_FIXED_PRGENV;PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff' ';export' 'PE_NETCDF_FORTRAN_PKGCONFIG_LIBS;PE_NETCDF_GENCOMPILERS_GNU=5.1\' '4.9\' 4.8 ';export' 'PE_NETCDF_GENCOMPILERS_GNU;PE_NETCDF_GENCOMPS_GNU=51\' '49\' 48 ';export' 'PE_NETCDF_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV;PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU;PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5_PARALLEL\' PE_MPICH ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV;PE_NETCDF_MODULE_NAME=cray-netcdf' ';export' 'PE_NETCDF_MODULE_NAME;PE_NETCDF_PKGCONFIG_LIBS=netcdf' ';export' 'PE_NETCDF_PKGCONFIG_LIBS;PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5' ';export' 'PE_NETCDF_REQUIRED_PRODUCTS;PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig' ';export' 'PE_NETCDF_VOLATILE_PKGCONFIG_PATH;PE_NETCDF_VOLATILE_PRGENV=GNU' ';export' 'PE_NETCDF_VOLATILE_PRGENV;PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35;PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@' ';export' 'PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES;PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda' ';export' 'PE_PAPI_DEFAULT_TARGET_VAR_nvidia35;PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV=CRAY\' INTEL ';export' 'PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU=4.9\' 4.8 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU;PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU=49\' 48 ';export' 'PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU' ';export' 'PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV;PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell;PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos;PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64;PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell;PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos;PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64;PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell;PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos;PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64;PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL' ';export' 'PE_PETSC_DEFAULT_REQUIRED_PRODUCTS;PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_PETSC_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_PETSC_DEFAULT_VOLATILE_PRGENV;PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH' ';export' 'PE_PKGCONFIG_DEFAULT_PRODUCTS;PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci' ';export' 'PE_PKGCONFIG_LIBS;PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI' ';export' 'PE_PKGCONFIG_PRODUCTS;PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI' ';export' 'PE_PKGCONFIG_PRODUCTS_DEFAULT;PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig' ';export' 'PE_PKG_CONFIG_PATH;PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL' ';export' 'PE_PRODUCT_LIST;PE_SMA_DIR_CRAY_DEFAULT64=64' ';export' 'PE_SMA_DIR_CRAY_DEFAULT64;PE_SMA_DIR_PGI_DEFAULT64=64' ';export' 'PE_SMA_DIR_PGI_DEFAULT64;PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig' ';export' 'PE_SMA_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell;PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos;PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell;PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos;PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64;PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell;PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos;PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge;PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI' ';export' 'PE_TPSL_DEFAULT_REQUIRED_PRODUCTS;PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TPSL_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TPSL_DEFAULT_VOLATILE_PRGENV;PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64=49\' 48 ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64;PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140' ';export' 'PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64;PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL' ';export' 'PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS;PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig' ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH;PE_TRILINOS_DEFAULT_VOLATILE_PRGENV=CRAY\' 'GNU\' INTEL ';export' 'PE_TRILINOS_DEFAULT_VOLATILE_PRGENV;PKGCONFIG_ENABLED=1' ';export' 'PKGCONFIG_ENABLED;PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig' ';export' 'PKG_CONFIG_PATH;PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig' ';export' 'PKG_CONFIG_PATH_DEFAULT;PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include' ';export' 'PNG_INC;PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a' ';export' 'PNG_LIB;PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a' ';export' 'PNG_LIB12;PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib' ';export' 'PNG_LIBDIR;PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so' ';export' 'PNG_LIBso;PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src' ';export' 'PNG_SRC;PNG_VER=1.2.49' ';export' 'PNG_VER;POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4' ';export' 'POST_INC;POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a' ';export' 'POST_LIB;POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5' ';export' 'POST_SRC;POST_VER=v8.0.5' ';export' 'POST_VER;SHMEM_ABORT_ON_ERROR=1' ';export' 'SHMEM_ABORT_ON_ERROR;SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh' ';export' 'SLURM_PROLOG;SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a' ';export' 'SP_LIB4;SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a' ';export' 'SP_LIB8;SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a' ';export' 'SP_LIBd;SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3' ';export' 'SP_SRC;SP_VER=v2.0.3' ';export' 'SP_VER;TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb' ';export' 'TBBROOT;W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4' ';export' 'W3EMC_INC4;W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8' ';export' 'W3EMC_INC8;W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d' ';export' 'W3EMC_INCd;W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a' ';export' 'W3EMC_LIB4;W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a' ';export' 'W3EMC_LIB8;W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a' ';export' 'W3EMC_LIBd;W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1' ';export' 'W3EMC_SRC;W3EMC_VER=v2.3.1' ';export' 'W3EMC_VER;W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a' ';export' 'W3NCO_LIB4;W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a' ';export' 'W3NCO_LIB8;W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a' ';export' 'W3NCO_LIBd;W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7' ';export' 'W3NCO_SRC;W3NCO_VER=v2.0.7' ';export' 'W3NCO_VER;XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid' ';export' 'XLSF_UIDDIR;XTOS_VERSION=5.2.82' ';export' 'XTOS_VERSION;XTPE_NETWORK_TARGET=aries' ';export' 'XTPE_NETWORK_TARGET;Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include' ';export' 'Z_INC;Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a' ';export' 'Z_LIB;Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src' ';export' 'Z_SRC;Z_VER=1.2.7' ';export' 'Z_VER;_LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3' ';export' '_LMFILES_;' -++ ATP_HOME=/opt/cray/atp/1.8.1 -++ export ATP_HOME -++ ATP_MRNET_COMM_PATH=/opt/cray/atp/1.8.1/libexec/atp_mrnet_commnode_wrapper -++ export ATP_MRNET_COMM_PATH -++ ATP_POST_LINK_OPTS='-Wl,-L/opt/cray/atp/1.8.1/libApp/ ' -++ export ATP_POST_LINK_OPTS -++ BACIO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ CMAKE_CXX_COMPILER=CC -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=cc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=ftn -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_cray -++ export CMAKE_Platform -++ COMP=intel -++ export COMP -++ CPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/include:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/include -++ export CPATH -++ CRAYOS_VERSION=5.2.82 -++ export CRAYOS_VERSION -++ CRAYPE_DIR=/opt/cray/craype/2.3.0 -++ export CRAYPE_DIR -++ CRAYPE_NETWORK_TARGET=aries -++ export CRAYPE_NETWORK_TARGET -++ CRAYPE_VERSION=2.3.0 -++ export CRAYPE_VERSION -++ CRAY_ALPS_INCLUDE_OPTS=-I/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/include -++ export CRAY_ALPS_INCLUDE_OPTS -++ CRAY_ALPS_POST_LINK_OPTS=-L/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64 -++ export CRAY_ALPS_POST_LINK_OPTS -++ CRAY_CPU_TARGET=haswell -++ export CRAY_CPU_TARGET -++ CRAY_DMAPP_INCLUDE_OPTS='-I/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/include -I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include ' -++ export CRAY_DMAPP_INCLUDE_OPTS -++ CRAY_DMAPP_POST_LINK_OPTS=-L/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64 -++ export CRAY_DMAPP_POST_LINK_OPTS -++ CRAY_GNI_HEADERS_INCLUDE_OPTS=-I/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/include -++ export CRAY_GNI_HEADERS_INCLUDE_OPTS -++ CRAY_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export CRAY_HDF5_DIR -++ CRAY_HDF5_VERSION=1.8.14 -++ export CRAY_HDF5_VERSION -++ CRAY_LD_LIBRARY_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64:/opt/cray/hdf5/1.8.14/INTEL/14.0/lib:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64:/opt/cray/pmi/5.0.11/lib64:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64:/opt/cray/libsci/13.0.3/INTEL/140/x86_64/lib -++ export CRAY_LD_LIBRARY_PATH -++ CRAY_LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_BASE_DIR -++ CRAY_LIBSCI_DIR=/opt/cray/libsci/13.0.3 -++ export CRAY_LIBSCI_DIR -++ CRAY_LIBSCI_PREFIX_DIR=/opt/cray/libsci/13.0.3/INTEL/140/x86_64 -++ export CRAY_LIBSCI_PREFIX_DIR -++ CRAY_LIBSCI_VERSION=13.0.3 -++ export CRAY_LIBSCI_VERSION -++ CRAY_NETCDF_VERSION=4.3.3.1 -++ export CRAY_NETCDF_VERSION -++ CRAY_PE_MODULES=cray-hdf5:cray-netcdf -++ export CRAY_PE_MODULES -++ CRAY_PMI_INCLUDE_OPTS=-I/opt/cray/pmi/5.0.11/include -++ export CRAY_PMI_INCLUDE_OPTS -++ CRAY_PMI_POST_LINK_OPTS=-L/opt/cray/pmi/5.0.11/lib64 -++ export CRAY_PMI_POST_LINK_OPTS -++ CRAY_PRE_COMPILE_OPTS=-hnetwork=aries -++ export CRAY_PRE_COMPILE_OPTS -++ CRAY_PRGENVINTEL=loaded -++ export CRAY_PRGENVINTEL -++ CRAY_RCA_INCLUDE_OPTS='-I/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/include -I/opt/cray/krca/1.0.0-2.0502.67049.8.22.ari/include -I/opt/cray-hss-devel/7.2.0/include ' -++ export CRAY_RCA_INCLUDE_OPTS -++ CRAY_RCA_POST_LINK_OPTS='-L/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64 -lrca ' -++ export CRAY_RCA_POST_LINK_OPTS -++ CRAY_UDREG_INCLUDE_OPTS=-I/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/include -++ export CRAY_UDREG_INCLUDE_OPTS -++ CRAY_UDREG_POST_LINK_OPTS=-L/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64 -++ export CRAY_UDREG_POST_LINK_OPTS -++ CRAY_UGNI_INCLUDE_OPTS=-I/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/include -++ export CRAY_UGNI_INCLUDE_OPTS -++ CRAY_UGNI_POST_LINK_OPTS=-L/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64 -++ export CRAY_UGNI_POST_LINK_OPTS -++ CRAY_XPMEM_INCLUDE_OPTS=-I/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/include -++ export CRAY_XPMEM_INCLUDE_OPTS -++ CRAY_XPMEM_POST_LINK_OPTS=-L/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64 -++ export CRAY_XPMEM_POST_LINK_OPTS -++ CRTM_FIX=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/intel/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/hps/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DMAPP_ABORT_ON_ERROR=1 -++ export DMAPP_ABORT_ON_ERROR -++ DVS_INCLUDE_OPTS=-I/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/include -++ export DVS_INCLUDE_OPTS -++ DVS_VERSION=0.9.0 -++ export DVS_VERSION -++ ESMFMKFILE=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2tmpl_v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GCC_PATH=/opt/gcc/4.9.2 -++ export GCC_PATH -++ GCC_VERSION=4.9.2 -++ export GCC_VERSION -++ GDBSERVER_MIC=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/target/mic/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-mic -++ export GDB_CROSS -++ GDB_HOST=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin/gdb-ia-mic -++ export GDB_HOST -++ GNU_VERSION=4.9.2 -++ export GNU_VERSION -++ HDF5_DIR=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_DIR -++ HDF5_INCLUDE_OPTS=/opt/cray/hdf5/1.8.14/INTEL/14.0/include -++ export HDF5_INCLUDE_OPTS -++ HDF5_ROOT=/opt/cray/hdf5/1.8.14/INTEL/14.0 -++ export HDF5_ROOT -++ INFOPATH=/opt/gcc/4.9.2/snos/share/info:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/info/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/info/:/usr/local/info:/usr/share/info:/usr/info -++ export INFOPATH -++ INTEL_LICENSE_FILE=/opt/intel/compilers_and_libraries_2016.3.210/linux/licenses:/opt/intel/licenses:/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_MAJOR_VERSION=16.0 -++ export INTEL_MAJOR_VERSION -++ INTEL_MINOR_VERSION=3.210 -++ export INTEL_MINOR_VERSION -++ INTEL_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux -++ export INTEL_PATH -++ INTEL_PYTHONHOME=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/python/intel64/ -++ export INTEL_PYTHONHOME -++ INTEL_VERSION=16.0.3.210 -++ export INTEL_VERSION -++ IPPROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp -++ export IPPROOT -++ IP_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ JASPER_INC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib -++ export JASPER_LIBDIR -++ JASPER_LIBl=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.la -++ export JASPER_LIBl -++ JASPER_SRC=/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/sorc/jasper_v1.900.1 -++ export JASPER_SRC -++ JASPER_VER=1.900.1 -++ export JASPER_VER -++ LD_LIBRARY_PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib:/opt/gcc/4.9.2/snos/lib64:/usrx/local/dev/python/2.7.14/lib:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/tools/intel64/perfsys:/opt/intel/mic/coi/host-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/libipt/intel64/lib -++ export LD_LIBRARY_PATH -++ LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/../compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/intel64/gcc4.1 -++ export LIBRARY_PATH -++ LIBSCI_BASE_DIR=/opt/cray/libsci/13.0.3 -++ export LIBSCI_BASE_DIR -++ LIBSCI_VERSION=13.0.3 -++ export LIBSCI_VERSION -++ LIB_NAME=POST -++ export LIB_NAME -++ LOADEDMODULES=craype-network-aries:craype/2.3.0:cray-libsci/13.0.3:udreg/2.3.2-1.0502.10518.2.17.ari:ugni/6.0-1.0502.10863.8.29.ari:pmi/5.0.11:dmapp/7.0.1-1.0502.11080.8.76.ari:gni-headers/4.0-1.0502.10859.7.8.ari:xpmem/0.1-2.0502.64982.5.3.ari:dvs/2.5_0.9.0-1.0502.2188.1.116.ari:alps/5.2.4-2.0502.9774.31.11.ari:rca/1.0.0-2.0502.60530.1.62.ari:atp/1.8.1:PrgEnv-intel/5.2.82:intel/16.3.210:cray-netcdf/4.3.3.1:cray-hdf5/1.8.14:xt-lsfhpc/9.1.3:craype-haswell:python/2.7.14:cmake/3.6.2:gcc/4.9.2:jasper-gnu-sandybridge/1.900.1:png-intel-sandybridge/1.2.49:zlib-intel-sandybridge/1.2.7:crtm-intel/2.2.6:g2/3.1.1:g2tmpl/1.6.0:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:post/8.0.5:alps/5.2.4-2.0502.9822.32.1.ari:esmf/8.0.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/slsf/xt-lsfhpc/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc -++ export LSF_SERVERDIR -++ MANPATH=/opt/cray/pmi/5.0.11/man:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/man:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/share/man:/opt/gcc/4.9.2/snos/share/man:/usrx/local/dev/cmake/3.6.2/share/man:/usrx/local/dev/python/2.7.14/share/man:/gpfs/slsf/xt-lsfhpc/9.1/man:/opt/cray/netcdf/4.3.3.1/share/man:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/en_US:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/man/:/opt/intel/compilers_and_libraries_2016.3.210/linux/man/common:/opt/cray/atp/1.8.1/man:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/man:/opt/cray/libsci/13.0.3/man:/opt/cray/man/csmlversion:/opt/cray/craype/2.3.0/man:/opt/cray/share/man:/usr/local/man:/usr/share/man:/opt/cray/share/man:/cm/local/apps/environment-modules/current/share/man:/opt/cray/man -++ export MANPATH -++ MIC_LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/lib/mic:/opt/intel/mic/coi/device-linux-release/lib:/opt/intel/mic/myo/lib:/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LD_LIBRARY_PATH -++ MIC_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/mpirt/lib/mic:/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb/lib/mic -++ export MIC_LIBRARY_PATH -++ MKLROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles:/opt/cray/ari/modulefiles:/usrx/local/emc_rocoto/modulefiles:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles:/gpfs/hps/nco/ops/nwprod/lib/modulefiles:/gpfs/hps/nco/ops/nwprod/modulefiles:/opt/cray/alt-modulefiles:/opt/cray/craype/default/alt-modulefiles:/opt/modulefiles -++ export MODULEPATH -++ MPICH_ABORT_ON_ERROR=1 -++ export MPICH_ABORT_ON_ERROR -++ MPM_LAUNCHER=/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/mpm/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF_DIR=/opt/cray/netcdf/4.3.3.1/INTEL/14.0 -++ export NETCDF_DIR -++ NLSPATH=/opt/intel/compilers_and_libraries_2016.3.210/linux/compiler/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/ipp/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/mkl/lib/intel64/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/share/locale/%l_%t/%N:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ PATH=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/bin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/sbin:/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/bin:/opt/gcc/4.9.2/bin:/usrx/local/dev/cmake/3.6.2/bin:/usrx/local/dev/python/2.7.14/bin:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/etc:/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/bin:/opt/cray/hdf5/1.8.14/bin:/opt/cray/netcdf/4.3.3.1/bin:/opt/intel/compilers_and_libraries_2016.3.210/linux/bin/intel64:/opt/intel/compilers_and_libraries_2016.3.210/linux/debugger/gdb/intel64_mic/bin:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/bin:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/sbin:/opt/cray/dvs/2.5_0.9.0-1.0502.2188.1.116.ari/bin:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/bin:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/bin:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/bin:/opt/cray/craype/2.3.0/bin:/u/Dusan.Jovic/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/opt/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/sbin:/usr/sbin:.:/usr/lib/qt3/bin:/u/Dusan.Jovic/bin:/gpfs/hps3/emc/meso/noscrub/Dusan.Jovic/dbrowse:/usrx/local/emc_rocoto/1.2.3/bin:/opt/cray/bin:/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export PATH -++ PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/ga/5.3.0.1/CRAY/83/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/CRAY/83/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/CRAY/83/lib/pkgconfig:/opt/cray/hdf5/1.8.13/CRAY/83/lib/pkgconfig -++ export PE_CRAY_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_CRAY_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/CRAY/8.3/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/CRAY/8.3/lib/pkgconfig -++ export PE_CRAY_FIXED_PKGCONFIG_PATH -++ PE_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp:netcdf_c++4 -++ export PE_CXX_PKGCONFIG_LIBS -++ PE_ENV=INTEL -++ export PE_ENV -++ PE_FFTW_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_FFTW_DEFAULT_REQUIRED_PRODUCTS -++ PE_FFTW_DEFAULT_TARGET_haswell=haswell -++ export PE_FFTW_DEFAULT_TARGET_haswell -++ PE_FFTW_DEFAULT_TARGET_interlagos=interlagos -++ export PE_FFTW_DEFAULT_TARGET_interlagos -++ PE_FFTW_DEFAULT_TARGET_sandybridge=sandybridge -++ export PE_FFTW_DEFAULT_TARGET_sandybridge -++ PE_FFTW_DEFAULT_TARGET_x86_64=x86_64 -++ export PE_FFTW_DEFAULT_TARGET_x86_64 -++ PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/fftw/3.3.4.2/@PE_FFTW_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_FFTW_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran:netcdff -++ export PE_FORTRAN_PKGCONFIG_LIBS -++ PE_GA_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_GA_DEFAULT_FIXED_PRGENV -++ PE_GA_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_GA_DEFAULT_GENCOMPS_GNU -++ PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/ga/5.3.0.1/@PRGENV@/@PE_GA_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_GA_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_GA_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_GA_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_CXX_PKGCONFIG_LIBS=hdf5_hl_cpp:hdf5_cpp -++ export PE_HDF5_CXX_PKGCONFIG_LIBS -++ PE_HDF5_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_DEFAULT_FIXED_PRGENV -++ PE_HDF5_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.13/@PRGENV@/@PE_HDF5_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_DIR=/opt/cray/hdf5/1.8.14 -++ export PE_HDF5_DIR -++ PE_HDF5_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_FIXED_PRGENV -++ PE_HDF5_FORTRAN_PKGCONFIG_LIBS=hdf5hl_fortran:hdf5_fortran -++ export PE_HDF5_FORTRAN_PKGCONFIG_LIBS -++ PE_HDF5_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_HDF5_GENCOMPILERS_GNU -++ PE_HDF5_GENCOMPS_GNU='51 49 48' -++ export PE_HDF5_GENCOMPS_GNU -++ PE_HDF5_MODULE_NAME=cray-hdf5 -++ export PE_HDF5_MODULE_NAME -++ PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_HDF5_PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_HDF5_PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_HDF5_PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5-parallel/1.8.13/@PRGENV@/@PE_HDF5_PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_HDF5_PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_HDF5_PKGCONFIG_LIBS=hdf5_hl:hdf5 -++ export PE_HDF5_PKGCONFIG_LIBS -++ PE_HDF5_VOLATILE_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/@PRGENV@/@PE_HDF5_GENCOMPS@/lib/pkgconfig -++ export PE_HDF5_VOLATILE_PKGCONFIG_PATH -++ PE_HDF5_VOLATILE_PRGENV=GNU -++ export PE_HDF5_VOLATILE_PRGENV -++ PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/ga/5.3.0.1/INTEL/140/lib/pkgconfig:/opt/cray/netcdf-hdf5parallel/4.3.2/INTEL/140/lib/pkgconfig:/opt/cray/hdf5-parallel/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/hdf5/1.8.13/INTEL/140/lib/pkgconfig:/opt/cray/mpt/7.2.0/gni/mpich2-intel/140/lib/pkgconfig -++ export PE_INTEL_DEFAULT_FIXED_PKGCONFIG_PATH -++ PE_INTEL_FIXED_PKGCONFIG_PATH=/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/pkgconfig:/opt/cray/netcdf/4.3.3.1/INTEL/14.0/lib/pkgconfig -++ export PE_INTEL_FIXED_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_DEFAULT_OMP_REQUIRES_openmp -++ PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES=PE_LIBSCI_DEFAULT_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_DEFAULT_REQUIRED_PRODUCTS -++ PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_DEFAULT_GENCOMPS@/@PE_LIBSCI_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_DEFAULT_VOLATILE_PRGENV -++ PE_LIBSCI_GENCOMPS_CRAY_x86_64=83 -++ export PE_LIBSCI_GENCOMPS_CRAY_x86_64 -++ PE_LIBSCI_GENCOMPS_GNU_x86_64='49 48' -++ export PE_LIBSCI_GENCOMPS_GNU_x86_64 -++ PE_LIBSCI_GENCOMPS_INTEL_x86_64=140 -++ export PE_LIBSCI_GENCOMPS_INTEL_x86_64 -++ PE_LIBSCI_MODULE_NAME=cray-libsci/13.0.3 -++ export PE_LIBSCI_MODULE_NAME -++ PE_LIBSCI_OMP_REQUIRES_openmp=_mp -++ export PE_LIBSCI_OMP_REQUIRES_openmp -++ PE_LIBSCI_PKGCONFIG_LIBS=libsci_mpi:libsci -++ export PE_LIBSCI_PKGCONFIG_LIBS -++ PE_LIBSCI_PKGCONFIG_VARIABLES=PE_LIBSCI_OMP_REQUIRES_@openmp@ -++ export PE_LIBSCI_PKGCONFIG_VARIABLES -++ PE_LIBSCI_REQUIRED_PRODUCTS=PE_MPICH -++ export PE_LIBSCI_REQUIRED_PRODUCTS -++ PE_LIBSCI_VOLATILE_PKGCONFIG_PATH=/opt/cray/libsci/13.0.3/@PRGENV@/@PE_LIBSCI_GENCOMPS@/@PE_LIBSCI_TARGET@/lib/pkgconfig -++ export PE_LIBSCI_VOLATILE_PKGCONFIG_PATH -++ PE_LIBSCI_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_LIBSCI_VOLATILE_PRGENV -++ PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64=64 -++ export PE_MPICH_DEFAULT_DIR_CRAY_DEFAULT64 -++ PE_MPICH_DEFAULT_FIXED_PRGENV=INTEL -++ export PE_MPICH_DEFAULT_FIXED_PRGENV -++ PE_MPICH_DEFAULT_GENCOMPS_CRAY=83 -++ export PE_MPICH_DEFAULT_GENCOMPS_CRAY -++ PE_MPICH_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_MPICH_DEFAULT_GENCOMPS_GNU -++ PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/mpich2-@PRGENV@@PE_MPICH_DEFAULT_DIR_DEFAULT64@/@PE_MPICH_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_MPICH_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_MPICH_DEFAULT_VOLATILE_PRGENV='CRAY GNU' -++ export PE_MPICH_DEFAULT_VOLATILE_PRGENV -++ PE_MPICH_MULTITHREADED_LIBS_multithreaded=_mt -++ export PE_MPICH_MULTITHREADED_LIBS_multithreaded -++ PE_MPICH_NV_LIBS_nvidia20=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia20 -++ PE_MPICH_NV_LIBS_nvidia35=-lcudart -++ export PE_MPICH_NV_LIBS_nvidia35 -++ PE_MPICH_PKGCONFIG_VARIABLES=PE_MPICH_NV_LIBS_@accelerator@:PE_MPICH_MULTITHREADED_LIBS_@multithreaded@ -++ export PE_MPICH_PKGCONFIG_VARIABLES -++ PE_MPICH_TARGET_VAR_nvidia20=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia20 -++ PE_MPICH_TARGET_VAR_nvidia35=-lcudart -++ export PE_MPICH_TARGET_VAR_nvidia35 -++ PE_NETCDF_BASEDIR=/opt/cray/netcdf/4.3.3.1 -++ export PE_NETCDF_BASEDIR -++ PE_NETCDF_CXX_PKGCONFIG_LIBS=netcdf_c++4 -++ export PE_NETCDF_CXX_PKGCONFIG_LIBS -++ PE_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.2/@PRGENV@/@PE_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_FIXED_PRGENV -++ PE_NETCDF_FORTRAN_PKGCONFIG_LIBS=netcdff -++ export PE_NETCDF_FORTRAN_PKGCONFIG_LIBS -++ PE_NETCDF_GENCOMPILERS_GNU='5.1 4.9 4.8' -++ export PE_NETCDF_GENCOMPILERS_GNU -++ PE_NETCDF_GENCOMPS_GNU='51 49 48' -++ export PE_NETCDF_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_FIXED_PRGENV -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS_GNU -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS='PE_HDF5_PARALLEL PE_MPICH' -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_REQUIRED_PRODUCTS -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf-hdf5parallel/4.3.2/@PRGENV@/@PE_NETCDF_HDF5PARALLEL_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_HDF5PARALLEL_DEFAULT_VOLATILE_PRGENV -++ PE_NETCDF_MODULE_NAME=cray-netcdf -++ export PE_NETCDF_MODULE_NAME -++ PE_NETCDF_PKGCONFIG_LIBS=netcdf -++ export PE_NETCDF_PKGCONFIG_LIBS -++ PE_NETCDF_REQUIRED_PRODUCTS=PE_HDF5 -++ export PE_NETCDF_REQUIRED_PRODUCTS -++ PE_NETCDF_VOLATILE_PKGCONFIG_PATH=/opt/cray/netcdf/4.3.3.1/@PRGENV@/@PE_NETCDF_GENCOMPS@/lib/pkgconfig -++ export PE_NETCDF_VOLATILE_PKGCONFIG_PATH -++ PE_NETCDF_VOLATILE_PRGENV=GNU -++ export PE_NETCDF_VOLATILE_PRGENV -++ PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_ACCEL_LIBS_nvidia35 -++ PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES=PE_PAPI_ACCEL_LIBS_@accelerator@ -++ export PE_PAPI_DEFAULT_PKGCONFIG_VARIABLES -++ PE_PAPI_DEFAULT_TARGET_VAR_nvidia35=,-lcupti,-lcudart,-lcuda -++ export PE_PAPI_DEFAULT_TARGET_VAR_nvidia35 -++ PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV='CRAY INTEL' -++ export PE_PARALLEL_NETCDF_DEFAULT_FIXED_PRGENV -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU='4.9 4.8' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPILERS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU='49 48' -++ export PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS_GNU -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/parallel-netcdf/1.6.0/@PRGENV@/@PE_PARALLEL_NETCDF_DEFAULT_GENCOMPS@/lib/pkgconfig -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV=GNU -++ export PE_PARALLEL_NETCDF_DEFAULT_VOLATILE_PRGENV -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_PETSC_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_PETSC_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_PETSC_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_PETSC_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI:PE_TPSL -++ export PE_PETSC_DEFAULT_REQUIRED_PRODUCTS -++ PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/petsc/3.5.3.0/complex/@PRGENV@/@PE_PETSC_DEFAULT_GENCOMPS@/@PE_PETSC_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_PETSC_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_PETSC_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_PETSC_DEFAULT_VOLATILE_PRGENV -++ PE_PKGCONFIG_DEFAULT_PRODUCTS=PE_LIBSCI:PE_PARALLEL_NETCDF:PE_NETCDF:PE_GA:PE_TPSL:PE_NETCDF_HDF5PARALLEL:PE_HDF5_PARALLEL:PE_TRILINOS:PE_FFTW:PE_HDF5:PE_PETSC:PE_MPICH -++ export PE_PKGCONFIG_DEFAULT_PRODUCTS -++ PE_PKGCONFIG_LIBS=hdf5_hl:hdf5:netcdf:AtpSigHandler:cray-rca:libsci_mpi:libsci -++ export PE_PKGCONFIG_LIBS -++ PE_PKGCONFIG_PRODUCTS=PE_HDF5:PE_NETCDF:PE_LIBSCI -++ export PE_PKGCONFIG_PRODUCTS -++ PE_PKGCONFIG_PRODUCTS_DEFAULT=PE_PAPI -++ export PE_PKGCONFIG_PRODUCTS_DEFAULT -++ PE_PKG_CONFIG_PATH=/opt/cray/cti/1.0.2/lib/pkgconfig -++ export PE_PKG_CONFIG_PATH -++ PE_PRODUCT_LIST=CRAYPE_HASWELL:CRAY_RCA:CRAY_ALPS:DVS:CRAY_XPMEM:CRAY_DMAPP:CRAY_PMI:CRAY_UGNI:CRAY_UDREG:CRAY_LIBSCI:CRAYPE:INTEL -++ export PE_PRODUCT_LIST -++ PE_SMA_DIR_CRAY_DEFAULT64=64 -++ export PE_SMA_DIR_CRAY_DEFAULT64 -++ PE_SMA_DIR_PGI_DEFAULT64=64 -++ export PE_SMA_DIR_PGI_DEFAULT64 -++ PE_SMA_VOLATILE_PKGCONFIG_PATH=/opt/cray/mpt/7.2.0/gni/sma@PE_SMA_DIR_DEFAULT64@/lib64/pkgconfig -++ export PE_SMA_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TPSL_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TPSL_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_haswell -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_interlagos -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_sandybridge -++ PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TPSL_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TPSL_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_LIBSCI -++ export PE_TPSL_DEFAULT_REQUIRED_PRODUCTS -++ PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/tpsl/1.4.4/@PRGENV@/@PE_TPSL_DEFAULT_GENCOMPS@/@PE_TPSL_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TPSL_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TPSL_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TPSL_DEFAULT_VOLATILE_PRGENV -++ PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64=83 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_CRAY_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64='49 48' -++ export PE_TRILINOS_DEFAULT_GENCOMPS_GNU_x86_64 -++ PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64=140 -++ export PE_TRILINOS_DEFAULT_GENCOMPS_INTEL_x86_64 -++ PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS=PE_MPICH:PE_HDF5_PARALLEL:PE_NETCDF_HDF5PARALLEL:PE_LIBSCI:PE_TPSL -++ export PE_TRILINOS_DEFAULT_REQUIRED_PRODUCTS -++ PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH=/opt/cray/trilinos/11.12.1.2/@PRGENV@/@PE_TRILINOS_DEFAULT_GENCOMPS@/@PE_TRILINOS_DEFAULT_TARGET@/lib/pkgconfig -++ export PE_TRILINOS_DEFAULT_VOLATILE_PKGCONFIG_PATH -++ PE_TRILINOS_DEFAULT_VOLATILE_PRGENV='CRAY GNU INTEL' -++ export PE_TRILINOS_DEFAULT_VOLATILE_PRGENV -++ PKGCONFIG_ENABLED=1 -++ export PKGCONFIG_ENABLED -++ PKG_CONFIG_PATH=/opt/cray/alps/5.2.4-2.0502.9822.32.1.ari/lib64/pkgconfig:/opt/cray/rca/1.0.0-2.0502.60530.1.62.ari/lib64/pkgconfig:/opt/cray/alps/5.2.4-2.0502.9774.31.11.ari/lib64/pkgconfig:/opt/cray/xpmem/0.1-2.0502.64982.5.3.ari/lib64/pkgconfig:/opt/cray/gni-headers/4.0-1.0502.10859.7.8.ari/lib64/pkgconfig:/opt/cray/dmapp/7.0.1-1.0502.11080.8.76.ari/lib64/pkgconfig:/opt/cray/pmi/5.0.11/lib64/pkgconfig:/opt/cray/ugni/6.0-1.0502.10863.8.29.ari/lib64/pkgconfig:/opt/cray/udreg/2.3.2-1.0502.10518.2.17.ari/lib64/pkgconfig:/opt/cray/craype/2.3.0/pkg-config:/opt/cray/atp/1.8.1/lib/pkgconfig -++ export PKG_CONFIG_PATH -++ PKG_CONFIG_PATH_DEFAULT=/opt/cray/papi/5.4.0.1/lib64/pkgconfig -++ export PKG_CONFIG_PATH_DEFAULT -++ PNG_INC=/usrx/local/prod//png/1.2.49/intel/sandybridge/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod//png/1.2.49/intel/sandybridge/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod//png/1.2.49/intel/sandybridge/src -++ export PNG_SRC -++ PNG_VER=1.2.49 -++ export PNG_VER -++ POST_INC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ SHMEM_ABORT_ON_ERROR=1 -++ export SHMEM_ABORT_ON_ERROR -++ SLURM_PROLOG=/opt/cray/atp/1.8.1/libexec/slurm_prolog.ksh -++ export SLURM_PROLOG -++ SP_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/opt/intel/compilers_and_libraries_2016.3.210/linux/tbb -++ export TBBROOT -++ W3EMC_INC4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/compilers/intel/16.3.210/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/slsf/xt-lsfhpc/9.1/linux2.6-glibc2.3-x86_64-cray/lib/uid -++ export XLSF_UIDDIR -++ XTOS_VERSION=5.2.82 -++ export XTOS_VERSION -++ XTPE_NETWORK_TARGET=aries -++ export XTPE_NETWORK_TARGET -++ Z_INC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/include -++ export Z_INC -++ Z_LIB=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/dev/zlib/1.2.7/intel/sandybridge/src -++ export Z_SRC -++ Z_VER=1.2.7 -++ export Z_VER -++ _LMFILES_=/opt/cray/craype/default/alt-modulefiles/craype-network-aries:/opt/cray/alt-modulefiles/craype/2.3.0:/opt/cray/alt-modulefiles/cray-libsci/13.0.3:/opt/cray/ari/modulefiles/udreg/2.3.2-1.0502.10518.2.17.ari:/opt/cray/ari/modulefiles/ugni/6.0-1.0502.10863.8.29.ari:/opt/cray/ari/modulefiles/pmi/5.0.11:/opt/cray/ari/modulefiles/dmapp/7.0.1-1.0502.11080.8.76.ari:/opt/cray/ari/modulefiles/gni-headers/4.0-1.0502.10859.7.8.ari:/opt/cray/ari/modulefiles/xpmem/0.1-2.0502.64982.5.3.ari:/opt/cray/ari/modulefiles/dvs/2.5_0.9.0-1.0502.2188.1.116.ari:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9774.31.11.ari:/opt/cray/ari/modulefiles/rca/1.0.0-2.0502.60530.1.62.ari:/opt/cray/alt-modulefiles/atp/1.8.1:/opt/cray/alt-modulefiles/PrgEnv-intel/5.2.82:/opt/modulefiles/intel/16.3.210:/opt/cray/alt-modulefiles/cray-netcdf/4.3.3.1:/opt/cray/alt-modulefiles/cray-hdf5/1.8.14:/opt/modulefiles/xt-lsfhpc/9.1.3:/opt/cray/craype/default/alt-modulefiles/craype-haswell:/usrx/local/dev/modulefiles/python/2.7.14:/usrx/local/dev/modulefiles/cmake/3.6.2:/opt/modulefiles/gcc/4.9.2:/usrx/local/prod/modulefiles/jasper-gnu-sandybridge/1.900.1:/usrx/local/prod/modulefiles/png-intel-sandybridge/1.2.49:/usrx/local/dev/modulefiles/zlib-intel-sandybridge/1.2.7:/gpfs/hps/nco/ops/nwprod/lib/modulefiles/crtm-intel/2.2.6:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/g2tmpl/1.6.0:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/bacio/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/ip/3.0.2:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/sp/2.0.3:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3nco/2.0.7:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/w3emc/2.3.1:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/nemsio/2.2.4:/gpfs/hps/usrx/local/nceplibs/NCEPLIBS/modulefiles/post/8.0.5:/opt/cray/ari/modulefiles/alps/5.2.4-2.0502.9822.32.1.ari:/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0:/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 -++ export _LMFILES_ -+ module list -++ /opt/modules/3.2.10.3/bin/modulecmd bash list -Currently Loaded Modulefiles: - 1) craype-network-aries - 2) craype/2.3.0 - 3) cray-libsci/13.0.3 - 4) udreg/2.3.2-1.0502.10518.2.17.ari - 5) ugni/6.0-1.0502.10863.8.29.ari - 6) pmi/5.0.11 - 7) dmapp/7.0.1-1.0502.11080.8.76.ari - 8) gni-headers/4.0-1.0502.10859.7.8.ari - 9) xpmem/0.1-2.0502.64982.5.3.ari - 10) dvs/2.5_0.9.0-1.0502.2188.1.116.ari - 11) alps/5.2.4-2.0502.9774.31.11.ari - 12) rca/1.0.0-2.0502.60530.1.62.ari - 13) atp/1.8.1 - 14) PrgEnv-intel/5.2.82 - 15) intel/16.3.210 - 16) cray-netcdf/4.3.3.1 - 17) cray-hdf5/1.8.14 - 18) xt-lsfhpc/9.1.3 - 19) craype-haswell - 20) python/2.7.14 - 21) cmake/3.6.2 - 22) gcc/4.9.2 - 23) jasper-gnu-sandybridge/1.900.1 - 24) png-intel-sandybridge/1.2.49 - 25) zlib-intel-sandybridge/1.2.7 - 26) crtm-intel/2.2.6 - 27) g2/3.1.1 - 28) g2tmpl/1.6.0 - 29) bacio/2.0.3 - 30) ip/3.0.2 - 31) sp/2.0.3 - 32) w3nco/2.0.7 - 33) w3emc/2.3.1 - 34) nemsio/2.2.4 - 35) post/8.0.5 - 36) alps/5.2.4-2.0502.9822.32.1.ari - 37) esmf/8.0.0 - 38) fv3 -+ eval -+ cd build_fv3_3 -+ cmake /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y --- The C compiler identification is Intel 16.0.3.20160415 --- The CXX compiler identification is Intel 16.0.3.20160415 --- The Fortran compiler identification is Intel 16.0.3.20160415 --- Cray Programming Environment 2.3.0 C --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc --- Check for working C compiler: /opt/cray/craype/2.3.0/bin/cc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Cray Programming Environment 2.3.0 CXX --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC --- Check for working CXX compiler: /opt/cray/craype/2.3.0/bin/CC -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Cray Programming Environment 2.3.0 Fortran --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn --- Check for working Fortran compiler: /opt/cray/craype/2.3.0/bin/ftn -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 --- Checking whether /opt/cray/craype/2.3.0/bin/ftn supports Fortran 90 -- yes --- Found MPI_C: /opt/cray/craype/2.3.0/bin/cc --- Found MPI_CXX: /opt/cray/craype/2.3.0/bin/CC --- Found MPI_Fortran: /opt/cray/craype/2.3.0/bin/ftn -ESMFMKFILE: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include -ESMF_F90ESMFLINKRPATHS: -L/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/mod;/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/include;/opt/cray/netcdf/4.3.3.1/INTEL/14.0/include (found version "8.0.0") - -Setting configuration for wcoss_cray - -C compiler: Intel 16.0.3.20160415 (cc) -CXX compiler: Intel 16.0.3.20160415 (CC) -Fortran compiler: Intel 16.0.3.20160415 (ftn) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is ENABLED -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_3 -+ make -j 8 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Linking Fortran static library libfv3cpl.a -[ 5%] Built target fv3cpl -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -ifort: command line warning #10121: overriding '-xCORE-AVX2' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 19%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 21%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 22%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 28%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 33%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 52%] Linking Fortran static library libgfsphysics.a -[ 52%] Built target gfsphysics -Scanning dependencies of target ipd -[ 52%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 52%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 52%] Linking Fortran static library libipd.a -[ 52%] Built target ipd -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/opt/cray/hdf5/1.8.14/INTEL/14.0/lib/libhdf5.a(H5PL.o): In function `H5PL_load': -H5PL.c:(.text+0x3b7): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -/usrx/local/prod//jasper/1.900.1/gnu/sandybridge/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/jasper/1.900.1/gnu/sandybridge/sorc/jasper-1.900.1/src/libjasper/base/jas_stream.c:368: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -/gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/esmf/8.0.0/lib/libesmf.a(ESMCI_VMKernel.o): In function `ESMCI::socketClient()': -ESMCI_VMKernel.C:(.text+0x14ad1): warning: Using 'gethostbyname' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_3.exe -+ cp /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_cray/fv3 ../modules.fv3_3 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ elapsed=635 -+ echo 'Elapsed time 635 seconds. Compiling 32BIT=Y finished' -Elapsed time 635 seconds. Compiling 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017' ++ export COMPILE_NR=1 ++ COMPILE_NR=1 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=1 ++ TEST_NR=1 ++ export JBNME=compile_1 ++ JBNME=compile_1 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_1 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129100 +TEST 1 compile is waiting to enter the queue +1 min. TEST 1 compile is running, Status: RUN +2 min. TEST 1 compile is running, Status: RUN +3 min. TEST 1 compile is running, Status: RUN +4 min. TEST 1 compile is running, Status: RUN +5 min. TEST 1 compile is running, Status: RUN +6 min. TEST 1 compile is running, Status: RUN +7 min. TEST 1 compile is running, Status: RUN +8 min. TEST 1 compile is running, Status: RUN +9 min. TEST 1 compile is running, Status: RUN +10 min. TEST 1 compile is running, Status: RUN +11 min. TEST 1 compile is running, Status: RUN +12 min. TEST 1 compile is running, Status: RUN +13 min. TEST 1 compile is running, Status: RUN +14 min. TEST 1 compile is running, Status: RUN +15 min. TEST 1 compile is finished, Status: DONE ++ elapsed=906 ++ echo 'Elapsed time 906 seconds. Compile 1' +Elapsed time 906 seconds. Compile 1 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ export COMPILE_NR=2 ++ COMPILE_NR=2 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=2 ++ TEST_NR=2 ++ export JBNME=compile_2 ++ JBNME=compile_2 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_2 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129096 +TEST 2 compile is waiting to enter the queue +1 min. TEST 2 compile is running, Status: RUN +2 min. TEST 2 compile is running, Status: RUN +3 min. TEST 2 compile is running, Status: RUN +4 min. TEST 2 compile is running, Status: RUN +5 min. TEST 2 compile is running, Status: RUN +6 min. TEST 2 compile is running, Status: RUN +7 min. TEST 2 compile is running, Status: RUN +8 min. TEST 2 compile is running, Status: RUN +9 min. TEST 2 compile is running, Status: RUN +10 min. TEST 2 compile is running, Status: RUN +11 min. TEST 2 compile is running, Status: RUN +12 min. TEST 2 compile is running, Status: RUN +13 min. TEST 2 compile is running, Status: RUN +14 min. TEST 2 compile is running, Status: RUN +15 min. TEST 2 compile is running, Status: RUN +16 min. TEST 2 compile is running, Status: RUN +17 min. TEST 2 compile is running, Status: RUN +18 min. TEST 2 compile is running, Status: RUN +19 min. TEST 2 compile is running, Status: RUN +20 min. TEST 2 compile is running, Status: RUN +21 min. TEST 2 compile is finished, Status: DONE ++ elapsed=1266 ++ echo 'Elapsed time 1266 seconds. Compile 2' +Elapsed time 1266 seconds. Compile 2 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ export COMPILE_NR=3 ++ COMPILE_NR=3 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=3 ++ TEST_NR=3 ++ export JBNME=compile_3 ++ JBNME=compile_3 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_3 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129103 +TEST 3 compile is waiting to enter the queue +1 min. TEST 3 compile is running, Status: RUN +2 min. TEST 3 compile is running, Status: RUN +3 min. TEST 3 compile is running, Status: RUN +4 min. TEST 3 compile is running, Status: RUN +5 min. TEST 3 compile is running, Status: RUN +6 min. TEST 3 compile is running, Status: RUN +7 min. TEST 3 compile is running, Status: RUN +8 min. TEST 3 compile is running, Status: RUN +9 min. TEST 3 compile is running, Status: RUN +10 min. TEST 3 compile is running, Status: RUN +11 min. TEST 3 compile is running, Status: RUN +12 min. TEST 3 compile is running, Status: RUN +13 min. TEST 3 compile is running, Status: RUN +14 min. TEST 3 compile is running, Status: RUN +15 min. TEST 3 compile is finished, Status: DONE ++ elapsed=906 ++ echo 'Elapsed time 906 seconds. Compile 3' +Elapsed time 906 seconds. Compile 3 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ export COMPILE_NR=4 ++ COMPILE_NR=4 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=4 ++ TEST_NR=4 ++ export JBNME=compile_4 ++ JBNME=compile_4 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_4 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129101 +TEST 4 compile is waiting to enter the queue +1 min. TEST 4 compile is running, Status: RUN +2 min. TEST 4 compile is running, Status: RUN +3 min. TEST 4 compile is running, Status: RUN +4 min. TEST 4 compile is running, Status: RUN +5 min. TEST 4 compile is running, Status: RUN +6 min. TEST 4 compile is running, Status: RUN +7 min. TEST 4 compile is running, Status: RUN +8 min. TEST 4 compile is running, Status: RUN +9 min. TEST 4 compile is running, Status: RUN +10 min. TEST 4 compile is running, Status: RUN +11 min. TEST 4 compile is running, Status: RUN +12 min. TEST 4 compile is running, Status: RUN +13 min. TEST 4 compile is running, Status: RUN +14 min. TEST 4 compile is running, Status: RUN +15 min. TEST 4 compile is running, Status: RUN +16 min. TEST 4 compile is running, Status: RUN +17 min. TEST 4 compile is finished, Status: DONE ++ elapsed=1026 ++ echo 'Elapsed time 1026 seconds. Compile 4' +Elapsed time 1026 seconds. Compile 4 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=5 ++ COMPILE_NR=5 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=5 ++ TEST_NR=5 ++ export JBNME=compile_5 ++ JBNME=compile_5 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_5 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129097 +TEST 5 compile is waiting to enter the queue +1 min. TEST 5 compile is running, Status: RUN +2 min. TEST 5 compile is running, Status: RUN +3 min. TEST 5 compile is running, Status: RUN +4 min. TEST 5 compile is running, Status: RUN +5 min. TEST 5 compile is running, Status: RUN +6 min. TEST 5 compile is running, Status: RUN +7 min. TEST 5 compile is running, Status: RUN +8 min. TEST 5 compile is running, Status: RUN +9 min. TEST 5 compile is running, Status: RUN +10 min. TEST 5 compile is running, Status: RUN +11 min. TEST 5 compile is running, Status: RUN +12 min. TEST 5 compile is finished, Status: DONE ++ elapsed=726 ++ echo 'Elapsed time 726 seconds. Compile 5' +Elapsed time 726 seconds. Compile 5 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=6 ++ COMPILE_NR=6 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=6 ++ TEST_NR=6 ++ export JBNME=compile_6 ++ JBNME=compile_6 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_6 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129104 +TEST 6 compile is waiting to enter the queue +1 min. TEST 6 compile is running, Status: RUN +2 min. TEST 6 compile is running, Status: RUN +3 min. TEST 6 compile is running, Status: RUN +4 min. TEST 6 compile is running, Status: RUN +5 min. TEST 6 compile is running, Status: RUN +6 min. TEST 6 compile is running, Status: RUN +7 min. TEST 6 compile is running, Status: RUN +8 min. TEST 6 compile is running, Status: RUN +9 min. TEST 6 compile is running, Status: RUN +10 min. TEST 6 compile is running, Status: RUN +11 min. TEST 6 compile is running, Status: RUN +12 min. TEST 6 compile is running, Status: RUN +13 min. TEST 6 compile is running, Status: RUN +14 min. TEST 6 compile is running, Status: RUN +15 min. TEST 6 compile is running, Status: RUN +16 min. TEST 6 compile is finished, Status: DONE ++ elapsed=966 ++ echo 'Elapsed time 966 seconds. Compile 6' +Elapsed time 966 seconds. Compile 6 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ export COMPILE_NR=7 ++ COMPILE_NR=7 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=7 ++ TEST_NR=7 ++ export JBNME=compile_7 ++ JBNME=compile_7 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_7 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129102 +TEST 7 compile is waiting to enter the queue +1 min. TEST 7 compile is running, Status: RUN +2 min. TEST 7 compile is running, Status: RUN +3 min. TEST 7 compile is running, Status: RUN +4 min. TEST 7 compile is running, Status: RUN +5 min. TEST 7 compile is running, Status: RUN +6 min. TEST 7 compile is running, Status: RUN +7 min. TEST 7 compile is running, Status: RUN +8 min. TEST 7 compile is running, Status: RUN +9 min. TEST 7 compile is running, Status: RUN +10 min. TEST 7 compile is running, Status: RUN +11 min. TEST 7 compile is running, Status: RUN +12 min. TEST 7 compile is running, Status: RUN +13 min. TEST 7 compile is running, Status: RUN +14 min. TEST 7 compile is running, Status: RUN +15 min. TEST 7 compile is running, Status: RUN +16 min. TEST 7 compile is running, Status: RUN +17 min. TEST 7 compile is running, Status: RUN +18 min. TEST 7 compile is running, Status: RUN +19 min. TEST 7 compile is running, Status: RUN +20 min. TEST 7 compile is finished, Status: DONE ++ elapsed=1206 ++ echo 'Elapsed time 1206 seconds. Compile 7' +Elapsed time 1206 seconds. Compile 7 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ export COMPILE_NR=8 ++ COMPILE_NR=8 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=8 ++ TEST_NR=8 ++ export JBNME=compile_8 ++ JBNME=compile_8 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_8 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129099 +TEST 8 compile is waiting to enter the queue +1 min. TEST 8 compile is running, Status: RUN +2 min. TEST 8 compile is running, Status: RUN +3 min. TEST 8 compile is running, Status: RUN +4 min. TEST 8 compile is running, Status: RUN +5 min. TEST 8 compile is running, Status: RUN +6 min. TEST 8 compile is running, Status: RUN +7 min. TEST 8 compile is running, Status: RUN +8 min. TEST 8 compile is running, Status: RUN +9 min. TEST 8 compile is running, Status: RUN +10 min. TEST 8 compile is running, Status: RUN +11 min. TEST 8 compile is running, Status: RUN +12 min. TEST 8 compile is running, Status: RUN +13 min. TEST 8 compile is running, Status: RUN +14 min. TEST 8 compile is running, Status: RUN +15 min. TEST 8 compile is running, Status: RUN +16 min. TEST 8 compile is finished, Status: DONE ++ elapsed=966 ++ echo 'Elapsed time 966 seconds. Compile 8' +Elapsed time 966 seconds. Compile 8 ++ SECONDS=0 ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ RUNDIR_ROOT=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=9 ++ COMPILE_NR=9 ++ cd /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9.env ]] ++ source /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9.env +++ export MACHINE_ID=wcoss_cray +++ MACHINE_ID=wcoss_cray +++ export PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev +++ QUEUE=dev +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ REGRESSIONTEST_LOG=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_cray.log +++ export LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray +++ LOG_DIR=/gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_cray ++ source default_vars.sh +++ '[' wcoss_cray = wcoss ']' +++ '[' wcoss_cray = wcoss_cray ']' +++ TASKS_dflt=150 +++ TPN_dflt=24 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=12 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=24 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=24 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=9 ++ TEST_NR=9 ++ export JBNME=compile_9 ++ JBNME=compile_9 ++ export RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9 ++ RUNDIR=/gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/hps3/emc/meso/save/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \.\/\r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9 ++ cd /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/compile_9 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: OMP_NUM_THREADS value changed to 1 +ESUB: MEMORY LIMIT rusage set to "rusage[mem=500]" - with rusage set in shared job. +Job id 129098 +TEST 9 compile is waiting to enter the queue +1 min. TEST 9 compile is running, Status: RUN +2 min. TEST 9 compile is running, Status: RUN +3 min. TEST 9 compile is running, Status: RUN +4 min. TEST 9 compile is running, Status: RUN +5 min. TEST 9 compile is running, Status: RUN +6 min. TEST 9 compile is running, Status: RUN +7 min. TEST 9 compile is running, Status: RUN +8 min. TEST 9 compile is running, Status: RUN +9 min. TEST 9 compile is running, Status: RUN +10 min. TEST 9 compile is running, Status: RUN +11 min. TEST 9 compile is running, Status: RUN +12 min. TEST 9 compile is running, Status: RUN +13 min. TEST 9 compile is running, Status: RUN +14 min. TEST 9 compile is finished, Status: DONE ++ elapsed=846 ++ echo 'Elapsed time 846 seconds. Compile 9' +Elapsed time 846 seconds. Compile 9 diff --git a/tests/Compile_wcoss_dell_p3.log b/tests/Compile_wcoss_dell_p3.log index accb25c58e..5fbf2408d2 100644 --- a/tests/Compile_wcoss_dell_p3.log +++ b/tests/Compile_wcoss_dell_p3.log @@ -1,63541 +1,1253 @@ + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ BUILD_NAME=fv3_10 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_10 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_10.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_10.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_10 -+ mkdir -p build_fv3_10 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --builddir=tests/build_fv3_10/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional_c768.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_10/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_10/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_10/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_10/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_10/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -+ source build_fv3_10/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__181954 -++ eval 'setup__test_function__181954() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__181954 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__181954 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_10 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_10 -+ make -j 4 -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -Scanning dependencies of target fms -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 62%] Linking Fortran static library libccppphys.a -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 63%] Built target ccppphys -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -Scanning dependencies of target gfsphysics -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 70%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 70%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 72%] Linking Fortran static library libgfsphysics.a -[ 72%] Built target gfsphysics -Scanning dependencies of target ccppdriver -[ 72%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Scanning dependencies of target ipd -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 73%] Linking Fortran static library libccppdriver.a -[ 73%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_10.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_10 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_10 -+ elapsed=604 -+ echo 'Elapsed time 604 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 604 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_v16_csawmg' ++ export COMPILE_NR=10 ++ COMPILE_NR=10 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=10 ++ TEST_NR=10 ++ export JBNME=compile_10 ++ JBNME=compile_10 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_10 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844129 +TEST 10 compile is waiting to enter the queue +1 min. TEST 10 compile is running, Status: RUN +2 min. TEST 10 compile is running, Status: RUN +3 min. TEST 10 compile is running, Status: RUN +4 min. TEST 10 compile is running, Status: RUN +5 min. TEST 10 compile is running, Status: RUN +6 min. TEST 10 compile is running, Status: RUN +7 min. TEST 10 compile is running, Status: RUN +8 min. TEST 10 compile is running, Status: RUN +9 min. TEST 10 compile is running, Status: RUN +10 min. TEST 10 compile is running, Status: RUN +11 min. TEST 10 compile is running, Status: RUN +12 min. TEST 10 compile is running, Status: RUN +13 min. TEST 10 compile is running, Status: RUN +14 min. TEST 10 compile is running, Status: RUN +15 min. TEST 10 compile is running, Status: RUN +16 min. TEST 10 compile is running, Status: RUN +17 min. TEST 10 compile is running, Status: RUN +18 min. TEST 10 compile is running, Status: RUN +19 min. TEST 10 compile is running, Status: RUN +20 min. TEST 10 compile is running, Status: RUN +21 min. TEST 10 compile is running, Status: RUN +22 min. TEST 10 compile is finished, Status: DONE ++ elapsed=1327 ++ echo 'Elapsed time 1327 seconds. Compile 10' +Elapsed time 1327 seconds. Compile 10 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_11 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_11 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_11.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_11.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_11 -+ mkdir -p build_fv3_11 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_11/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_11/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_11/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_11/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_11/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_11/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_11/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__196100 -++ eval 'setup__test_function__196100() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__196100 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__196100 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_11 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_11 -+ make -j 4 -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target fv3cpl -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Built target ccpp -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Linking Fortran static library libfv3cpl.a -[ 3%] Built target fv3cpl -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 54%] Linking Fortran static library FMS/libfms.a -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 54%] Built target fms -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_11.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_11 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_11 -+ elapsed=621 -+ echo 'Elapsed time 621 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 621 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=11 ++ COMPILE_NR=11 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=11 ++ TEST_NR=11 ++ export JBNME=compile_11 ++ JBNME=compile_11 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_11 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844540 +TEST 11 compile is waiting to enter the queue +1 min. TEST 11 compile is running, Status: RUN +2 min. TEST 11 compile is running, Status: RUN +3 min. TEST 11 compile is running, Status: RUN +4 min. TEST 11 compile is running, Status: RUN +5 min. TEST 11 compile is running, Status: RUN +6 min. TEST 11 compile is running, Status: RUN +7 min. TEST 11 compile is running, Status: RUN +8 min. TEST 11 compile is running, Status: RUN +9 min. TEST 11 compile is running, Status: RUN +10 min. TEST 11 compile is running, Status: RUN +11 min. TEST 11 compile is running, Status: RUN +12 min. TEST 11 compile is running, Status: RUN +13 min. TEST 11 compile is running, Status: RUN +14 min. TEST 11 compile is running, Status: RUN +15 min. TEST 11 compile is running, Status: RUN +16 min. TEST 11 compile is running, Status: RUN +17 min. TEST 11 compile is running, Status: RUN +18 min. TEST 11 compile is running, Status: RUN +19 min. TEST 11 compile is running, Status: RUN +20 min. TEST 11 compile is running, Status: RUN +21 min. TEST 11 compile is running, Status: RUN +22 min. TEST 11 compile is finished, Status: DONE ++ elapsed=1327 ++ echo 'Elapsed time 1327 seconds. Compile 11' +Elapsed time 1327 seconds. Compile 11 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ BUILD_NAME=fv3_12 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_12 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_12.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_12.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_12 -+ mkdir -p build_fv3_12 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --builddir=tests/build_fv3_12/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmgshoc.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmg.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_satmedmf.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_12/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_12/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_12/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to tests/build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_12/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_12/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -+ source build_fv3_12/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__196342 -++ eval 'setup__test_function__196342() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__196342 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__196342 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_12 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_12 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 3%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 3%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 6%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Built target fv3cpl -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 7%] Built target ccpp -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -Scanning dependencies of target ccppphys -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 63%] Linking Fortran static library FMS/libfms.a -[ 63%] Built target fms -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 69%] Linking Fortran static library libccppphys.a -[ 69%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 74%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_12.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_12 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_12 -+ elapsed=624 -+ echo 'Elapsed time 624 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 624 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017' ++ export COMPILE_NR=1 ++ COMPILE_NR=1 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=1 ++ TEST_NR=1 ++ export JBNME=compile_1 ++ JBNME=compile_1 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_1 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844133 +TEST 1 compile is waiting to enter the queue +1 min. TEST 1 compile is running, Status: RUN +2 min. TEST 1 compile is running, Status: RUN +3 min. TEST 1 compile is running, Status: RUN +4 min. TEST 1 compile is running, Status: RUN +5 min. TEST 1 compile is running, Status: RUN +6 min. TEST 1 compile is running, Status: RUN +7 min. TEST 1 compile is running, Status: RUN +8 min. TEST 1 compile is running, Status: RUN +9 min. TEST 1 compile is running, Status: RUN +10 min. TEST 1 compile is running, Status: RUN +11 min. TEST 1 compile is running, Status: RUN +12 min. TEST 1 compile is running, Status: RUN +13 min. TEST 1 compile is running, Status: RUN +14 min. TEST 1 compile is running, Status: RUN +15 min. TEST 1 compile is running, Status: RUN +16 min. TEST 1 compile is running, Status: RUN +17 min. TEST 1 compile is running, Status: RUN +18 min. TEST 1 compile is running, Status: RUN +19 min. TEST 1 compile is running, Status: RUN +20 min. TEST 1 compile is running, Status: RUN +21 min. TEST 1 compile is running, Status: RUN +22 min. TEST 1 compile is finished, Status: DONE ++ elapsed=1327 ++ echo 'Elapsed time 1327 seconds. Compile 1' +Elapsed time 1327 seconds. Compile 1 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y' -+ BUILD_NAME=fv3_13 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_13 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_13.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y into fv3_13.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_13 -+ mkdir -p build_fv3_13 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 --builddir=tests/build_fv3_13/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_CPT_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_13/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_13/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_13/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 17 auto-generated caps to tests/build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_13/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_13/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90' -+ source build_fv3_13/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__24627 -++ eval 'setup__test_function__24627() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__24627 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__24627 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_13 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_13 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -Scanning dependencies of target ccpp -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 67%] Linking Fortran static library FMS/libfms.a -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 67%] Built target fms -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 70%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 70%] Linking Fortran static library libccppphys.a -[ 70%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 74%] Linking Fortran static library libgfsphysics.a -[ 74%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 75%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 75%] Linking Fortran static library libccppdriver.a -[ 75%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_13.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_13 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_13 -+ elapsed=627 -+ echo 'Elapsed time 627 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished' -Elapsed time 627 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' ++ export COMPILE_NR=2 ++ COMPILE_NR=2 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=2 ++ TEST_NR=2 ++ export JBNME=compile_2 ++ JBNME=compile_2 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_2 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844128 +TEST 2 compile is waiting to enter the queue +1 min. TEST 2 compile is running, Status: RUN +2 min. TEST 2 compile is running, Status: RUN +3 min. TEST 2 compile is running, Status: RUN +4 min. TEST 2 compile is running, Status: RUN +5 min. TEST 2 compile is running, Status: RUN +6 min. TEST 2 compile is running, Status: RUN +7 min. TEST 2 compile is running, Status: RUN +8 min. TEST 2 compile is running, Status: RUN +9 min. TEST 2 compile is running, Status: RUN +10 min. TEST 2 compile is running, Status: RUN +11 min. TEST 2 compile is running, Status: RUN +12 min. TEST 2 compile is running, Status: RUN +13 min. TEST 2 compile is running, Status: RUN +14 min. TEST 2 compile is running, Status: RUN +15 min. TEST 2 compile is running, Status: RUN +16 min. TEST 2 compile is running, Status: RUN +17 min. TEST 2 compile is running, Status: RUN +18 min. TEST 2 compile is running, Status: RUN +19 min. TEST 2 compile is running, Status: RUN +20 min. TEST 2 compile is running, Status: RUN +21 min. TEST 2 compile is running, Status: RUN +22 min. TEST 2 compile is running, Status: RUN +23 min. TEST 2 compile is running, Status: RUN +24 min. TEST 2 compile is running, Status: RUN +25 min. TEST 2 compile is running, Status: RUN +26 min. TEST 2 compile is running, Status: RUN +27 min. TEST 2 compile is running, Status: RUN +28 min. TEST 2 compile is running, Status: RUN +29 min. TEST 2 compile is running, Status: RUN +30 min. TEST 2 compile is running, Status: RUN +31 min. TEST 2 compile is finished, Status: DONE ++ elapsed=1868 ++ echo 'Elapsed time 1868 seconds. Compile 2' +Elapsed time 1868 seconds. Compile 2 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ BUILD_NAME=fv3_14 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_14 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_14.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_14.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_14 -+ mkdir -p build_fv3_14 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017 --builddir=tests/build_fv3_14/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_14/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_mixing_ratio_updated_by_physics -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_14/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_14/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_14/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_14/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -+ source build_fv3_14/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__124956 -++ eval 'setup__test_function__124956() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__124956 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__124956 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_14 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_14 -+ make -j 4 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Built target ccpp -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Built target fv3cpl -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 56%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 60%] Linking Fortran static library FMS/libfms.a -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 61%] Built target fms -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 68%] Linking Fortran static library libccppphys.a -[ 68%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ccppdriver -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Linking Fortran static library libio.a -[ 86%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_14.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_14 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_14 -+ elapsed=633 -+ echo 'Elapsed time 633 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 633 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' ++ export COMPILE_NR=3 ++ COMPILE_NR=3 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=3 ++ TEST_NR=3 ++ export JBNME=compile_3 ++ JBNME=compile_3 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_3 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844125 +TEST 3 compile is waiting to enter the queue +1 min. TEST 3 compile is running, Status: RUN +2 min. TEST 3 compile is running, Status: RUN +3 min. TEST 3 compile is running, Status: RUN +4 min. TEST 3 compile is running, Status: RUN +5 min. TEST 3 compile is running, Status: RUN +6 min. TEST 3 compile is running, Status: RUN +7 min. TEST 3 compile is running, Status: RUN +8 min. TEST 3 compile is running, Status: RUN +9 min. TEST 3 compile is running, Status: RUN +10 min. TEST 3 compile is running, Status: RUN +11 min. TEST 3 compile is running, Status: RUN +12 min. TEST 3 compile is running, Status: RUN +13 min. TEST 3 compile is running, Status: RUN +14 min. TEST 3 compile is running, Status: RUN +15 min. TEST 3 compile is running, Status: RUN +16 min. TEST 3 compile is running, Status: RUN +17 min. TEST 3 compile is running, Status: RUN +18 min. TEST 3 compile is running, Status: RUN +19 min. TEST 3 compile is running, Status: RUN +20 min. TEST 3 compile is running, Status: RUN +21 min. TEST 3 compile is running, Status: RUN +22 min. TEST 3 compile is finished, Status: DONE ++ elapsed=1327 ++ echo 'Elapsed time 1327 seconds. Compile 3' +Elapsed time 1327 seconds. Compile 3 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' -+ BUILD_NAME=fv3_15 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_15 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_15.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_15.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_15 -+ mkdir -p build_fv3_15 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_gfdlmp --builddir=tests/build_fv3_15/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_15/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_15/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_15/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_15/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_15/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -+ source build_fv3_15/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__73309 -++ eval 'setup__test_function__73309() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__73309 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__73309 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_15 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=wcoss_dell_p3 ww3_nems - in: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_15 -+ make -j 4 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Built target ww3_nems -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Linking Fortran static library FMS/libfms.a -[ 59%] Built target fms -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_15.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_15 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_15 -+ elapsed=644 -+ echo 'Elapsed time 644 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished' -Elapsed time 644 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' ++ export COMPILE_NR=4 ++ COMPILE_NR=4 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=4 ++ TEST_NR=4 ++ export JBNME=compile_4 ++ JBNME=compile_4 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_4 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844127 +TEST 4 compile is waiting to enter the queue +1 min. TEST 4 compile is running, Status: RUN +2 min. TEST 4 compile is running, Status: RUN +3 min. TEST 4 compile is running, Status: RUN +4 min. TEST 4 compile is running, Status: RUN +5 min. TEST 4 compile is running, Status: RUN +6 min. TEST 4 compile is running, Status: RUN +7 min. TEST 4 compile is running, Status: RUN +8 min. TEST 4 compile is running, Status: RUN +9 min. TEST 4 compile is running, Status: RUN +10 min. TEST 4 compile is running, Status: RUN +11 min. TEST 4 compile is running, Status: RUN +12 min. TEST 4 compile is running, Status: RUN +13 min. TEST 4 compile is running, Status: RUN +14 min. TEST 4 compile is running, Status: RUN +15 min. TEST 4 compile is running, Status: RUN +16 min. TEST 4 compile is running, Status: RUN +17 min. TEST 4 compile is running, Status: RUN +18 min. TEST 4 compile is running, Status: RUN +19 min. TEST 4 compile is running, Status: RUN +20 min. TEST 4 compile is running, Status: RUN +21 min. TEST 4 compile is running, Status: RUN +22 min. TEST 4 compile is running, Status: RUN +23 min. TEST 4 compile is finished, Status: DONE ++ elapsed=1388 ++ echo 'Elapsed time 1388 seconds. Compile 4' +Elapsed time 1388 seconds. Compile 4 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ BUILD_NAME=fv3_16 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_16 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_16.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_16.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_16 -+ mkdir -p build_fv3_16 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_16/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_16/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_16/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_16/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_16/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_16/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_16/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__132000 -++ eval 'setup__test_function__132000() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__132000 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__132000 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_16 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_16 -+ make -j 4 -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Linking Fortran static library libccpp.a -Scanning dependencies of target fms -[ 1%] Built target ccpp -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Scanning dependencies of target ccppphys -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 1%] Built target fv3cpl -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 62%] Linking Fortran static library libccppphys.a -[ 62%] Built target ccppphys -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -Scanning dependencies of target gfsphysics -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_16.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_16 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_16 -+ elapsed=620 -+ echo 'Elapsed time 620 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 620 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=5 ++ COMPILE_NR=5 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=5 ++ TEST_NR=5 ++ export JBNME=compile_5 ++ JBNME=compile_5 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_5 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844130 +TEST 5 compile is waiting to enter the queue +1 min. TEST 5 compile is running, Status: RUN +2 min. TEST 5 compile is running, Status: RUN +3 min. TEST 5 compile is running, Status: RUN +4 min. TEST 5 compile is running, Status: RUN +5 min. TEST 5 compile is running, Status: RUN +6 min. TEST 5 compile is running, Status: RUN +7 min. TEST 5 compile is finished, Status: DONE ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 5' +Elapsed time 426 seconds. Compile 5 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y' -+ BUILD_NAME=fv3_17 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_17 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_17.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y into fv3_17.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_17 -+ mkdir -p build_fv3_17 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 --builddir=tests/build_fv3_17/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_regional_c768.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_17/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_17/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_17/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_17/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_17/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90' -+ source build_fv3_17/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__160632 -++ eval 'setup__test_function__160632() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__160632 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__160632 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_17 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_17 -+ make -j 4 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Scanning dependencies of target ccppphys -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_stochastics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_stochastics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_physics_cap.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_physics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_radiation_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_time_vary_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_radiation_cap.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_c768_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_regional_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 61%] Linking Fortran static library libccppphys.a -[ 61%] Built target ccppphys -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -Scanning dependencies of target gfsphysics -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 70%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 70%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 70%] Linking Fortran static library FMS/libfms.a -[ 70%] Built target fms -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 72%] Linking Fortran static library libgfsphysics.a -[ 72%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 73%] Linking Fortran static library libccppdriver.a -[ 73%] Built target ccppdriver -[ 74%] Linking Fortran static library libipd.a -[ 74%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 82%] Linking Fortran static library libio.a -[ 82%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_17.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_17 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_17 -+ elapsed=620 -+ echo 'Elapsed time 620 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished' -Elapsed time 620 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' ++ export COMPILE_NR=6 ++ COMPILE_NR=6 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=6 ++ TEST_NR=6 ++ export JBNME=compile_6 ++ JBNME=compile_6 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_6 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844132 +TEST 6 compile is waiting to enter the queue +1 min. TEST 6 compile is running, Status: RUN +2 min. TEST 6 compile is running, Status: RUN +3 min. TEST 6 compile is running, Status: RUN +4 min. TEST 6 compile is running, Status: RUN +5 min. TEST 6 compile is running, Status: RUN +6 min. TEST 6 compile is running, Status: RUN +7 min. TEST 6 compile is running, Status: RUN +8 min. TEST 6 compile is running, Status: RUN +9 min. TEST 6 compile is running, Status: RUN +10 min. TEST 6 compile is running, Status: RUN +11 min. TEST 6 compile is running, Status: RUN +12 min. TEST 6 compile is running, Status: RUN +13 min. TEST 6 compile is running, Status: RUN +14 min. TEST 6 compile is running, Status: RUN +15 min. TEST 6 compile is running, Status: RUN +16 min. TEST 6 compile is running, Status: RUN +17 min. TEST 6 compile is running, Status: RUN +18 min. TEST 6 compile is running, Status: RUN +19 min. TEST 6 compile is running, Status: RUN +20 min. TEST 6 compile is running, Status: RUN +21 min. TEST 6 compile is running, Status: RUN +22 min. TEST 6 compile is running, Status: RUN +23 min. TEST 6 compile is finished, Status: DONE ++ elapsed=1388 ++ echo 'Elapsed time 1388 seconds. Compile 6' +Elapsed time 1388 seconds. Compile 6 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y' -+ BUILD_NAME=fv3_18 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_18 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_18.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y into fv3_18.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_18 -+ mkdir -p build_fv3_18 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_18/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_18/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_18/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_18/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_18/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_18/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_18/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__160947 -++ eval 'setup__test_function__160947() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__160947 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__160947 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_18 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_18 -+ make -j 4 -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Linking Fortran static library libccpp.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Built target ccpp -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Built target fv3cpl -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -fpp: warning: keyword redefined: STATIC -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -fpp: warning: keyword redefined: STATIC -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -fpp: warning: keyword redefined: STATIC -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -fpp: warning: keyword redefined: STATIC -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -fpp: warning: keyword redefined: STATIC -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -fpp: warning: keyword redefined: STATIC -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -fpp: warning: keyword redefined: STATIC -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -fpp: warning: keyword redefined: STATIC -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -fpp: warning: keyword redefined: STATIC -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -fpp: warning: keyword redefined: STATIC -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -fpp: warning: keyword redefined: STATIC -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -fpp: warning: keyword redefined: STATIC -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -fpp: warning: keyword redefined: STATIC -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -fpp: warning: keyword redefined: STATIC -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Linking Fortran static library libccppphys.a -[ 51%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -fpp: warning: keyword redefined: STATIC -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 63%] Linking Fortran static library libgfsphysics.a -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 63%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 63%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 63%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 64%] Linking Fortran static library libccppdriver.a -[ 64%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 64%] Built target ccppdriver -[ 65%] Linking Fortran static library libipd.a -[ 65%] Built target ipd -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 71%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 73%] Linking Fortran static library FMS/libfms.a -[ 73%] Built target fms -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Linking Fortran static library libio.a -[ 79%] Built target io -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -fpp: warning: keyword redefined: STATIC -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_18.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_18 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_18 -+ elapsed=195 -+ echo 'Elapsed time 195 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished' -Elapsed time 195 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq' ++ export COMPILE_NR=7 ++ COMPILE_NR=7 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=7 ++ TEST_NR=7 ++ export JBNME=compile_7 ++ JBNME=compile_7 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_7 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844126 +TEST 7 compile is waiting to enter the queue +1 min. TEST 7 compile is running, Status: RUN +2 min. TEST 7 compile is running, Status: RUN +3 min. TEST 7 compile is running, Status: RUN +4 min. TEST 7 compile is running, Status: RUN +5 min. TEST 7 compile is running, Status: RUN +6 min. TEST 7 compile is running, Status: RUN +7 min. TEST 7 compile is running, Status: RUN +8 min. TEST 7 compile is running, Status: RUN +9 min. TEST 7 compile is running, Status: RUN +10 min. TEST 7 compile is running, Status: RUN +11 min. TEST 7 compile is running, Status: RUN +12 min. TEST 7 compile is running, Status: RUN +13 min. TEST 7 compile is running, Status: RUN +14 min. TEST 7 compile is running, Status: RUN +15 min. TEST 7 compile is running, Status: RUN +16 min. TEST 7 compile is running, Status: RUN +17 min. TEST 7 compile is running, Status: RUN +18 min. TEST 7 compile is running, Status: RUN +19 min. TEST 7 compile is running, Status: RUN +20 min. TEST 7 compile is running, Status: RUN +21 min. TEST 7 compile is running, Status: RUN +22 min. TEST 7 compile is running, Status: RUN +23 min. TEST 7 compile is running, Status: RUN +24 min. TEST 7 compile is running, Status: RUN +25 min. TEST 7 compile is finished, Status: DONE ++ elapsed=1508 ++ echo 'Elapsed time 1508 seconds. Compile 7' +Elapsed time 1508 seconds. Compile 7 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_19 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_19 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_19.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_19.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_19 -+ mkdir -p build_fv3_19 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_19/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_19/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_19/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_19/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_19/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_19/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_19/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__175945 -++ eval 'setup__test_function__175945() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__175945 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__175945 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_19 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_19 -+ make -j 4 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 1%] Built target fv3cpl -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library FMS/libfms.a -[ 66%] Built target fms -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_19.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_19 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_19 -+ elapsed=656 -+ echo 'Elapsed time 656 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 656 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' ++ export COMPILE_NR=8 ++ COMPILE_NR=8 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=8 ++ TEST_NR=8 ++ export JBNME=compile_8 ++ JBNME=compile_8 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_8 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844131 +TEST 8 compile is waiting to enter the queue +1 min. TEST 8 compile is running, Status: RUN +2 min. TEST 8 compile is running, Status: RUN +3 min. TEST 8 compile is running, Status: RUN +4 min. TEST 8 compile is running, Status: RUN +5 min. TEST 8 compile is running, Status: RUN +6 min. TEST 8 compile is running, Status: RUN +7 min. TEST 8 compile is running, Status: RUN +8 min. TEST 8 compile is running, Status: RUN +9 min. TEST 8 compile is running, Status: RUN +10 min. TEST 8 compile is running, Status: RUN +11 min. TEST 8 compile is running, Status: RUN +12 min. TEST 8 compile is running, Status: RUN +13 min. TEST 8 compile is running, Status: RUN +14 min. TEST 8 compile is running, Status: RUN +15 min. TEST 8 compile is running, Status: RUN +16 min. TEST 8 compile is running, Status: RUN +17 min. TEST 8 compile is running, Status: RUN +18 min. TEST 8 compile is running, Status: RUN +19 min. TEST 8 compile is running, Status: RUN +20 min. TEST 8 compile is running, Status: RUN +21 min. TEST 8 compile is running, Status: RUN +22 min. TEST 8 compile is running, Status: RUN +23 min. TEST 8 compile is running, Status: RUN +24 min. TEST 8 compile is running, Status: RUN +25 min. TEST 8 compile is running, Status: RUN +26 min. TEST 8 compile is finished, Status: DONE ++ elapsed=1568 ++ echo 'Elapsed time 1568 seconds. Compile 8' +Elapsed time 1568 seconds. Compile 8 + SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT= -+ BUILD_NAME=fv3_1 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_1 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling into fv3_1.exe on wcoss_dell_p3' -Compiling into fv3_1.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ mkdir -p build_fv3_1 -+ CCPP_CMAKE_FLAGS= -+ [[ '' == *\D\E\B\U\G\=\Y* ]] -+ [[ '' == *\R\E\P\R\O\=\Y* ]] -+ [[ '' == *\3\2\B\I\T\=\Y* ]] -+ [[ '' == *\O\P\E\N\M\P\=\N* ]] -+ [[ '' == *\C\C\P\P\=\Y* ]] -+ [[ '' == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ '' == *\W\W\3\=\Y* ]] -++ trim '' -++ local var= -++ var= -++ var= -++ echo -n '' -+ CCPP_CMAKE_FLAGS= -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82147 -++ eval 'setup__test_function__82147() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82147 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82147 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_1 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_1 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xHOST' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 63%] Linking Fortran static library FMS/libfms.a -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Built target fms -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_1.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_1 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_1 -+ elapsed=557 -+ echo 'Elapsed time 557 seconds. Compiling finished' -Elapsed time 557 seconds. Compiling finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf' -+ BUILD_NAME=fv3_20 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_20 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_20.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf into fv3_20.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_20 -+ mkdir -p build_fv3_20 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf --builddir=tests/build_fv3_20/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmgshoc.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_csawmg.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_satmedmf.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_20/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_20/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_20/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 15 auto-generated caps to tests/build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_20/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_20/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90' -+ source build_fv3_20/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__16614 -++ eval 'setup__test_function__16614() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__16614 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__16614 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_20 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20/FV3/ccpp/physics/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_20 -+ make -j 4 -Scanning dependencies of target ccpp -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Scanning dependencies of target ccppphys -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 5%] Linking Fortran static library libfv3cpl.a -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 6%] Built target fv3cpl -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_stochastics_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_stochastics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_physics_cap.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_physics_cap.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_radiation_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_time_vary_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_radiation_cap.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_time_vary_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_radiation_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_time_vary_cap.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmg_cap.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_csawmgshoc_cap.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_satmedmf_cap.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 64%] Linking Fortran static library FMS/libfms.a -[ 64%] Built target fms -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 69%] Linking Fortran static library libccppphys.a -[ 69%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 74%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libipd.a -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ipd -[ 74%] Built target ccppdriver -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 80%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_20.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_20 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_20 -+ elapsed=654 -+ echo 'Elapsed time 654 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished' -Elapsed time 654 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y' -+ BUILD_NAME=fv3_21 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_21 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y into fv3_21.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y into fv3_21.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_21 -+ mkdir -p build_fv3_21 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson --builddir=tests/build_fv3_21/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_CPT_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15_thompson.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_21/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_21/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_21/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 22 auto-generated caps to tests/build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_21/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_21/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -+ source build_fv3_21/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__80978 -++ eval 'setup__test_function__80978() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__80978 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__80978 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_21 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_CPT_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_21 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target ccpp -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 2%] Linking Fortran static library libccpp.a -[ 2%] Built target ccpp -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Built target fv3cpl -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Scanning dependencies of target ccppphys -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_fast_physics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_physics_cap.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_radiation_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_physics_cap.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_time_vary_cap.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_CPT_v0_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 61%] Linking Fortran static library FMS/libfms.a -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 61%] Built target fms -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 68%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 69%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 70%] Linking Fortran static library libccppphys.a -[ 70%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 74%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 74%] Linking Fortran static library libgfsphysics.a -[ 74%] Built target gfsphysics -Scanning dependencies of target ccppdriver -[ 74%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Scanning dependencies of target ipd -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 75%] Linking Fortran static library libccppdriver.a -[ 75%] Built target ccppdriver -[ 75%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 83%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 84%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Linking Fortran static library libio.a -[ 85%] Built target io -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[ 99%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_21.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_21 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_21 -+ elapsed=659 -+ echo 'Elapsed time 659 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y finished' -Elapsed time 659 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' -+ BUILD_NAME=fv3_22 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_22 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y into fv3_22.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y into fv3_22.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_22 -+ mkdir -p build_fv3_22 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\D\E\B\U\G\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GSD_v0,FV3_GFS_v15_thompson --builddir=tests/build_fv3_22/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GSD_v0.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v15_thompson.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_22/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_mass -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_22/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_22/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 10 auto-generated caps to tests/build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_22/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_22/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90' -+ source build_fv3_22/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y == *\W\W\3\=\Y* ]] -++ trim ' -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82965 -++ eval 'setup__test_function__82965() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82965 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82965 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_22 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DDEBUG=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is ENABLED -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GSD_v0_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22/FV3/ccpp/physics/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_22 -+ make -j 4 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Linking Fortran static library libfv3cpl.a -Scanning dependencies of target fms -[ 1%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -Scanning dependencies of target ccppphys -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -fpp: warning: keyword redefined: STATIC -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -mpp_comm_mpi.inc(1386): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1387): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1390): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1391): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1392): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1395): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1396): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1397): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1400): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1401): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1402): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1405): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1406): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1407): #warning: macro redefined: MPI_TYPE_ -mpp_comm_mpi.inc(1410): #warning: macro redefined: MPP_TYPE_CREATE_ -mpp_comm_mpi.inc(1411): #warning: macro redefined: MPP_TYPE_ -mpp_comm_mpi.inc(1412): #warning: macro redefined: MPI_TYPE_ -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -fpp: warning: keyword redefined: STATIC -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -fpp: warning: keyword redefined: STATIC -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -fpp: warning: keyword redefined: STATIC -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -fpp: warning: keyword redefined: STATIC -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_time_vary_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_time_vary_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v15_thompson_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GSD_v0_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 35%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -fpp: warning: keyword redefined: STATIC -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -fpp: warning: keyword redefined: STATIC -fpp: warning: keyword redefined: STATIC -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -fpp: warning: keyword redefined: STATIC -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -fpp: warning: keyword redefined: STATIC -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 41%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -fpp: warning: keyword redefined: STATIC -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 49%] Linking Fortran static library libccppphys.a -[ 49%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -fpp: warning: keyword redefined: STATIC -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 61%] Linking Fortran static library libgfsphysics.a -[ 61%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 61%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 61%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 62%] Linking Fortran static library libccppdriver.a -[ 62%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 62%] Built target ccppdriver -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 64%] Linking Fortran static library libipd.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 65%] Built target ipd -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 68%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 69%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 70%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 72%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 72%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 73%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 74%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 74%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 74%] Linking Fortran static library FMS/libfms.a -[ 74%] Built target fms -Scanning dependencies of target io -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 79%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 87%] Linking Fortran static library libfv3core.a -[ 87%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -fpp: warning: keyword redefined: STATIC -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_22.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_22 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_22 -+ elapsed=201 -+ echo 'Elapsed time 201 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y finished' -Elapsed time 201 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg' -+ BUILD_NAME=fv3_23 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_23 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg into fv3_23.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg into fv3_23.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_23 -+ mkdir -p build_fv3_23 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_v16_csawmg -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_v16_csawmg --builddir=tests/build_fv3_23/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_v16_csawmg.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_23/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_aware_parameter_deep_convection -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_diffusivity_coefficient_factor -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_background_maximum -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable countergradient_mixing_term_for_temperature -INFO: filtering out variable countergradient_mixing_term_for_water_vapor -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_conversion_parameter_deep_convection -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable downdraft_fraction_reaching_surface_over_land_deep_convection -INFO: filtering out variable downdraft_fraction_reaching_surface_over_ocean_deep_convection -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_rate_coefficient_deep_convection -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_ozone_physics -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable momentum_transport_reduction_factor_pgf_deep_convection -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_conversion_parameter_deep_convection -INFO: filtering out variable rain_evaporation_coefficient_deep_convection -INFO: filtering out variable rain_evaporation_coefficient_over_land_deep_convection -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_23/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_23/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_23/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_23/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90' -+ source build_fv3_23/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__110998 -++ eval 'setup__test_function__110998() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__110998 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__110998 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_23 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23/FV3/ccpp/physics/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_23 -+ make -j 4 -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 1%] Built target ccpp -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 2%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 4%] Built target fv3cpl -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_stochastics_cap.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_radiation_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_time_vary_cap.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_v16_csawmg_cap.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 60%] Linking Fortran static library FMS/libfms.a -[ 60%] Built target fms -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 68%] Linking Fortran static library libccppphys.a -[ 68%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Linking Fortran static library libio.a -[ 86%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_23.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_23 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_23 -+ elapsed=626 -+ echo 'Elapsed time 626 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg finished' -Elapsed time 626 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp' -+ BUILD_NAME=fv3_24 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_24 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_24.exe on wcoss_dell_p3' -Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp into fv3_24.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_24 -+ mkdir -p build_fv3_24 -+ CCPP_CMAKE_FLAGS= -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\O\P\E\N\M\P\=\N* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\D\E\B\U\G\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release' -+ [[ wcoss_dell_p3 == \j\e\t\.\i\n\t\e\l ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON' -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp --builddir=tests/build_fv3_24/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp_noahmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_24/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable air_temperature_at_previous_time_step -INFO: filtering out variable air_temperature_two_time_steps_back -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_conversion_threshold -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_for_evaporation_of_rainfall -INFO: filtering out variable coefficient_from_cloud_ice_to_snow -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_convective_transport_tracer -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_air_pressure_at_previous_time_step -INFO: filtering out variable surface_air_pressure_two_time_steps_back -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_rain_water_mixing_ratio_due_to_microphysics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_previous_time_step -INFO: filtering out variable water_vapor_specific_humidity_two_time_steps_back -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_24/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_24/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 12 auto-generated caps to tests/build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_24/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_24/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90' -+ source build_fv3_24/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp == *\W\W\3\=\Y* ]] -++ trim ' -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__129675 -++ eval 'setup__test_function__129675() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__129675 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__129675 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_24 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_24 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 0%] Linking Fortran static library libfv3cpl.a -[ 0%] Built target fv3cpl -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 0%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -Scanning dependencies of target ccpp -[ 3%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 3%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 4%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 4%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 4%] Linking Fortran static library libccpp.a -[ 4%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 8%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_fast_physics_cap.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_stochastics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_physics_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_radiation_cap.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_time_vary_cap.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_noahmp_cap.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 57%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 58%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 59%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 60%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 61%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 63%] Linking Fortran static library FMS/libfms.a -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Built target fms -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_24.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_24 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_24 -+ elapsed=618 -+ echo 'Elapsed time 618 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished' -Elapsed time 618 seconds. Compiling CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT=WW3=Y -+ BUILD_NAME=fv3_2 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_2 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling WW3=Y into fv3_2.exe on wcoss_dell_p3' -Compiling WW3=Y into fv3_2.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ mkdir -p build_fv3_2 -+ CCPP_CMAKE_FLAGS= -+ [[ WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ WW3=Y == *\C\C\P\P\=\Y* ]] -+ [[ WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DWW3=Y' -++ trim ' -DWW3=Y' -++ local 'var= -DWW3=Y' -++ var=-DWW3=Y -++ var=-DWW3=Y -++ echo -n -DWW3=Y -+ CCPP_CMAKE_FLAGS=-DWW3=Y -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82148 -++ eval 'setup__test_function__82148() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82148 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82148 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_2 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DWW3=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=wcoss_dell_p3 ww3_nems - in: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_2 -+ make -j 4 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Built target fv3cpl -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xHOST' with '-xCORE-AVX-I' -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 21%] Built target ww3_nems -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 47%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Linking Fortran static library FMS/libfms.a -[ 63%] Built target fms -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_2.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_2 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_2 -+ elapsed=561 -+ echo 'Elapsed time 561 seconds. Compiling WW3=Y finished' -Elapsed time 561 seconds. Compiling WW3=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT=32BIT=Y -+ BUILD_NAME=fv3_3 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_3 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling 32BIT=Y into fv3_3.exe on wcoss_dell_p3' -Compiling 32BIT=Y into fv3_3.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ mkdir -p build_fv3_3 -+ CCPP_CMAKE_FLAGS= -+ [[ 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ [[ 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -D32BIT=Y' -+ [[ 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -D32BIT=Y' -++ local 'var= -D32BIT=Y' -++ var=-D32BIT=Y -++ var=-D32BIT=Y -++ echo -n -D32BIT=Y -+ CCPP_CMAKE_FLAGS=-D32BIT=Y -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82151 -++ eval 'setup__test_function__82151() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82151 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82151 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_3 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -D32BIT=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is disabled -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_3 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -ifort: command line warning #10121: overriding '-xHOST' with '-xCORE-AVX-I' -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 18%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 31%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 32%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 64%] Linking Fortran static library libgfsphysics.a -[ 64%] Built target gfsphysics -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -Scanning dependencies of target ipd -[ 64%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 64%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 64%] Linking Fortran static library libipd.a -[ 64%] Built target ipd -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Linking Fortran static library libio.a -[ 80%] Built target io -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_3.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_3 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_3 -+ elapsed=559 -+ echo 'Elapsed time 559 seconds. Compiling 32BIT=Y finished' -Elapsed time 559 seconds. Compiling 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT=REPRO=Y -+ BUILD_NAME=fv3_4 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_4 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y into fv3_4.exe on wcoss_dell_p3' -Compiling REPRO=Y into fv3_4.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_4 -+ mkdir -p build_fv3_4 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y' -++ local 'var= -DREPRO=Y' -++ var=-DREPRO=Y -++ var=-DREPRO=Y -++ echo -n -DREPRO=Y -+ CCPP_CMAKE_FLAGS=-DREPRO=Y -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82149 -++ eval 'setup__test_function__82149() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82149 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82149 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_4 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_4 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Scanning dependencies of target fms -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Linking Fortran static library libfv3cpl.a -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Built target fv3cpl -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 16%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 48%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 55%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Linking Fortran static library FMS/libfms.a -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Built target fms -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -Scanning dependencies of target fv3core -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_4.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_4 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_4 -+ elapsed=519 -+ echo 'Elapsed time 519 seconds. Compiling REPRO=Y finished' -Elapsed time 519 seconds. Compiling REPRO=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y WW3=Y' -+ BUILD_NAME=fv3_5 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_5 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y WW3=Y into fv3_5.exe on wcoss_dell_p3' -Compiling REPRO=Y WW3=Y into fv3_5.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_5 -+ mkdir -p build_fv3_5 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y WW3=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DWW3=Y' -++ trim ' -DREPRO=Y -DWW3=Y' -++ local 'var= -DREPRO=Y -DWW3=Y' -++ var='-DREPRO=Y -DWW3=Y' -++ var='-DREPRO=Y -DWW3=Y' -++ echo -n '-DREPRO=Y -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DWW3=Y' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__196595 -++ eval 'setup__test_function__196595() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__196595 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__196595 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_5 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DWW3=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=wcoss_dell_p3 ww3_nems - in: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_5 -+ make -j 4 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -Scanning dependencies of target fms -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Scanning dependencies of target gfsphysics -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 2%] Built target fv3cpl -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 15%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 20%] Built target ww3_nems -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 43%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 44%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 45%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 51%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 55%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 57%] Linking Fortran static library FMS/libfms.a -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 58%] Built target fms -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 67%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 69%] Linking Fortran static library libgfsphysics.a -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -Scanning dependencies of target fv3core -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_5.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_5 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_5 -+ elapsed=538 -+ echo 'Elapsed time 538 seconds. Compiling REPRO=Y WW3=Y finished' -Elapsed time 538 seconds. Compiling REPRO=Y WW3=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y 32BIT=Y' -+ BUILD_NAME=fv3_6 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_6 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y 32BIT=Y into fv3_6.exe on wcoss_dell_p3' -Compiling REPRO=Y 32BIT=Y into fv3_6.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_6 -+ mkdir -p build_fv3_6 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y' -++ local 'var= -DREPRO=Y -D32BIT=Y' -++ var='-DREPRO=Y -D32BIT=Y' -++ var='-DREPRO=Y -D32BIT=Y' -++ echo -n '-DREPRO=Y -D32BIT=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82150 -++ eval 'setup__test_function__82150() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82150 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82150 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_6 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_6 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target gfsphysics -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/co2hc.f.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_composition.f.o -[ 2%] Linking Fortran static library libfv3cpl.a -[ 2%] Built target fv3cpl -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 3%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/efield.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wam_f107_kp_mod.f90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iounitdef.f.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 5%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_wrf_utl.f90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_radar.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 7%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progtm_module.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerclm_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/surface_perturbation.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmp_glacier.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_sf_noahmplsm.f90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccn_def.f.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg_utils.F90.o -[ 10%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfdl_cloud_microphys.F90.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tracer_const_h.f.o -[ 11%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/funcphys.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_initialize.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_astronomy.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_surface.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_parameters.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aer_cloud.F.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_thompson_gfs.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_mp_wsm6_fv3.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs_fv3.f90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_cice.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diff.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_module.F90.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rascnvv2.f.o -[ 12%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_aerosols.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_bfmicrophysics.f.o -[ 13%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_gases.f.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_datatb.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_datatb.f.o -[ 15%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 16%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 17%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_water_prop.f90.o -[ 17%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/wv_saturation.F.o -[ 18%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cs_conv.F90.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_diag.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_drv.f.o -[ 19%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_ocean.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_sice.f.o -[ 20%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 21%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radiation_clouds.f.o -[ 22%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_main.f.o -[ 23%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_main.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/module_nst_model.f90.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldmacro.F.o -[ 24%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cldwat2m_micro.F.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg2_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/micro_mg3_0.F90.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_nst.f.o -[ 25%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_radiation_driver.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 26%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_physics_driver.F90.o -[ 27%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 30%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 35%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 36%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gfs_phy_tracer_config.F.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2oc.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_solar_heating.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_tracer.f.o -[ 37%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ideaca.f.o -[ 38%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfcsub.F.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ugwp_driver_v0.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cnvc90.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/dcyc2.pre.rad.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/get_prs.f.o -[ 39%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gocart_tracer_config_stub.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscond.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gscondp.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdc.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gwdps.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_orowam2017.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ohdc.f.o -[ 40%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ophys.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_co2.f.o -[ 41%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_dissipation.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_h2o.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_ion.f.o -[ 42%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_o2_o3.f.o -[ 43%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/idea_phys.f.o -[ 44%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/lrgsclr.f.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 45%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbl.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpblt.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfpbltq.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscu.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mfscuq.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf.f.o -[ 46%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninedmf_hafs.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninp1.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq.f.o -[ 47%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninq1.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/moninshoc.f.o -[ 48%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadb.f.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 49%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn.f.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstadbtn2.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mstcnv.f.o -[ 50%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys.f.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozphys_2015.f.o -[ 52%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpd_shoc.f.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/precpdp.f.o -[ 53%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/progt2.f.o -[ 54%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rad_initialize.f.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/rayleigh_damp_mesopause.f.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfaerosols.f.o -[ 56%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfdeepcnv.f.o -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/samfshalcnv.f.o -[ 57%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnv.f.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 58%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sascnvn.f.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdif.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/satmedmfvdifq.f.o -[ 59%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/sflx.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcnv.f.o -[ 60%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_1lyr.f.o -[ 61%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_fixdp.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/shalcv_opr.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/tridi2t3.f.o -[ 61%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/calpreciptype.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcm_shoc.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/h2ointerp.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/ozinterp.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/iccninterp.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/aerinterp.f90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/num_parthds.F.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/gcycle.F90.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_utils.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_triggers.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_ugwp_solvers.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/cires_vert_wmsdis.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/m_micro_driver.F90.o -[ 64%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 68%] Linking Fortran static library libgfsphysics.a -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Built target gfsphysics -Scanning dependencies of target ipd -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 69%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 69%] Linking Fortran static library libipd.a -[ 69%] Built target ipd -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -Scanning dependencies of target io -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 69%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 69%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 70%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 70%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 71%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 71%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 72%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 73%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_cmp.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 78%] Linking Fortran static library libio.a -[ 78%] Built target io -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 85%] Linking Fortran static library libfv3core.a -[ 85%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 85%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Linking Fortran static library libstochastic_physics.a -[ 95%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_6.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_6 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_6 -+ elapsed=519 -+ echo 'Elapsed time 519 seconds. Compiling REPRO=Y 32BIT=Y finished' -Elapsed time 519 seconds. Compiling REPRO=Y 32BIT=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017' -+ BUILD_NAME=fv3_7 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_7 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_7.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 into fv3_7.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_7 -+ mkdir -p build_fv3_7 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017 --builddir=tests/build_fv3_7/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_7/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_energy_content_at_Lagrangian_surface -INFO: filtering out variable atmosphere_energy_content_in_column -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable cappa_moist_gas_constant_at_Lagrangian_surface -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_area_for_fast_physics -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_at_Lagrangian_surface -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_fraction_updated_by_physics -INFO: filtering out variable cloud_graupel_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_ice_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_rain_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_snow_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable effective_radius_of_stratiform_cloud_graupel_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_ice_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_rain_particle_in_um -INFO: filtering out variable effective_radius_of_stratiform_cloud_snow_particle_in_um -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable ending_x_direction_index -INFO: filtering out variable ending_x_direction_index_domain -INFO: filtering out variable ending_y_direction_index -INFO: filtering out variable ending_y_direction_index_domain -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_cloud_effective_radii -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_fast_microphysics_energy_conservation -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_hydrostatic_heating_from_physics -INFO: filtering out variable flag_for_hydrostatic_solver -INFO: filtering out variable flag_for_hydrostatic_solver_for_fast_physics -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_inline_cloud_fraction_calculation -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_saturation_adjustment_for_microphysics_in_dynamics -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable flag_for_the_last_step_of_k_split_remapping -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gas_constants_for_multi_gases_physics -INFO: filtering out variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_mixing_ratio_updated_by_physics -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable ice_water_mixing_ratio_updated_by_physics -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kappa_dry_for_fast_physics -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable log_pressure_at_Lagrangian_surface -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable mpi_rank_for_fast_physics -INFO: filtering out variable mpi_root_for_fast_physics -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_gases_for_multi_gases_physics -INFO: filtering out variable number_of_ghost_zones -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable number_of_water_species -INFO: filtering out variable omp_threads_for_fast_physics -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable pressure_thickness_at_Lagrangian_surface -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable rain_water_mixing_ratio_updated_by_physics -INFO: filtering out variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable snow_water_mixing_ratio_updated_by_physics -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_capacities_for_multi_gases_physics -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable starting_x_direction_index -INFO: filtering out variable starting_x_direction_index_domain -INFO: filtering out variable starting_y_direction_index -INFO: filtering out variable starting_y_direction_index_domain -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_geopotential_at_Lagrangian_surface -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_air_temperature_at_Lagrangian_surface -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable thickness_at_Lagrangian_surface -INFO: filtering out variable time_step_for_remapping_for_fast_physics -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable top_layer_index_for_fast_physics -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_for_fast_physics -INFO: filtering out variable vertical_dimension_for_thickness_at_Lagrangian_surface -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable virtual_temperature_at_Lagrangian_surface -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable water_vapor_specific_humidity_at_Lagrangian_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_7/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_7/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_7/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_7/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_7/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 5 auto-generated caps to tests/build_fv3_7/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_7/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_7/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_7/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90' -+ source build_fv3_7/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__82152 -++ eval 'setup__test_function__82152() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__82152 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__82152 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_7 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90 -Force 64 bits in CCPP_layer --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_7 -+ make -j 4 -Scanning dependencies of target fv3cpl -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target ccpp -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Linking Fortran static library libfv3cpl.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 4%] Built target fv3cpl -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Linking Fortran static library libccpp.a -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -[ 4%] Built target ccpp -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 10%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 14%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 46%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 49%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 50%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 51%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 62%] Linking Fortran static library FMS/libfms.a -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 62%] Built target fms -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 67%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 68%] Linking Fortran static library libccppphys.a -[ 68%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 72%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 73%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 73%] Linking Fortran static library libgfsphysics.a -[ 73%] Built target gfsphysics -Scanning dependencies of target ipd -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -Scanning dependencies of target ccppdriver -[ 73%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 73%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 74%] Linking Fortran static library libccppdriver.a -[ 74%] Built target ccppdriver -[ 75%] Linking Fortran static library libipd.a -[ 75%] Built target ipd -Scanning dependencies of target io -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -[ 77%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 81%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 82%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 85%] Linking Fortran static library libio.a -[ 85%] Built target io -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 86%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 87%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 88%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 88%] Linking Fortran static library libfv3core.a -[ 88%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 94%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 95%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 96%] Linking Fortran static library libstochastic_physics.a -[ 96%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 96%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 97%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 97%] Linking Fortran static library libfv3cap.a -[ 97%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 99%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_7.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_7 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_7 -+ elapsed=599 -+ echo 'Elapsed time 599 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished' -Elapsed time 599 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y' -+ BUILD_NAME=fv3_8 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_8 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_8.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y into fv3_8.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_8 -+ mkdir -p build_fv3_8 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_gfdlmp --builddir=tests/build_fv3_8/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_gfdlmp.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_8/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_8/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_8/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_8/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_8/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90' -+ source build_fv3_8/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y == *\W\W\3\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ trim ' -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ local 'var= -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ var='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -++ echo -n '-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__121874 -++ eval 'setup__test_function__121874() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__121874 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__121874 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_8 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=OFF -DSTATIC=ON -DMULTI_GASES=OFF -DWW3=Y --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is disabled -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8/FV3/ccpp/physics/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Build WW3: - run: /usr/bin/gmake WW3_PARCOMPN=4 WW3_COMP=wcoss_dell_p3 ww3_nems - in: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/WW3/model/esmf - --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_8 -+ make -j 4 -Scanning dependencies of target ww3_nems -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -Scanning dependencies of target fms -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -[ 1%] Built target fv3cpl -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Scanning dependencies of target ccppphys -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 1%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 2%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 5%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 7%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Built target ww3_nems -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 29%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_stochastics_cap.F90.o -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 33%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_physics_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 36%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_radiation_cap.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_time_vary_cap.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 40%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_gfdlmp_cap.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 47%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 48%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 49%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 50%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 51%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 52%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 53%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 54%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 56%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 59%] Linking Fortran static library FMS/libfms.a -[ 59%] Built target fms -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 63%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 64%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 65%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 66%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 66%] Linking Fortran static library libccppphys.a -[ 66%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 66%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 68%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ipd -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_8.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_8 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_8 -+ elapsed=621 -+ echo 'Elapsed time 621 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished' -Elapsed time 621 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y finished -+ SECONDS=0 -+++ readlink -f /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -++ dirname /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/compile_cmake.sh -+ readonly MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ MYDIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ readonly ARGC=4 -+ ARGC=4 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ [[ 4 -eq 0 ]] -+ [[ 4 -lt 2 ]] -+ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ MACHINE_ID=wcoss_dell_p3 -+ MAKE_OPT='REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y' -+ BUILD_NAME=fv3_9 -+ clean_before=YES -+ clean_after=YES -+ BUILD_DIR=build_fv3_9 -+ [[ wcoss_dell_p3 == cheyenne.* ]] -+ [[ wcoss_dell_p3 == wcoss_dell_p3 ]] -+ MAKE_THREADS=4 -+ MAKE_THREADS=4 -+ hostname -v72a2 -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests -+ echo 'Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_9.exe on wcoss_dell_p3' -Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y into fv3_9.exe on wcoss_dell_p3 -+ '[' YES = YES ']' -+ rm -rf build_fv3_9 -+ mkdir -p build_fv3_9 -+ CCPP_CMAKE_FLAGS= -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\O\P\E\N\M\P\=\N* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\C\C\P\P\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\D\E\B\U\G\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\R\E\P\R\O\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\3\2\B\I\T\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\S\T\A\T\I\C\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON' -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\M\U\L\T\I\_\G\A\S\E\S\=\Y* ]] -+ CCPP_CMAKE_FLAGS=' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -++ sed 's/.* SUITES=//' -++ sed 's/ .*//' -+ SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -+ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -+ ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=FV3_GFS_2017,FV3_GFS_2017_stretched --builddir=tests/build_fv3_9/FV3 -INFO: Logging level set to INFO -INFO: Found TYPEDEFS_NEW_METADATA dictionary in config, assume at least some data is in new metadata formet -INFO: Parsing suite definition files ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017.xml ... -INFO: Parsing suite definition file FV3/ccpp/suites/suite_FV3_GFS_2017_stretched.xml ... -INFO: Parsing metadata tables for variables provided by host model ... -INFO: Parsed variable definition tables in module machine -INFO: Parsed variable definition tables in module module_radsw_parameters -INFO: Parsed variable definition tables in module module_radlw_parameters -INFO: Parsed variable definition tables in module CCPP_typedefs -INFO: Parsed variable definition tables in module GFS_typedefs -INFO: Parsed variable definition tables in module CCPP_data -INFO: Parsed variable definition tables in module ccpp_types -INFO: Convert local names from new metadata format into old metadata format ... -INFO: Converting local name sfcflw of variable lw_fluxes_sfc from new to old metadata -INFO: Converting local name nslwr of variable number_of_timesteps_between_longwave_radiation_calls from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d) of variable kinematic_buoyancy_flux_from_shoc from new to old metadata -INFO: Converting local name nkbfshoc of variable index_of_kinematic_buoyancy_flux_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name dvisbm_cpl of variable cumulative_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cnvw of variable convective_cloud_water_mixing_ratio from new to old metadata -INFO: Converting local name ltaerosol of variable flag_for_aerosol_physics from new to old metadata -INFO: Converting local name rainmcadj of variable lwe_thickness_of_moist_convective_adj_precipitation_amount from new to old metadata -INFO: Converting local name loop_cnt of variable ccpp_loop_counter from new to old metadata -INFO: Converting local name ncpi of variable local_ice_number_concentration from new to old metadata -INFO: Converting local name pt of variable virtual_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nirbmui of variable surface_upwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name vconvtend of variable tendency_of_y_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name uustar_ice of variable surface_friction_velocity_over_ice from new to old metadata -INFO: Converting local name phy_myj_uz0 of variable u_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name evap_land of variable kinematic_surface_upward_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name ocean of variable flag_nonzero_ocean_surface_fraction from new to old metadata -INFO: Converting local name ep1d_ocean of variable surface_upward_potential_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name qconvtend of variable tendency_of_water_vapor_specific_humidity_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name islmsk_cice of variable sea_land_ice_mask_cice from new to old metadata -INFO: Converting local name cmm_ice of variable surface_drag_wind_speed_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name visdfdi of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cnv_ndrop of variable number_concentration_of_cloud_liquid_water_particles_for_detrainment from new to old metadata -INFO: Converting local name sh2o of variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name tau_tofd of variable time_integral_of_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name dnirbmi_cpl of variable instantaneous_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name refdmax263k of variable maximum_reflectivity_at_minus10c_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name ulwsfci of variable surface_upwelling_longwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_condensate) of variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntcw of variable index_for_liquid_cloud_condensate from new to old metadata -INFO: Converting local name lheatstrg of variable flag_for_canopy_heat_storage from new to old metadata -INFO: Converting local name cplwav2atm of variable flag_for_wave_coupling_to_atm from new to old metadata -INFO: Converting local name tsfc_land of variable surface_skin_temperature_over_land_interstitial from new to old metadata -INFO: Converting local name save_v of variable y_wind_save from new to old metadata -INFO: Converting local name xkzm_m of variable atmosphere_momentum_diffusivity_background from new to old metadata -INFO: Converting local name gabsbdlw_land of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_land from new to old metadata -INFO: Converting local name tprcp_ice of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ice from new to old metadata -INFO: Converting local name stblcpxy of variable slow_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name cdq_land of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name du3dt(:,:,2) of variable cumulative_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_berg_eff_factor of variable mg_bergeron_efficiency_factor from new to old metadata -INFO: Converting local name clouds(:,:,3) of variable mean_effective_radius_for_liquid_cloud from new to old metadata -INFO: Converting local name aer_nm of variable aerosol_number_concentration_from_gocart_aerosol_climatology from new to old metadata -INFO: Converting local name xzts of variable sensitivity_of_dtl_thickness_to_surface_temperature from new to old metadata -INFO: Converting local name lake of variable flag_nonzero_lake_surface_fraction from new to old metadata -INFO: Converting local name kb of variable vertical_index_difference_between_layer_and_lower_bound from new to old metadata -INFO: Converting local name ipt of variable index_for_diagnostic_printout from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name ntia of variable index_for_ice_friendly_aerosols from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_rain_water) of variable tendency_of_rain_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntrw of variable index_for_rain_water from new to old metadata -INFO: Converting local name con_epsm1 of variable ratio_of_dry_air_to_water_vapor_gas_constants_minus_one from new to old metadata -INFO: Converting local name last_step of variable flag_for_the_last_step_of_k_split_remapping from new to old metadata -INFO: Converting local name huge of variable netcdf_float_fillvalue from new to old metadata -INFO: Converting local name save_q(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_save from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration from new to old metadata -INFO: Converting local name ntlnc of variable index_for_liquid_cloud_number_concentration from new to old metadata -INFO: Converting local name dv3dt(:,:,1) of variable cumulative_change_in_y_wind_due_to_PBL from new to old metadata -INFO: Converting local name imp_physics_mg of variable flag_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name cldtaulw of variable cloud_optical_depth_layers_at_10mu_band from new to old metadata -INFO: Converting local name wet of variable flag_nonzero_wet_surface_fraction from new to old metadata -INFO: Converting local name qsnowxy of variable snow_precipitation_rate_at_surface from new to old metadata -INFO: Converting local name iopt_frz of variable flag_for_supercooled_liquid_water_option from new to old metadata -INFO: Converting local name dsnow_cpl of variable tendency_of_lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name cldsa of variable cloud_area_fraction_for_radiation from new to old metadata -INFO: Converting local name totsnwb of variable accumulated_lwe_thickness_of_snow_amount_in_bucket from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_water) of variable rain_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name totsnw of variable accumulated_lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name xkzm_s of variable diffusivity_background_sigma_level from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_friendly_aerosols) of variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name ntwa of variable index_for_water_friendly_aerosols from new to old metadata -INFO: Converting local name fswtr of variable fraction_of_cloud_top_water_scavenged from new to old metadata -INFO: Converting local name nvisbmi_cpl of variable instantaneous_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d) of variable atmosphere_heat_diffusivity_from_shoc from new to old metadata -INFO: Converting local name nahdshoc of variable index_of_atmosphere_heat_diffusivity_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name nthreads of variable omp_threads_for_fast_physics from new to old metadata -INFO: Converting local name icemp of variable lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name dqsfc_cpl of variable cumulative_surface_upward_latent_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name con_jcal of variable joules_per_calorie_constant from new to old metadata -INFO: Converting local name xmu of variable zenith_angle_temporal_adjustment_factor_for_shortwave_fluxes from new to old metadata -INFO: Converting local name con_fvirt of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one from new to old metadata -INFO: Converting local name evfactl_deep of variable rain_evaporation_coefficient_over_land_deep_convection from new to old metadata -INFO: Converting local name canliqxy of variable canopy_intercepted_liquid_water from new to old metadata -INFO: Converting local name phy_myj_qsfc of variable surface_specific_humidity_for_MYJ_schemes from new to old metadata -INFO: Converting local name rainncprv of variable lwe_thickness_of_explicit_rainfall_amount_from_previous_timestep from new to old metadata -INFO: Converting local name Tbd of variable GFS_tbd_type_instance from new to old metadata -INFO: Converting local name v1 of variable y_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name det_mf of variable cumulative_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name psurf of variable surface_air_pressure_diag from new to old metadata -INFO: Converting local name gasvmr(:,:,10) of variable volume_mixing_ratio_cfc113 from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_rain_effective_radius) of variable effective_radius_of_stratiform_cloud_rain_particle_in_um from new to old metadata -INFO: Converting local name nreffr of variable index_for_rain_effective_radius from new to old metadata -INFO: Converting local name del_gz of variable geopotential_difference_between_midlayers_divided_by_midlayer_virtual_temperature from new to old metadata -INFO: Converting local name imfdeepcnv_ntiedtke of variable flag_for_ntiedtke_deep_convection_scheme from new to old metadata -INFO: Converting local name h2o_coeff of variable number_of_coefficients_in_h2o_forcing_data from new to old metadata -INFO: Converting local name tgrs of variable air_temperature from new to old metadata -INFO: Converting local name xlon of variable longitude from new to old metadata -INFO: Converting local name c_d of variable coefficient_c_d from new to old metadata -INFO: Converting local name tlvl of variable air_temperature_at_interface_for_radiation from new to old metadata -INFO: Converting local name f_rimef of variable rime_factor from new to old metadata -INFO: Converting local name mg_do_ice_gmao of variable mg_flag_for_gmao_ice_formulation from new to old metadata -INFO: Converting local name snowca of variable cumulative_surface_snow_area_fraction_multiplied_by_timestep from new to old metadata -INFO: Converting local name hflx of variable kinematic_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name dt3dt(:,:,6) of variable cumulative_change_in_temperature_due_to_microphysics from new to old metadata -INFO: Converting local name nirdfui of variable surface_upwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name trans of variable transpiration_flux from new to old metadata -INFO: Converting local name ntchs of variable index_for_first_chemical_tracer from new to old metadata -INFO: Converting local name idxday of variable daytime_points from new to old metadata -INFO: Converting local name iceprv of variable lwe_thickness_of_ice_amount_from_previous_timestep from new to old metadata -INFO: Converting local name mg_alf of variable mg_tuning_factor_for_alphas from new to old metadata -INFO: Converting local name nupdraft of variable number_of_plumes from new to old metadata -INFO: Converting local name qr_r of variable cloud_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name sec of variable seconds_elapsed_since_model_initialization from new to old metadata -INFO: Converting local name epi of variable instantaneous_surface_potential_evaporation from new to old metadata -INFO: Converting local name gflx_land of variable upward_heat_flux_in_soil_over_land from new to old metadata -INFO: Converting local name du3dt_ngw of variable time_integral_of_change_in_x_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name bl_mynn_cloudpdf of variable cloudpdf from new to old metadata -INFO: Converting local name vtype of variable vegetation_type_classification_real from new to old metadata -INFO: Converting local name imfdeepcnv_gf of variable flag_for_gf_deep_convection_scheme from new to old metadata -INFO: Converting local name lssav of variable flag_diagnostics from new to old metadata -INFO: Converting local name sfalb of variable surface_diffused_shortwave_albedo from new to old metadata -INFO: Converting local name acvb of variable smallest_cloud_base_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name c_0 of variable coefficient_c_0 from new to old metadata -INFO: Converting local name mpirank of variable mpi_rank_for_fast_physics from new to old metadata -INFO: Converting local name ntrac of variable number_of_tracers from new to old metadata -INFO: Converting local name dvsfci of variable instantaneous_surface_y_momentum_flux_for_diag from new to old metadata -INFO: Converting local name GFS_Interstitial of variable GFS_interstitial_type_instance_all_threads from new to old metadata -INFO: Converting local name in_nm of variable in_number_concentration from new to old metadata -INFO: Converting local name blksz2(ccpp_block_number) of variable horizontal_dimension from new to old metadata -INFO: Converting local name blk_no of variable ccpp_block_number from new to old metadata -INFO: Converting local name min_lakeice of variable lake_ice_minimum from new to old metadata -INFO: Converting local name canicexy of variable canopy_intercepted_ice_mass from new to old metadata -INFO: Converting local name mg_precip_frac_method of variable mg_type_of_precip_fraction_method from new to old metadata -INFO: Converting local name lonr of variable number_of_equatorial_longitude_points from new to old metadata -INFO: Converting local name dt3dt(:,:,7) of variable cumulative_change_in_temperature_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name dtzm of variable mean_change_over_depth_in_sea_water_temperature from new to old metadata -INFO: Converting local name du3dt_mtb of variable time_integral_of_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name stress_land of variable surface_wind_stress_over_land from new to old metadata -INFO: Converting local name nspinup of variable number_of_iterations_to_spin_up_cellular_automata from new to old metadata -INFO: Converting local name zogw of variable height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name ntsw of variable index_for_snow_water from new to old metadata -INFO: Converting local name cov of variable t_prime_q_prime from new to old metadata -INFO: Converting local name sup of variable ice_supersaturation_threshold from new to old metadata -INFO: Converting local name dt3dt(:,:,3) of variable cumulative_change_in_temperature_due_to_PBL from new to old metadata -INFO: Converting local name mg_qcvar of variable mg_cloud_water_variance from new to old metadata -INFO: Converting local name ffmm_ice of variable Monin_Obukhov_similarity_function_for_momentum_over_ice from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name GFS_statein_type of variable GFS_statein_type from new to old metadata -INFO: Converting local name train of variable accumulated_change_of_air_temperature_due_to_FA_scheme from new to old metadata -INFO: Converting local name fscav of variable coefficients_for_aerosol_scavenging from new to old metadata -INFO: Converting local name prslk(:,1) of variable dimensionless_exner_function_at_lowest_model_layer from new to old metadata -INFO: Converting local name tf of variable frozen_cloud_threshold_temperature from new to old metadata -INFO: Converting local name communicator of variable mpi_comm from new to old metadata -INFO: Converting local name qs_r of variable cloud_snow_mixing_ratio from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind from new to old metadata -INFO: Converting local name bl_mynn_edmf_part of variable edmf_partition_flag from new to old metadata -INFO: Converting local name dq3dt(:,:,7) of variable cumulative_change_in_ozone_concentration_due_to_ozone_mixing_ratio from new to old metadata -INFO: Converting local name swhc of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_ngnst of variable mg_graupel_concentration_constant from new to old metadata -INFO: Converting local name GFS_grid_type of variable GFS_grid_type from new to old metadata -INFO: Converting local name js of variable starting_y_direction_index from new to old metadata -INFO: Converting local name out_dt of variable flag_for_tendency_of_air_temperature_at_Lagrangian_surface from new to old metadata -INFO: Converting local name delr of variable layer_pressure_thickness_for_radiation from new to old metadata -INFO: Converting local name ncgl of variable local_graupel_number_concentration from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_water) of variable snow_water_mixing_ratio from new to old metadata -INFO: Converting local name totgrp of variable accumulated_lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name cldtausw of variable cloud_optical_depth_layers_at_0p55mu_band from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ozone) of variable tendency_of_ozone_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name ntoz of variable index_for_ozone from new to old metadata -INFO: Converting local name evap of variable kinematic_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name oro of variable orography from new to old metadata -INFO: Converting local name topfsw of variable sw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name jmap of variable map_of_block_column_number_to_global_j_index from new to old metadata -INFO: Converting local name cdq of variable surface_drag_coefficient_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name psauras of variable coefficient_from_cloud_ice_to_snow_ras from new to old metadata -INFO: Converting local name soiltype of variable soil_type_classification from new to old metadata -INFO: Converting local name evap_ocean of variable kinematic_surface_upward_latent_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nblks of variable number_of_blocks from new to old metadata -INFO: Converting local name oceanfrac of variable sea_area_fraction from new to old metadata -INFO: Converting local name dxinv of variable inverse_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name dvsfc of variable cumulative_surface_y_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_stateout_type of variable GFS_stateout_type from new to old metadata -INFO: Converting local name qg of variable cloud_graupel_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name nmtvr of variable number_of_statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name nseed of variable cellular_automata_seed_frequency from new to old metadata -INFO: Converting local name nlives of variable cellular_automata_lifetime from new to old metadata -INFO: Converting local name vegf1d of variable perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name slc of variable volume_fraction_of_unfrozen_soil_moisture from new to old metadata -INFO: Converting local name hice of variable sea_ice_thickness from new to old metadata -INFO: Converting local name mbota of variable model_layer_number_at_cloud_base from new to old metadata -INFO: Converting local name ncnvw of variable index_for_convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name flqc of variable surface_exchange_coefficient_for_moisture from new to old metadata -INFO: Converting local name imfshalcnv_samf of variable flag_for_samf_shallow_convection_scheme from new to old metadata -INFO: Converting local name ntdiag of variable diagnostics_control_for_chemical_tracers from new to old metadata -INFO: Converting local name c1_shal of variable detrainment_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name con_g of variable gravitational_acceleration from new to old metadata -INFO: Converting local name je of variable ending_y_direction_index from new to old metadata -INFO: Converting local name hprime(:,1) of variable standard_deviation_of_subgrid_orography from new to old metadata -INFO: Converting local name lh of variable surface_latent_heat from new to old metadata -INFO: Converting local name v10max of variable maximum_v_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfcg of variable instantaneous_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name mg_ninst of variable mg_ice_concentration_constant from new to old metadata -INFO: Converting local name lwhd of variable tendency_of_air_temperature_due_to_longwave_heating_for_idea from new to old metadata -INFO: Converting local name ntkev of variable index_for_turbulent_kinetic_energy_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name fm10 of variable Monin_Obukhov_similarity_function_for_momentum_at_10m from new to old metadata -INFO: Converting local name phour of variable forecast_time_at_previous_timestep from new to old metadata -INFO: Converting local name phys_hydrostatic of variable flag_for_hydrostatic_heating_from_physics from new to old metadata -INFO: Converting local name nswsfci of variable surface_net_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_graupel_effective_radius) of variable effective_radius_of_stratiform_cloud_graupel_particle_in_um from new to old metadata -INFO: Converting local name ngeffr of variable index_for_graupel_effective_radius from new to old metadata -INFO: Converting local name kt of variable vertical_index_difference_between_layer_and_upper_bound from new to old metadata -INFO: Converting local name GFS_tbd_type of variable GFS_tbd_type from new to old metadata -INFO: Converting local name tsurf_ocean of variable surface_skin_temperature_after_iteration_over_ocean from new to old metadata -INFO: Converting local name gu0(:,1) of variable x_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name akap of variable kappa_dry_for_fast_physics from new to old metadata -INFO: Converting local name lsm of variable flag_for_land_surface_scheme from new to old metadata -INFO: Converting local name nscav of variable number_of_tracers_scavenged from new to old metadata -INFO: Converting local name ffmm of variable Monin_Obukhov_similarity_function_for_momentum from new to old metadata -INFO: Converting local name nnirbm_cpl of variable cumulative_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tau_mtb of variable instantaneous_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name snicexy of variable snow_layer_ice from new to old metadata -INFO: Converting local name flag_guess of variable flag_for_guess_run from new to old metadata -INFO: Converting local name dnirbm_cpl of variable cumulative_surface_downwelling_direct_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name chh_ocean of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name dtsfci_cpl of variable instantaneous_surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name flgmin of variable minimum_large_ice_fraction from new to old metadata -INFO: Converting local name t02max of variable maximum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tconvtend of variable tendency_of_air_temperature_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name zorl of variable surface_roughness_length from new to old metadata -INFO: Converting local name coslat of variable cosine_of_latitude from new to old metadata -INFO: Converting local name pertalb of variable magnitude_of_surface_albedo_perturbation from new to old metadata -INFO: Converting local name aecm of variable instantaneous_aerosol_column_mass_densities from new to old metadata -INFO: Converting local name con_rv of variable gas_constant_water_vapor from new to old metadata -INFO: Converting local name wminco of variable cloud_condensed_water_conversion_threshold from new to old metadata -INFO: Converting local name fastcpxy of variable fast_soil_pool_mass_content_of_carbon from new to old metadata -INFO: Converting local name kind_grid of variable kind_grid from new to old metadata -INFO: Converting local name stress of variable surface_wind_stress from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer from new to old metadata -INFO: Converting local name rhc of variable critical_relative_humidity from new to old metadata -INFO: Converting local name tsfco of variable sea_surface_temperature from new to old metadata -INFO: Converting local name tau_ngw of variable instantaneous_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tsfcl of variable surface_skin_temperature_over_land from new to old metadata -INFO: Converting local name clouds(:,:,7) of variable mean_effective_radius_for_rain_drop from new to old metadata -INFO: Converting local name con_cliq of variable specific_heat_of_liquid_water_at_constant_pressure from new to old metadata -INFO: Converting local name zmtb of variable height_of_mountain_blocking from new to old metadata -INFO: Converting local name ulwsfcin_cpl of variable surface_upwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name dlwsfc_cpl of variable cumulative_surface_downwelling_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcdlw of variable surface_downwelling_longwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name t1 of variable air_temperature_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name ntiw of variable index_for_ice_cloud_condensate from new to old metadata -INFO: Converting local name bl_mynn_mixlength of variable mixing_length_flag from new to old metadata -INFO: Converting local name faerlw(:,:,:,1) of variable aerosol_optical_depth_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name ozpl of variable ozone_forcing from new to old metadata -INFO: Converting local name dlength of variable characteristic_grid_length_scale from new to old metadata -INFO: Converting local name slag of variable equation_of_time from new to old metadata -INFO: Converting local name ntot2d of variable number_of_fields_in_phyf2d from new to old metadata -INFO: Converting local name iopt_run of variable flag_for_runoff_and_groundwater_option from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_number_concentration) of variable cloud_droplet_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name sneqvoxy of variable snow_mass_at_previous_time_step from new to old metadata -INFO: Converting local name con_rhw0 of variable sea_water_reference_density from new to old metadata -INFO: Converting local name mtopa of variable model_layer_number_at_cloud_top from new to old metadata -INFO: Converting local name dlqf of variable condensate_fraction_detrained_in_updraft_layers from new to old metadata -INFO: Converting local name levi of variable vertical_interface_dimension from new to old metadata -INFO: Converting local name do_shoc of variable flag_for_shoc from new to old metadata -INFO: Converting local name du3dt_tms of variable time_integral_of_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name snow_cpl of variable lwe_thickness_of_snow_amount_for_coupling from new to old metadata -INFO: Converting local name pkz of variable finite_volume_mean_edge_pressure_raised_to_the_power_of_kappa from new to old metadata -INFO: Converting local name nn of variable number_of_tracers_for_convective_transport from new to old metadata -INFO: Converting local name do_sat_adj of variable flag_for_saturation_adjustment_for_microphysics_in_dynamics from new to old metadata -INFO: Converting local name dx of variable cell_size from new to old metadata -INFO: Converting local name do_ugwp of variable do_ugwp from new to old metadata -INFO: Converting local name rain of variable lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name iopt_crs of variable flag_for_canopy_stomatal_resistance_option from new to old metadata -INFO: Converting local name qgrs(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer from new to old metadata -INFO: Converting local name ntqv of variable index_for_water_vapor from new to old metadata -INFO: Converting local name t02min of variable minimum_temperature_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name imp_physics_gfdl of variable flag_for_gfdl_microphysics_scheme from new to old metadata -INFO: Converting local name lprnt of variable flag_print from new to old metadata -INFO: Converting local name gabsbdlw_ice of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ice from new to old metadata -INFO: Converting local name imp_physics_thompson of variable flag_for_thompson_microphysics_scheme from new to old metadata -INFO: Converting local name ctei_rm of variable critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name tseal of variable surface_skin_temperature_for_nsst from new to old metadata -INFO: Converting local name dusfc_fd of variable integrated_x_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name dusfcin_cpl of variable surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name slope of variable surface_slope_classification_real from new to old metadata -INFO: Converting local name htrlw of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name mg_qcmin(2) of variable mg_minimum_ice_mixing_ratio from new to old metadata -INFO: Converting local name tice of variable sea_ice_temperature_interstitial from new to old metadata -INFO: Converting local name adjvisbmu of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dvgwd of variable time_integral_of_y_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name tau_ngw of variable time_integral_of_momentum_flux_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name errmsg of variable ccpp_error_message from new to old metadata -INFO: Converting local name flag_cice of variable flag_for_cice from new to old metadata -INFO: Converting local name Coupling of variable GFS_coupling_type_instance from new to old metadata -INFO: Converting local name cs_parm(3) of variable detrainment_and_precipitation_tunable_parameter_3_CS from new to old metadata -INFO: Converting local name snliqxy of variable snow_layer_liquid_water from new to old metadata -INFO: Converting local name mstrat of variable flag_for_moorthi_stratus from new to old metadata -INFO: Converting local name imfdeepcnv_sas of variable flag_for_sas_deep_convection_scheme from new to old metadata -INFO: Converting local name weasd_ice of variable water_equivalent_accumulated_snow_depth_over_ice from new to old metadata -INFO: Converting local name bl_mynn_edmf_mom of variable edmf_momentum_transport_flag from new to old metadata -INFO: Converting local name npdf3d of variable number_of_3d_arrays_associated_with_pdf_based_clouds from new to old metadata -INFO: Converting local name dq3dt(:,:,2) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_deep_convection from new to old metadata -INFO: Converting local name w_upi of variable vertical_velocity_for_updraft from new to old metadata -INFO: Converting local name qlyr of variable water_vapor_specific_humidity_at_layer_for_radiation from new to old metadata -INFO: Converting local name fm10_ice of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ice from new to old metadata -INFO: Converting local name qgl of variable local_graupel_mixing_ratio from new to old metadata -INFO: Converting local name gt0(:,1) of variable air_temperature_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name ccpp_t of variable ccpp_t from new to old metadata -INFO: Converting local name clouds(:,:,4) of variable cloud_ice_water_path from new to old metadata -INFO: Converting local name rain_cpl of variable lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name bl_mynn_cloudmix of variable cloud_specie_mix_flag from new to old metadata -INFO: Converting local name tgxy of variable ground_temperature_for_noahmp from new to old metadata -INFO: Converting local name gfluxi of variable instantaneous_surface_ground_heat_flux from new to old metadata -INFO: Converting local name oa4 of variable asymmetry_of_subgrid_orography from new to old metadata -INFO: Converting local name refdmax of variable maximum_reflectivity_at_1km_agl_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name GFS_Data(ccpp_block_number) of variable GFS_data_type_instance from new to old metadata -INFO: Converting local name dvsfc_cpl of variable cumulative_surface_y_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name shocaftcnv of variable flag_for_shoc_after_convection from new to old metadata -INFO: Converting local name mg_rhmini of variable mg_minimum_rh_for_ice from new to old metadata -INFO: Converting local name t2mi_cpl of variable instantaneous_temperature_at_2m_for_coupling from new to old metadata -INFO: Converting local name GFS_Interstitial(ccpp_thread_number) of variable GFS_interstitial_type_instance from new to old metadata -INFO: Converting local name thrd_no of variable ccpp_thread_number from new to old metadata -INFO: Converting local name evbs of variable soil_upward_latent_heat_flux from new to old metadata -INFO: Converting local name dtdtr of variable tendency_of_air_temperature_due_to_radiative_heating_on_physics_time_step from new to old metadata -INFO: Converting local name spfhmin of variable minimum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name xsaixy of variable stem_area_index from new to old metadata -INFO: Converting local name lsoil of variable soil_vertical_dimension from new to old metadata -INFO: Converting local name mg_ts_auto_ice of variable mg_time_scale_for_autoconversion_of_ice from new to old metadata -INFO: Converting local name ca_deep of variable fraction_of_cellular_automata_for_deep_convection from new to old metadata -INFO: Converting local name work1 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_liquid_water_effective_radius) of variable effective_radius_of_stratiform_cloud_liquid_water_particle_in_um from new to old metadata -INFO: Converting local name nleffr of variable index_for_cloud_liquid_water_effective_radius from new to old metadata -INFO: Converting local name dlwsfci of variable surface_downwelling_longwave_flux from new to old metadata -INFO: Converting local name mg_nicons of variable mg_flag_ice_concentration_constant from new to old metadata -INFO: Converting local name faersw(:,:,:,1) of variable aerosol_optical_depth_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name xt of variable diurnal_thermocline_layer_heat_content from new to old metadata -INFO: Converting local name prsl of variable air_pressure from new to old metadata -INFO: Converting local name cv of variable fraction_of_convective_cloud from new to old metadata -INFO: Converting local name blksz of variable horizontal_block_size from new to old metadata -INFO: Converting local name pertvegf of variable magnitude_of_perturbation_of_vegetation_fraction from new to old metadata -INFO: Converting local name gq0(:,:,index_for_cloud_amount) of variable cloud_fraction_updated_by_physics from new to old metadata -INFO: Converting local name ntclamt of variable index_for_cloud_amount from new to old metadata -INFO: Converting local name zorlo of variable surface_roughness_length_over_ocean from new to old metadata -INFO: Converting local name te0 of variable atmosphere_energy_content_at_Lagrangian_surface from new to old metadata -INFO: Converting local name ktop of variable vertical_index_at_cloud_top from new to old metadata -INFO: Converting local name prevsq of variable moisture_from_previous_timestep from new to old metadata -INFO: Converting local name kpbl of variable vertical_index_at_top_of_atmosphere_boundary_layer from new to old metadata -INFO: Converting local name ncells of variable cellular_automata_finer_grid from new to old metadata -INFO: Converting local name cnvc of variable convective_cloud_cover from new to old metadata -INFO: Converting local name totprcp of variable accumulated_lwe_thickness_of_precipitation_amount from new to old metadata -INFO: Converting local name cgwf of variable multiplication_factors_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name do_shum of variable flag_for_stochastic_shum_option from new to old metadata -INFO: Converting local name save_q of variable tracer_concentration_save from new to old metadata -INFO: Converting local name h2o_pres of variable natural_log_of_h2o_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name iopt_snf of variable flag_for_precipitation_partition_option from new to old metadata -INFO: Converting local name c0s_shal of variable rain_conversion_parameter_shallow_convection from new to old metadata -INFO: Converting local name zwtxy of variable water_table_depth from new to old metadata -INFO: Converting local name qr of variable cloud_rain_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dzlyr of variable layer_thickness_for_radiation from new to old metadata -INFO: Converting local name taussxy of variable nondimensional_snow_age from new to old metadata -INFO: Converting local name tsfa of variable surface_air_temperature_for_radiation from new to old metadata -INFO: Converting local name snoalb of variable upper_bound_on_max_albedo_over_deep_snow from new to old metadata -INFO: Converting local name xs of variable sea_water_salinity from new to old metadata -INFO: Converting local name dvsfci_cpl of variable instantaneous_surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name xlat of variable latitude from new to old metadata -INFO: Converting local name ugrs of variable x_wind from new to old metadata -INFO: Converting local name shdmin of variable minimum_vegetation_area_fraction from new to old metadata -INFO: Converting local name nnirdfi_cpl of variable instantaneous_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name microp_uniform of variable mg_flag_for_uniform_subcolumns from new to old metadata -INFO: Converting local name frland of variable land_area_fraction_for_microphysics from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_friendly_aerosols) of variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name oz_pres of variable natural_log_of_ozone_forcing_data_pressure_levels from new to old metadata -INFO: Converting local name zlwb of variable time_integral_of_height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qss of variable surface_specific_humidity from new to old metadata -INFO: Converting local name dry of variable flag_nonzero_land_surface_fraction from new to old metadata -INFO: Converting local name bk of variable b_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name cdmbgwd of variable multiplication_factors_for_mountain_blocking_and_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name prauras of variable coefficient_from_cloud_water_to_rain_ras from new to old metadata -INFO: Converting local name swhtr of variable flag_for_output_of_shortwave_heating_rate from new to old metadata -INFO: Converting local name zorl_land of variable surface_roughness_length_over_land_interstitial from new to old metadata -INFO: Converting local name t2m of variable temperature_at_2m from new to old metadata -INFO: Converting local name tau_ogw of variable instantaneous_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name shoc_parm(3) of variable shoc_tke_dissipation_tunable_parameter_near_surface from new to old metadata -INFO: Converting local name gflx_ice of variable upward_heat_flux_in_soil_over_ice from new to old metadata -INFO: Converting local name nspc1 of variable number_of_species_for_aerosol_optical_depth from new to old metadata -INFO: Converting local name drain_cpl of variable tendency_of_lwe_thickness_of_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name phis of variable surface_geopotential_at_Lagrangian_surface from new to old metadata -INFO: Converting local name q2mi_cpl of variable instantaneous_specific_humidity_at_2m_for_coupling from new to old metadata -INFO: Converting local name zogw of variable time_integral_of_height_of_launch_level_of_orographic_gravity_wave from new to old metadata -INFO: Converting local name prsi of variable air_pressure_at_interface from new to old metadata -INFO: Converting local name aerodp of variable atmosphere_optical_thickness_due_to_ambient_aerosol_particles from new to old metadata -INFO: Converting local name shal_cnv of variable flag_for_shallow_convection from new to old metadata -INFO: Converting local name icsdlw of variable seed_random_numbers_lw from new to old metadata -INFO: Converting local name ncld of variable number_of_hydrometeors from new to old metadata -INFO: Converting local name gasvmr(:,:,6) of variable volume_mixing_ratio_cfc11 from new to old metadata -INFO: Converting local name tracers_water of variable number_of_water_tracers from new to old metadata -INFO: Converting local name nscyc of variable number_of_timesteps_between_surface_cycling_calls from new to old metadata -INFO: Converting local name dswsfc_cpl of variable cumulative_surface_downwelling_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name adjvisdfu of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name cs_parm(2) of variable updraft_velocity_tunable_parameter_2_CS from new to old metadata -INFO: Converting local name lsswr of variable flag_to_calc_sw from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_gf_shallow_convection_scheme from new to old metadata -INFO: Converting local name kinver of variable index_of_highest_temperature_inversion from new to old metadata -INFO: Converting local name tslb of variable soil_temperature_for_land_surface_model from new to old metadata -INFO: Converting local name weasd of variable water_equivalent_accumulated_snow_depth from new to old metadata -INFO: Converting local name tisfc of variable sea_ice_temperature from new to old metadata -INFO: Converting local name faerlw of variable aerosol_optical_properties_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name logunit of variable iounit_log from new to old metadata -INFO: Converting local name fast_mp_consv of variable flag_for_fast_microphysics_energy_conservation from new to old metadata -INFO: Converting local name cnv_mfd of variable detrained_mass_flux from new to old metadata -INFO: Converting local name zvir of variable ratio_of_vapor_to_dry_air_gas_constants_minus_one_default_kind from new to old metadata -INFO: Converting local name jed of variable ending_y_direction_index_domain from new to old metadata -INFO: Converting local name gasvmr(:,:,3) of variable volume_mixing_ratio_ch4 from new to old metadata -INFO: Converting local name sfcdsw of variable surface_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name hydrostatic of variable flag_for_hydrostatic_solver_for_fast_physics from new to old metadata -INFO: Converting local name dvsfc_bl of variable integrated_y_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name Grid of variable GFS_grid_type_instance from new to old metadata -INFO: Converting local name ncnd of variable number_of_cloud_condensate_types from new to old metadata -INFO: Converting local name LTP of variable extra_top_layer from new to old metadata -INFO: Converting local name zm of variable ocean_mixed_layer_thickness from new to old metadata -INFO: Converting local name shoc_parm(2) of variable shoc_tke_dissipation_tunable_parameter from new to old metadata -INFO: Converting local name cdec of variable cosine_of_solar_declination_angle from new to old metadata -INFO: Converting local name npzq_con of variable vertical_dimension_for_condensed_water_at_Lagrangian_surface from new to old metadata -INFO: Converting local name rmol of variable reciprocal_of_obukhov_length from new to old metadata -INFO: Converting local name snowxy of variable number_of_snow_layers from new to old metadata -INFO: Converting local name hflx_land of variable kinematic_surface_upward_sensible_heat_flux_over_land from new to old metadata -INFO: Converting local name clw of variable convective_transportable_tracers from new to old metadata -INFO: Converting local name srflag of variable flag_for_precipitation_type from new to old metadata -INFO: Converting local name suntim of variable duration_of_sunshine from new to old metadata -INFO: Converting local name isot of variable soil_type_dataset_choice from new to old metadata -INFO: Converting local name isol of variable flag_for_solar_constant from new to old metadata -INFO: Converting local name th2m of variable potential_temperature_at_2m from new to old metadata -INFO: Converting local name hpbl of variable atmosphere_boundary_layer_thickness from new to old metadata -INFO: Converting local name cd of variable surface_drag_coefficient_for_momentum_in_air from new to old metadata -INFO: Converting local name dusfc_ls of variable integrated_x_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name do_sppt of variable flag_for_stochastic_surface_physics_perturbations from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_water_mixing_ratio_in_phy_f3d) of variable convective_cloud_water_mixing_ratio_in_phy_f3d from new to old metadata -INFO: Converting local name rb_ice of variable bulk_richardson_number_at_lowest_model_level_over_ice from new to old metadata -INFO: Converting local name itc of variable number_of_aerosol_tracers_for_convection from new to old metadata -INFO: Converting local name Cldprop of variable GFS_cldprop_type_instance from new to old metadata -INFO: Converting local name grav_settling of variable grav_settling from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntinc of variable index_for_ice_cloud_number_concentration from new to old metadata -INFO: Converting local name iopt_inf of variable flag_for_frozen_soil_permeability_option from new to old metadata -INFO: Converting local name c0s_deep of variable rain_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dtaux2d_ls of variable x_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name phy_myj_qz0 of variable specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iovr_sw of variable flag_for_max_random_overlap_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name icliq_sw of variable flag_for_optical_property_for_liquid_clouds_for_shortwave_radiation from new to old metadata -INFO: Converting local name psmean of variable cumulative_surface_pressure_multiplied_by_timestep from new to old metadata -INFO: Converting local name cmm_ocean of variable surface_drag_wind_speed_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name shcnvcw of variable flag_shallow_convective_cloud from new to old metadata -INFO: Converting local name drain of variable subsurface_runoff_flux from new to old metadata -INFO: Converting local name ak of variable a_parameter_of_the_hybrid_coordinate from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_liquid_cloud_number_concentration) of variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name sfc_z0_type of variable flag_for_surface_roughness_option_over_ocean from new to old metadata -INFO: Converting local name cvt of variable pressure_at_top_of_convective_cloud from new to old metadata -INFO: Converting local name gwd_opt of variable gwd_opt from new to old metadata -INFO: Converting local name snowmp of variable lwe_thickness_of_snow_amount from new to old metadata -INFO: Converting local name ncnvcld3d of variable number_of_convective_3d_cloud_fields from new to old metadata -INFO: Converting local name cape of variable convective_available_potential_energy_for_coupling from new to old metadata -INFO: Converting local name du3dt_ogw of variable time_integral_of_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name te0_2d of variable atmosphere_energy_content_in_column from new to old metadata -INFO: Converting local name dsnowprv of variable snow_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name chh of variable surface_drag_mass_flux_for_heat_and_moisture_in_air from new to old metadata -INFO: Converting local name dt3dt(:,:,5) of variable cumulative_change_in_temperature_due_to_shal_convection from new to old metadata -INFO: Converting local name cplwav of variable flag_for_wave_coupling from new to old metadata -INFO: Converting local name clw(:,:,2) of variable cloud_condensed_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name shoc_parm(1) of variable shoc_tke_dissipatation_pressure_threshold from new to old metadata -INFO: Converting local name oro_uf of variable orography_unfiltered from new to old metadata -INFO: Converting local name peln of variable log_pressure_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gasvmr(:,:,8) of variable volume_mixing_ratio_cfc22 from new to old metadata -INFO: Converting local name pertzt of variable magnitude_of_perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name clouds(:,:,1) of variable total_cloud_fraction from new to old metadata -INFO: Converting local name iaer of variable flag_for_default_aerosol_effect_in_shortwave_radiation from new to old metadata -INFO: Converting local name wet1 of variable normalized_soil_wetness from new to old metadata -INFO: Converting local name npz of variable vertical_dimension_for_fast_physics from new to old metadata -INFO: Converting local name cal_pre of variable flag_for_precipitation_type_algorithm from new to old metadata -INFO: Converting local name lmk of variable adjusted_vertical_layer_dimension_for_radiation from new to old metadata -INFO: Converting local name kind_phys of variable kind_phys from new to old metadata -INFO: Converting local name Sfcprop of variable GFS_sfcprop_type_instance from new to old metadata -INFO: Converting local name wslakexy of variable lake_water_storage from new to old metadata -INFO: Converting local name f10m of variable ratio_of_wind_at_lowest_model_layer_and_wind_at_10m from new to old metadata -INFO: Converting local name gasvmr(:,:,1) of variable volume_mixing_ratio_co2 from new to old metadata -INFO: Converting local name q2mp of variable specific_humidity_at_2m_from_noahmp from new to old metadata -INFO: Converting local name lwhc of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_timestep from new to old metadata -INFO: Converting local name snowd_ice of variable surface_snow_thickness_water_equivalent_over_ice from new to old metadata -INFO: Converting local name lsnow_lsm_lbound of variable lower_bound_of_snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name mg_dcs of variable mg_autoconversion_size_threshold_ice_snow from new to old metadata -INFO: Converting local name rhgrd of variable fa_threshold_relative_humidity_for_onset_of_condensation from new to old metadata -INFO: Converting local name dudt_ogw of variable instantaneous_change_in_x_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name slmsk of variable sea_land_ice_mask_real from new to old metadata -INFO: Converting local name ictm of variable flag_for_initial_time_date_control from new to old metadata -INFO: Converting local name qss_ocean of variable surface_specific_humidity_over_ocean from new to old metadata -INFO: Converting local name tsfc of variable surface_skin_temperature from new to old metadata -INFO: Converting local name prsik of variable dimensionless_exner_function_at_model_interfaces from new to old metadata -INFO: Converting local name t2mmp of variable temperature_at_2m_from_noahmp from new to old metadata -INFO: Converting local name tau_ogw of variable time_integral_of_momentum_flux_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name topflw_type of variable topflw_type from new to old metadata -INFO: Converting local name cnv_nice of variable number_concentration_of_ice_crystals_for_detrainment from new to old metadata -INFO: Converting local name cscnv of variable flag_for_Chikira_Sugiyama_deep_convection from new to old metadata -INFO: Converting local name u10mi_cpl of variable instantaneous_x_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name fh2_ocean of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ocean from new to old metadata -INFO: Converting local name phii of variable geopotential_at_interface from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel) of variable graupel_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name ntgl of variable index_for_graupel from new to old metadata -INFO: Converting local name nvisdfi_cpl of variable instantaneous_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name norad_precip of variable flag_for_precipitation_effect_on_radiation from new to old metadata -INFO: Converting local name dq3dt(:,:,5) of variable cumulative_change_in_ozone_mixing_ratio_due_to_PBL from new to old metadata -INFO: Converting local name dusfcg of variable instantaneous_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name stype of variable soil_type_classification_real from new to old metadata -INFO: Converting local name lwhtr of variable flag_for_output_of_longwave_heating_rate from new to old metadata -INFO: Converting local name skebv_wts of variable weights_for_stochastic_skeb_perturbation_of_y_wind_flipped from new to old metadata -INFO: Converting local name prnum of variable prandtl_number from new to old metadata -INFO: Converting local name dtsfcin_cpl of variable surface_upward_sensible_heat_flux_for_coupling from new to old metadata -INFO: Converting local name sigmatot of variable convective_updraft_area_fraction_at_model_interfaces from new to old metadata -INFO: Converting local name rann of variable random_number_array from new to old metadata -INFO: Converting local name work2 of variable grid_size_related_coefficient_used_in_scale_sensitive_schemes_complement from new to old metadata -INFO: Converting local name ep1d_land of variable surface_upward_potential_latent_heat_flux_over_land from new to old metadata -INFO: Converting local name num_p3d of variable array_dimension_of_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name frac_grid of variable flag_for_fractional_grid from new to old metadata -INFO: Converting local name dtdtc of variable tendency_of_air_temperature_due_to_radiative_heating_assuming_clear_sky from new to old metadata -INFO: Converting local name chxy of variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp from new to old metadata -INFO: Converting local name dtauy2d_bl of variable y_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name dtsfc of variable cumulative_surface_upward_sensible_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name gflx_ocean of variable upward_heat_flux_in_soil_over_ocean from new to old metadata -INFO: Converting local name deeprechxy of variable water_table_recharge_when_deep from new to old metadata -INFO: Converting local name imfshalcnv_sas of variable flag_for_sas_shallow_convection_scheme from new to old metadata -INFO: Converting local name woodxy of variable wood_mass from new to old metadata -INFO: Converting local name phy_f3d(:,:,3) of variable air_temperature_at_previous_time_step from new to old metadata -INFO: Converting local name otspt of variable flag_convective_tracer_transport from new to old metadata -INFO: Converting local name tsurf of variable surface_skin_temperature_after_iteration from new to old metadata -INFO: Converting local name phy_f2d(:,array_dimension_of_2d_arrays_for_microphysics) of variable surface_wind_enhancement_due_to_convection from new to old metadata -INFO: Converting local name num_p2d of variable array_dimension_of_2d_arrays_for_microphysics from new to old metadata -INFO: Converting local name diss_est of variable dissipation_estimate_of_air_temperature_at_model_layers from new to old metadata -INFO: Converting local name ffmm_land of variable Monin_Obukhov_similarity_function_for_momentum_over_land from new to old metadata -INFO: Converting local name imfshalcnv of variable flag_for_mass_flux_shallow_convection_scheme from new to old metadata -INFO: Converting local name iopt_rad of variable flag_for_radiation_transfer_option from new to old metadata -INFO: Converting local name effr_in of variable flag_for_cloud_effective_radii from new to old metadata -INFO: Converting local name Sh3D of variable stability_function_for_heat from new to old metadata -INFO: Converting local name con_sbc of variable stefan_boltzmann_constant from new to old metadata -INFO: Converting local name phy_myj_z0base of variable baseline_surface_roughness_length from new to old metadata -INFO: Converting local name pertshc of variable magnitude_of_perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name f_ice of variable fraction_of_ice_water_cloud from new to old metadata -INFO: Converting local name qs of variable cloud_snow_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name iflip of variable flag_for_vertical_index_direction_control from new to old metadata -INFO: Converting local name draincprv of variable convective_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name icsdsw of variable seed_random_numbers_sw from new to old metadata -INFO: Converting local name dtaux2d_bl of variable x_momentum_tendency_from_blocking_drag from new to old metadata -INFO: Converting local name uustar_ocean of variable surface_friction_velocity_over_ocean from new to old metadata -INFO: Converting local name zlwb of variable height_of_low_level_wave_breaking from new to old metadata -INFO: Converting local name sigma of variable slope_of_subgrid_orography from new to old metadata -INFO: Converting local name cd_land of variable surface_drag_coefficient_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name shoc_parm(5) of variable shoc_flag_for_optional_surface_TKE_dissipation from new to old metadata -INFO: Converting local name qss_ice of variable surface_specific_humidity_over_ice from new to old metadata -INFO: Converting local name graupel of variable lwe_thickness_of_graupel_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_myjsfc of variable do_myjsfc from new to old metadata -INFO: Converting local name htsw0 of variable tendency_of_air_temperature_due_to_shortwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name ep of variable cumulative_surface_upward_potential_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name tprcp of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dnirdf_cpl of variable cumulative_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name qwv_surf of variable water_vapor_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name fm10_ocean of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_ocean from new to old metadata -INFO: Converting local name QC_BL of variable subgrid_cloud_mixing_ratio_pbl from new to old metadata -INFO: Converting local name adjsfculw_ice of variable surface_upwelling_longwave_flux_over_ice_interstitial from new to old metadata -INFO: Converting local name tsfci_cpl of variable instantaneous_surface_skin_temperature_for_coupling from new to old metadata -INFO: Converting local name pertz0 of variable magnitude_of_perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name eahxy of variable canopy_air_vapor_pressure from new to old metadata -INFO: Converting local name cnv_dqldt of variable tendency_of_cloud_water_due_to_convective_microphysics from new to old metadata -INFO: Converting local name gq0 of variable tracer_concentration_updated_by_physics from new to old metadata -INFO: Converting local name iopt_dveg of variable flag_for_dynamic_vegetation_option from new to old metadata -INFO: Converting local name gv0(:,1) of variable y_wind_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name first_time_step of variable flag_for_first_time_step from new to old metadata -INFO: Converting local name dtaux2d_ss of variable x_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name wetdpl of variable instantaneous_large_scale_wet_deposition from new to old metadata -INFO: Converting local name cndm_surf of variable surface_condensation_mass from new to old metadata -INFO: Converting local name cmm_land of variable surface_drag_wind_speed_for_momentum_in_air_over_land from new to old metadata -INFO: Converting local name fh2 of variable Monin_Obukhov_similarity_function_for_heat_at_2m from new to old metadata -INFO: Converting local name gw_dudt of variable tendency_of_x_wind_due_to_ugwp from new to old metadata -INFO: Converting local name shinhong of variable flag_for_scale_aware_Shinhong_PBL from new to old metadata -INFO: Converting local name maxMF of variable maximum_mass_flux from new to old metadata -INFO: Converting local name gu0 of variable x_wind_updated_by_physics from new to old metadata -INFO: Converting local name ncstrac of variable number_of_tracers_for_CS from new to old metadata -INFO: Converting local name do_qa of variable flag_for_inline_cloud_fraction_calculation from new to old metadata -INFO: Converting local name pgr of variable surface_air_pressure from new to old metadata -INFO: Converting local name del of variable air_pressure_difference_between_midlayers from new to old metadata -INFO: Converting local name nqrimef of variable index_for_mass_weighted_rime_factor from new to old metadata -INFO: Converting local name du3dt(:,:,1) of variable cumulative_change_in_x_wind_due_to_PBL from new to old metadata -INFO: Converting local name raincs of variable lwe_thickness_of_shallow_convective_precipitation_amount from new to old metadata -INFO: Converting local name sdec of variable sine_of_solar_declination_angle from new to old metadata -INFO: Converting local name xlaixy of variable leaf_area_index from new to old metadata -INFO: Converting local name iopt_alb of variable flag_for_ground_snow_surface_albedo_option from new to old metadata -INFO: Converting local name moninq_fac of variable atmosphere_diffusivity_coefficient_factor from new to old metadata -INFO: Converting local name work3 of variable ratio_of_exner_function_between_midlayer_and_interface_at_lowest_model_layer from new to old metadata -INFO: Converting local name adjnirbmd of variable surface_downwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name imp_physics_zhao_carr_pdf of variable flag_for_zhao_carr_pdf_microphysics_scheme from new to old metadata -INFO: Converting local name dv3dt(:,:,3) of variable cumulative_change_in_y_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name evcwa of variable cumulative_canopy_upward_latent_heat_flu_multiplied_by_timestep from new to old metadata -INFO: Converting local name lsm_noah of variable flag_for_noah_land_surface_scheme from new to old metadata -INFO: Converting local name ntk of variable index_for_turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name qsnw of variable local_snow_water_mixing_ratio from new to old metadata -INFO: Converting local name edmf_thl of variable emdf_updraft_theta_l from new to old metadata -INFO: Converting local name crtrh(2) of variable critical_relative_humidity_at_PBL_top from new to old metadata -INFO: Converting local name xv of variable diurnal_thermocline_layer_y_current from new to old metadata -INFO: Converting local name rlapse of variable air_temperature_lapse_rate_constant from new to old metadata -INFO: Converting local name clw(:,:,1) of variable ice_water_mixing_ratio_convective_transport_tracer from new to old metadata -INFO: Converting local name levozp of variable vertical_dimension_of_ozone_forcing_data from new to old metadata -INFO: Converting local name spfhmax of variable maximum_specific_humidity_at_2m from new to old metadata -INFO: Converting local name runoff of variable surface_runoff_flux from new to old metadata -INFO: Converting local name do_sb_physics of variable mg_flag_for_sb2001_autoconversion from new to old metadata -INFO: Converting local name phy_myj_a1q of variable weight_for_specific_humidity_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name cactiv of variable conv_activity_counter from new to old metadata -INFO: Converting local name clw(:,:,index_for_turbulent_kinetic_energy_convective_transport_tracer) of variable turbulent_kinetic_energy_convective_transport_tracer from new to old metadata -INFO: Converting local name oz_phys_2015 of variable flag_for_2015_ozone_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_snow_number_concentration) of variable snow_number_concentration from new to old metadata -INFO: Converting local name ntsnc of variable index_for_snow_number_concentration from new to old metadata -INFO: Converting local name dlwsfci_cpl of variable instantaneous_surface_downwelling_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name errflg of variable ccpp_error_flag from new to old metadata -INFO: Converting local name kbot of variable vertical_index_at_cloud_base from new to old metadata -INFO: Converting local name clw_surf of variable cloud_condensed_water_mixing_ratio_at_surface from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind from new to old metadata -INFO: Converting local name snowprv of variable lwe_thickness_of_snow_amount_from_previous_timestep from new to old metadata -INFO: Converting local name spec_adv of variable flag_for_individual_cloud_species_advected from new to old metadata -INFO: Converting local name rainmp of variable lwe_thickness_of_explicit_rain_amount from new to old metadata -INFO: Converting local name jdat of variable forecast_date_and_time from new to old metadata -INFO: Converting local name ntrcaer of variable number_of_aerosol_tracers_MG from new to old metadata -INFO: Converting local name gflux of variable cumulative_surface_ground_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name q1 of variable water_vapor_specific_humidity_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gq0(:,1,index_for_water_vapor) of variable water_vapor_specific_humidity_at_lowest_model_layer_updated_by_physics from new to old metadata -INFO: Converting local name nday of variable daytime_points_dimension from new to old metadata -INFO: Converting local name cs_parm(9) of variable entrainment_efficiency_tunable_parameter_9_CS from new to old metadata -INFO: Converting local name flx_form of variable flag_flux_form_CS from new to old metadata -INFO: Converting local name dtsfc_cpl of variable cumulative_surface_upward_sensible_heat_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name nstf_name(1) of variable flag_for_nsstm_run from new to old metadata -INFO: Converting local name ca_sgs of variable flag_for_sgs_cellular_automata from new to old metadata -INFO: Converting local name mg_qcmin(1) of variable mg_minimum_cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio from new to old metadata -INFO: Converting local name rilist of variable gas_constants_for_multi_gases_physics from new to old metadata -INFO: Converting local name dtauy2d_ls of variable y_momentum_tendency_from_large_scale_gwd from new to old metadata -INFO: Converting local name oz_coeff of variable number_of_coefficients_in_ozone_forcing_data from new to old metadata -INFO: Converting local name edmf_qt of variable emdf_updraft_total_water from new to old metadata -INFO: Converting local name stmassxy of variable stem_mass from new to old metadata -INFO: Converting local name dgraupelprv of variable graupel_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_mass_weighted_rime_factor) of variable mass_weighted_rime_factor_updated_by_physics from new to old metadata -INFO: Converting local name alnwf of variable mean_nir_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name smoiseq of variable equilibrium_soil_water_content from new to old metadata -INFO: Converting local name psautco of variable coefficient_from_cloud_ice_to_snow from new to old metadata -INFO: Converting local name fhlwr of variable frequency_for_longwave_radiation from new to old metadata -INFO: Converting local name xtts of variable sensitivity_of_dtl_heat_content_to_surface_temperature from new to old metadata -INFO: Converting local name tracers_start_index of variable start_index_of_other_tracers from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_condensate) of variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name jsd of variable starting_y_direction_index_domain from new to old metadata -INFO: Converting local name semis_land of variable surface_longwave_emissivity_over_land_interstitial from new to old metadata -INFO: Converting local name tdomr of variable dominant_rain_type from new to old metadata -INFO: Converting local name conv_act of variable gf_memory_counter from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_number_concentration) of variable ice_number_concentration from new to old metadata -INFO: Converting local name ugrs(:,1) of variable x_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name qicn of variable mass_fraction_of_convective_cloud_ice from new to old metadata -INFO: Converting local name fh2_ice of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_ice from new to old metadata -INFO: Converting local name tsq of variable t_prime_squared from new to old metadata -INFO: Converting local name tdomip of variable dominant_sleet_type from new to old metadata -INFO: Converting local name lslwr of variable flag_to_calc_lw from new to old metadata -INFO: Converting local name GFS_cldprop_type of variable GFS_cldprop_type from new to old metadata -INFO: Converting local name imp_physics of variable flag_for_microphysics_scheme from new to old metadata -INFO: Converting local name sfcalb(:,1) of variable surface_albedo_due_to_near_IR_direct from new to old metadata -INFO: Converting local name mg_do_graupel of variable mg_flag_for_graupel from new to old metadata -INFO: Converting local name soilm of variable soil_moisture_content from new to old metadata -INFO: Converting local name exch_m of variable atmosphere_momentum_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name wetdpc of variable instantaneous_convective_scale_wet_deposition from new to old metadata -INFO: Converting local name el_pbl of variable mixing_length from new to old metadata -INFO: Converting local name ncnvc of variable index_for_convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name fn_nml of variable namelist_filename from new to old metadata -INFO: Converting local name weasd_ocean of variable water_equivalent_accumulated_snow_depth_over_ocean from new to old metadata -INFO: Converting local name evfact_deep of variable rain_evaporation_coefficient_deep_convection from new to old metadata -INFO: Converting local name dqsfc of variable cumulative_surface_upward_latent_heat_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name totgrpb of variable accumulated_lwe_thickness_of_graupel_amount_in_bucket from new to old metadata -INFO: Converting local name trans_aero of variable flag_for_aerosol_convective_transport_and_PBL_diffusion from new to old metadata -INFO: Converting local name dusfc_bl of variable integrated_x_momentum_flux_from_blocking_drag from new to old metadata -INFO: Converting local name gw_kdis of variable eddy_mixing_due_to_ugwp from new to old metadata -INFO: Converting local name mg_qcmin of variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio from new to old metadata -INFO: Converting local name dq3dt(:,:,3) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_shal_convection from new to old metadata -INFO: Converting local name qi of variable cloud_ice_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imfshalcnv_gf of variable flag_for_ntiedtke_shallow_convection_scheme from new to old metadata -INFO: Converting local name zorl_ocean of variable surface_roughness_length_over_ocean_interstitial from new to old metadata -INFO: Converting local name tsfc_ice of variable surface_skin_temperature_over_ice_interstitial from new to old metadata -INFO: Converting local name input_nml_file_length of variable number_of_lines_of_namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name flhc of variable surface_exchange_coefficient_for_heat from new to old metadata -INFO: Converting local name qke of variable tke_at_mass_points from new to old metadata -INFO: Converting local name snowd of variable surface_snow_thickness_water_equivalent from new to old metadata -INFO: Converting local name ncpr of variable local_rain_number_concentration from new to old metadata -INFO: Converting local name ldiag3d of variable flag_diagnostics_3D from new to old metadata -INFO: Converting local name ffhh_ocean of variable Monin_Obukhov_similarity_function_for_heat_over_ocean from new to old metadata -INFO: Converting local name nsamftrac of variable number_of_tracers_for_samf from new to old metadata -INFO: Converting local name con_hvap of variable latent_heat_of_vaporization_of_water_at_0C from new to old metadata -INFO: Converting local name dtaux2d_fd of variable x_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name ras of variable flag_for_ras_deep_convection from new to old metadata -INFO: Converting local name ialb of variable flag_for_using_climatology_albedo from new to old metadata -INFO: Converting local name raincd of variable lwe_thickness_of_deep_convective_precipitation_amount from new to old metadata -INFO: Converting local name alb1d of variable surface_albedo_perturbation from new to old metadata -INFO: Converting local name nwat of variable number_of_water_species from new to old metadata -INFO: Converting local name dwn_mf of variable cumulative_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name save_t of variable air_temperature_save from new to old metadata -INFO: Converting local name fice of variable sea_ice_concentration from new to old metadata -INFO: Converting local name dvisdf_cpl of variable cumulative_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name cvb of variable pressure_at_bottom_of_convective_cloud from new to old metadata -INFO: Converting local name save_q(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio_save from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_water) of variable snow_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name qrain of variable sensible_heat_flux_due_to_rainfall from new to old metadata -INFO: Converting local name stress_ocean of variable surface_wind_stress_over_ocean from new to old metadata -INFO: Converting local name adjsfculw_land of variable surface_upwelling_longwave_flux_over_land_interstitial from new to old metadata -INFO: Converting local name ndust of variable number_of_dust_bins_for_diagnostics from new to old metadata -INFO: Converting local name GFS_radtend_type of variable GFS_radtend_type from new to old metadata -INFO: Converting local name ngas of variable number_of_gases_for_multi_gases_physics from new to old metadata -INFO: Converting local name diceprv of variable ice_precipitation_rate_from_previous_timestep from new to old metadata -INFO: Converting local name con_ttp of variable triple_point_temperature_of_water from new to old metadata -INFO: Converting local name rechxy of variable water_table_recharge_when_shallow from new to old metadata -INFO: Converting local name ffhh of variable Monin_Obukhov_similarity_function_for_heat from new to old metadata -INFO: Converting local name edmf_w of variable emdf_updraft_vertical_velocity from new to old metadata -INFO: Converting local name sed_supersat of variable mg_allow_supersat_after_sed from new to old metadata -INFO: Converting local name sr of variable ratio_of_snowfall_to_rainfall from new to old metadata -INFO: Converting local name stc of variable soil_temperature from new to old metadata -INFO: Converting local name idate of variable date_and_time_at_model_initialization_reordered from new to old metadata -INFO: Converting local name nctp of variable number_of_cloud_types_CS from new to old metadata -INFO: Converting local name levrp1 of variable number_of_vertical_layers_for_radiation_calculations_plus_one from new to old metadata -INFO: Converting local name v10mmax of variable maximum_y_wind_at_10m from new to old metadata -INFO: Converting local name clouds(:,:,8) of variable cloud_snow_water_path from new to old metadata -INFO: Converting local name dusfc of variable cumulative_surface_x_momentum_flux_for_diag_multiplied_by_timestep from new to old metadata -INFO: Converting local name sfcalb(:,3) of variable surface_albedo_due_to_UV_and_VIS_direct from new to old metadata -INFO: Converting local name zmtnblck of variable level_of_dividing_streamline from new to old metadata -INFO: Converting local name xcosz of variable instantaneous_cosine_of_zenith_angle from new to old metadata -INFO: Converting local name CCPP_interstitial_type of variable CCPP_interstitial_type from new to old metadata -INFO: Converting local name theta of variable angle_from_east_of_maximum_subgrid_orographic_variations from new to old metadata -INFO: Converting local name nbdsw of variable number_of_aerosol_bands_for_shortwave_radiation from new to old metadata -INFO: Converting local name dqsfc1 of variable instantaneous_surface_upward_latent_heat_flux from new to old metadata -INFO: Converting local name htrsw of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_timestep from new to old metadata -INFO: Converting local name gq0(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name ntgnc of variable index_for_graupel_number_concentration from new to old metadata -INFO: Converting local name semis of variable surface_longwave_emissivity from new to old metadata -INFO: Converting local name ca_smooth of variable flag_for_gaussian_spatial_filter from new to old metadata -INFO: Converting local name zhour of variable time_since_diagnostics_zeroed from new to old metadata -INFO: Converting local name uswsfci of variable surface_upwelling_shortwave_flux from new to old metadata -INFO: Converting local name dq3dt(:,:,6) of variable cumulative_change_in_ozone_concentration_due_to_production_and_loss_rate from new to old metadata -INFO: Converting local name con_t0c of variable temperature_at_zero_celsius from new to old metadata -INFO: Converting local name dvsfcin_cpl of variable surface_y_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name qgrs of variable tracer_concentration from new to old metadata -INFO: Converting local name upd_mf of variable cumulative_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_cloud_fraction_in_3d_arrays_for_microphysics) of variable cloud_fraction_for_MG from new to old metadata -INFO: Converting local name indcld of variable index_for_cloud_fraction_in_3d_arrays_for_microphysics from new to old metadata -INFO: Converting local name vegtype of variable vegetation_type_classification from new to old metadata -INFO: Converting local name ied of variable ending_x_direction_index_domain from new to old metadata -INFO: Converting local name transa of variable cumulative_transpiration_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name dt3dt(:,:,2) of variable cumulative_change_in_temperature_due_to_shortwave_radiation from new to old metadata -INFO: Converting local name dvsfc_ls of variable integrated_y_momentum_flux_from_large_scale_gwd from new to old metadata -INFO: Converting local name snowd_ocean of variable surface_snow_thickness_water_equivalent_over_ocean from new to old metadata -INFO: Converting local name clouds(:,:,2) of variable cloud_liquid_water_path from new to old metadata -INFO: Converting local name visbmui of variable surface_upwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name plvl of variable air_pressure_at_interface_for_radiation_in_hPa from new to old metadata -INFO: Converting local name uustar_land of variable surface_friction_velocity_over_land from new to old metadata -INFO: Converting local name phy_myj_akms of variable momentum_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name cnv_fice of variable ice_fraction_in_convective_tower from new to old metadata -INFO: Converting local name nbdlw of variable number_of_aerosol_bands_for_longwave_radiation from new to old metadata -INFO: Converting local name dudt_mtb of variable instantaneous_change_in_x_wind_due_to_mountain_blocking_drag from new to old metadata -INFO: Converting local name rb_ocean of variable bulk_richardson_number_at_lowest_model_level_over_ocean from new to old metadata -INFO: Converting local name ccnorm of variable flag_for_cloud_condensate_normalized_by_cloud_cover from new to old metadata -INFO: Converting local name dqdt of variable tendency_of_tracers_due_to_model_physics from new to old metadata -INFO: Converting local name u10m of variable x_wind_at_10m from new to old metadata -INFO: Converting local name tmpmin of variable minimum_temperature_at_2m from new to old metadata -INFO: Converting local name save_u of variable x_wind_save from new to old metadata -INFO: Converting local name tsnow of variable snow_temperature_bottom_first_layer from new to old metadata -INFO: Converting local name kind_INTEGER of variable kind_INTEGER from new to old metadata -INFO: Converting local name nswsfc_cpl of variable cumulative_surface_net_downward_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name vgrs(:,1) of variable y_wind_at_lowest_model_layer from new to old metadata -INFO: Converting local name bl_mynn_edmf_tke of variable edmf_tke_transport_flag from new to old metadata -INFO: Converting local name tile_num of variable number_of_tile from new to old metadata -INFO: Converting local name con_pi of variable pi from new to old metadata -INFO: Converting local name abem of variable instantaneous_anthopogenic_and_biomass_burning_emissions from new to old metadata -INFO: Converting local name latidxprnt of variable latitude_index_in_debug_printouts from new to old metadata -INFO: Converting local name tcrf of variable cloud_phase_transition_denominator from new to old metadata -INFO: Converting local name cpilist of variable specific_heat_capacities_for_multi_gases_physics from new to old metadata -INFO: Converting local name tprcp_ocean of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_ocean from new to old metadata -INFO: Converting local name vgrs of variable y_wind from new to old metadata -INFO: Converting local name me of variable mpi_rank from new to old metadata -INFO: Converting local name nseffr of variable index_for_snow_effective_radius from new to old metadata -INFO: Converting local name crtrh(1) of variable critical_relative_humidity_at_surface from new to old metadata -INFO: Converting local name nrcm of variable array_dimension_of_random_number from new to old metadata -INFO: Converting local name phy_f2d(:,2) of variable surface_air_pressure_at_previous_time_step from new to old metadata -INFO: Converting local name totice of variable accumulated_lwe_thickness_of_ice_amount from new to old metadata -INFO: Converting local name vdftra of variable vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name clam_shal of variable entrainment_rate_coefficient_shallow_convection from new to old metadata -INFO: Converting local name ulwsfc of variable cumulative_surface_upwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldf of variable cloud_area_fraction from new to old metadata -INFO: Converting local name prslk of variable dimensionless_exner_function_at_model_layers from new to old metadata -INFO: Converting local name imp_physics_wsm6 of variable flag_for_wsm6_microphysics_scheme from new to old metadata -INFO: Converting local name blksz(ccpp_block_number) of variable horizontal_loop_extent from new to old metadata -INFO: Converting local name dtp of variable time_step_for_physics from new to old metadata -INFO: Converting local name nnirdf_cpl of variable cumulative_surface_net_downward_diffuse_near_infrared_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name tsurf_ice of variable surface_skin_temperature_after_iteration_over_ice from new to old metadata -INFO: Converting local name snowfallac of variable total_accumulated_snowfall from new to old metadata -INFO: Converting local name solhr of variable forecast_hour_of_the_day from new to old metadata -INFO: Converting local name use_zmtnblck of variable flag_for_mountain_blocking from new to old metadata -INFO: Converting local name sfcflw_type of variable sfcflw_type from new to old metadata -INFO: Converting local name rhofr of variable density_of_frozen_precipitation from new to old metadata -INFO: Converting local name dxmax of variable maximum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name rainc_cpl of variable lwe_thickness_of_convective_precipitation_amount_for_coupling from new to old metadata -INFO: Converting local name prautco of variable coefficient_from_cloud_water_to_rain from new to old metadata -INFO: Converting local name cumabs of variable maximum_column_heating_rate from new to old metadata -INFO: Converting local name Statein of variable GFS_statein_type_instance from new to old metadata -INFO: Converting local name ntasks of variable mpi_size from new to old metadata -INFO: Converting local name qsq of variable q_prime_squared from new to old metadata -INFO: Converting local name bl_mynn_mixqt of variable mix_total_water_flag from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_turbulent_kinetic_energy) of variable tendency_of_turbulent_kinetic_energy_due_to_model_physics from new to old metadata -INFO: Converting local name ntke of variable index_for_turbulent_kinetic_energy from new to old metadata -INFO: Converting local name kmp of variable top_layer_index_for_fast_physics from new to old metadata -INFO: Converting local name ffhh_ice of variable Monin_Obukhov_similarity_function_for_heat_over_ice from new to old metadata -INFO: Converting local name dq3dt(:,:,1) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_PBL from new to old metadata -INFO: Converting local name con_hfus of variable latent_heat_of_fusion_of_water_at_0C from new to old metadata -INFO: Converting local name isubc_lw of variable flag_for_lw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name du3dt(:,:,3) of variable cumulative_change_in_x_wind_due_to_deep_convection from new to old metadata -INFO: Converting local name clx of variable fraction_of_grid_box_with_subgrid_orography_higher_than_critical_height from new to old metadata -INFO: Converting local name shoc_parm(4) of variable shoc_implicit_TKE_integration_uncentering_term from new to old metadata -INFO: Converting local name gasvmr(:,:,7) of variable volume_mixing_ratio_cfc12 from new to old metadata -INFO: Converting local name cappa of variable cappa_moist_gas_constant_at_Lagrangian_surface from new to old metadata -INFO: Converting local name cf_upi of variable convective_cloud_fraction_for_microphysics from new to old metadata -INFO: Converting local name cdata of variable ccpp_t_instance from new to old metadata -INFO: Converting local name phy_myj_akhs of variable heat_exchange_coefficient_for_MYJ_schemes from new to old metadata -INFO: Converting local name sedim of variable instantaneous_sedimentation from new to old metadata -INFO: Converting local name graupelmp of variable lwe_thickness_of_graupel_amount from new to old metadata -INFO: Converting local name skebu_wts of variable weights_for_stochastic_skeb_perturbation_of_x_wind_flipped from new to old metadata -INFO: Converting local name GFS_control_type of variable GFS_control_type from new to old metadata -INFO: Converting local name yearlen of variable number_of_days_in_year from new to old metadata -INFO: Converting local name save_q(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_save from new to old metadata -INFO: Converting local name smois of variable volume_fraction_of_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name gq0(:,:,index_for_liquid_cloud_condensate) of variable cloud_condensed_water_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name pwat of variable column_precipitable_water from new to old metadata -INFO: Converting local name cld1d of variable cloud_work_function from new to old metadata -INFO: Converting local name qvi of variable gas_tracers_for_multi_gas_physics_at_Lagrangian_surface from new to old metadata -INFO: Converting local name gabsbdlw of variable surface_downwelling_longwave_flux_absorbed_by_ground from new to old metadata -INFO: Converting local name xlat_d of variable latitude_degree from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_ice_effective_radius) of variable effective_radius_of_stratiform_cloud_ice_particle_in_um from new to old metadata -INFO: Converting local name nieffr of variable index_for_ice_effective_radius from new to old metadata -INFO: Converting local name do_ca of variable flag_for_cellular_automata from new to old metadata -INFO: Converting local name wtxy of variable water_storage_in_aquifer_and_saturated_soil from new to old metadata -INFO: Converting local name srunoff of variable surface_runoff from new to old metadata -INFO: Converting local name ntrnc of variable index_for_rain_number_concentration from new to old metadata -INFO: Converting local name ustm of variable surface_friction_velocity_drag from new to old metadata -INFO: Converting local name cnvprcp of variable cumulative_lwe_thickness_of_convective_precipitation_amount from new to old metadata -INFO: Converting local name imfdeepcnv_samf of variable flag_for_samf_deep_convection_scheme from new to old metadata -INFO: Converting local name si of variable vertical_sigma_coordinate_for_radiation_initialization from new to old metadata -INFO: Converting local name gwdcu of variable tendency_of_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name elvmax of variable maximum_subgrid_orography from new to old metadata -INFO: Converting local name slimskin_cpl of variable sea_land_ice_mask_in from new to old metadata -INFO: Converting local name mdt of variable time_step_for_remapping_for_fast_physics from new to old metadata -INFO: Converting local name do_mynnedmf of variable do_mynnedmf from new to old metadata -INFO: Converting local name zorll of variable surface_roughness_length_over_land from new to old metadata -INFO: Converting local name nswsfci_cpl of variable instantaneous_surface_net_downward_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name do_cldice of variable mg_flag_for_cloud_ice_processes from new to old metadata -INFO: Converting local name alboldxy of variable snow_albedo_at_previous_time_step from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel) of variable graupel_mixing_ratio from new to old metadata -INFO: Converting local name rhcmax of variable maximum_critical_relative_humidity from new to old metadata -INFO: Converting local name Stateout of variable GFS_stateout_type_instance from new to old metadata -INFO: Converting local name nirbmdi of variable surface_downwelling_direct_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name radar_reset of variable flag_for_resetting_radar_reflectivity_calculation from new to old metadata -INFO: Converting local name drainncprv of variable explicit_rainfall_rate_from_previous_timestep from new to old metadata -INFO: Converting local name gflx of variable upward_heat_flux_in_soil from new to old metadata -INFO: Converting local name hflx_ocean of variable kinematic_surface_upward_sensible_heat_flux_over_ocean from new to old metadata -INFO: Converting local name nvdiff of variable number_of_vertical_diffusion_tracers from new to old metadata -INFO: Converting local name dspheat of variable flag_TKE_dissipation_heating from new to old metadata -INFO: Converting local name fhswr of variable frequency_for_shortwave_radiation from new to old metadata -INFO: Converting local name nthreads of variable omp_threads from new to old metadata -INFO: Converting local name islmsk of variable sea_land_ice_mask from new to old metadata -INFO: Converting local name ccwf of variable multiplication_factor_for_critical_cloud_workfunction from new to old metadata -INFO: Converting local name nstf_name(5) of variable vertical_temperature_average_range_upper_bound from new to old metadata -INFO: Converting local name forceq of variable moisture_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name nseasalt of variable number_of_seasalt_bins_for_diagnostics from new to old metadata -INFO: Converting local name gasvmr(:,:,2) of variable volume_mixing_ratio_n2o from new to old metadata -INFO: Converting local name ctei_rml of variable grid_sensitive_critical_cloud_top_entrainment_instability_criteria from new to old metadata -INFO: Converting local name sfc_wts of variable weights_for_stochastic_surface_physics_perturbation from new to old metadata -INFO: Converting local name oc of variable convexity_of_subgrid_orography from new to old metadata -INFO: Converting local name ep1d of variable surface_upward_potential_latent_heat_flux from new to old metadata -INFO: Converting local name u10mmax of variable maximum_x_wind_at_10m from new to old metadata -INFO: Converting local name v10m of variable y_wind_at_10m from new to old metadata -INFO: Converting local name nca of variable number_of_independent_cellular_automata from new to old metadata -INFO: Converting local name rtmassxy of variable fine_root_mass from new to old metadata -INFO: Converting local name ffmm_ocean of variable Monin_Obukhov_similarity_function_for_momentum_over_ocean from new to old metadata -INFO: Converting local name pertlai of variable magnitude_of_perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name mg_ncnst of variable mg_drop_concentration_constant from new to old metadata -INFO: Converting local name pgcon_shal of variable momentum_transport_reduction_factor_pgf_shallow_convection from new to old metadata -INFO: Converting local name edmf_qc of variable emdf_updraft_cloud_water from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_graupel) of variable tendency_of_graupel_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name acvt of variable largest_cloud_top_vertical_index_encountered_thus_far from new to old metadata -INFO: Converting local name cmm of variable surface_drag_wind_speed_for_momentum_in_air from new to old metadata -INFO: Converting local name dt_cool of variable sub_layer_cooling_amount from new to old metadata -INFO: Converting local name qc_r of variable cloud_liquid_water_mixing_ratio from new to old metadata -INFO: Converting local name ral_ts of variable time_scale_for_rayleigh_damping from new to old metadata -INFO: Converting local name GFS_diag_type of variable GFS_diag_type from new to old metadata -INFO: Converting local name dnirdfi_cpl of variable instantaneous_surface_downwelling_diffuse_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name chh_ice of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name flipv of variable flag_flip from new to old metadata -INFO: Converting local name ldiag_ugwp of variable diag_ugwp_flag from new to old metadata -INFO: Converting local name ctei_r of variable cloud_top_entrainment_instability_value from new to old metadata -INFO: Converting local name ccn_nm of variable ccn_number_concentration from new to old metadata -INFO: Converting local name edmf_ent of variable emdf_updraft_entrainment_rate from new to old metadata -INFO: Converting local name htswc of variable tendency_of_air_temperature_due_to_shortwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name phy_myj_thz0 of variable potential_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name bl_mynn_edmf of variable edmf_flag from new to old metadata -INFO: Converting local name con_rd of variable gas_constant_dry_air from new to old metadata -INFO: Converting local name qss_land of variable surface_specific_humidity_over_land from new to old metadata -INFO: Converting local name zt1d of variable perturbation_of_heat_to_momentum_roughness_length_ratio from new to old metadata -INFO: Converting local name imp_physics_zhao_carr of variable flag_for_zhao_carr_microphysics_scheme from new to old metadata -INFO: Converting local name delz of variable thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name dtsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_diag from new to old metadata -INFO: Converting local name dvsfc_fd of variable integrated_y_momentum_flux_from_form_drag from new to old metadata -INFO: Converting local name totprcpb of variable accumulated_lwe_thickness_of_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name tcr of variable cloud_phase_transition_threshold_temperature from new to old metadata -INFO: Converting local name clstp of variable convective_cloud_switch from new to old metadata -INFO: Converting local name isatmedmf_vdifq of variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name coszen of variable cosine_of_zenith_angle from new to old metadata -INFO: Converting local name nifa2d of variable tendency_of_ice_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name icy of variable flag_nonzero_sea_ice_surface_fraction from new to old metadata -INFO: Converting local name dudt of variable tendency_of_x_wind_due_to_model_physics from new to old metadata -INFO: Converting local name bl_dnfr of variable downdraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name snohf of variable snow_freezing_rain_upward_latent_heat_flux from new to old metadata -INFO: Converting local name bexp1d of variable perturbation_of_soil_type_b_parameter from new to old metadata -INFO: Converting local name faersw of variable aerosol_optical_properties_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name dtdt of variable tendency_of_air_temperature_due_to_model_physics from new to old metadata -INFO: Converting local name nvisdf_cpl of variable cumulative_surface_net_downward_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name dqsfcin_cpl of variable surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name con_p0 of variable standard_atmospheric_pressure from new to old metadata -INFO: Converting local name con_epsq of variable minimum_value_of_specific_humidity from new to old metadata -INFO: Converting local name dusfci_cpl of variable instantaneous_surface_x_momentum_flux_for_coupling from new to old metadata -INFO: Converting local name ep1d_ice of variable surface_upward_potential_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name fhour of variable forecast_time from new to old metadata -INFO: Converting local name refl_10cm of variable radar_reflectivity_10cm from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation_flipped from new to old metadata -INFO: Converting local name dspfac of variable tke_dissipative_heating_factor from new to old metadata -INFO: Converting local name wminras of variable cloud_condensed_water_ice_conversion_threshold_ras from new to old metadata -INFO: Converting local name c1_deep of variable detrainment_conversion_parameter_deep_convection from new to old metadata -INFO: Converting local name dt3dt(:,:,4) of variable cumulative_change_in_temperature_due_to_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,4) of variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name phy_myj_a1u of variable weight_for_momentum_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name iopt_stc of variable flag_for_soil_and_snow_temperature_time_stepping_option from new to old metadata -INFO: Converting local name adjvisbmd of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name icloud_bl of variable couple_sgs_clouds_to_radiation_flag from new to old metadata -INFO: Converting local name rb of variable bulk_richardson_number_at_lowest_model_level from new to old metadata -INFO: Converting local name faerlw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name phy_myj_elflx of variable kinematic_surface_latent_heat_flux from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_snow_effective_radius) of variable effective_radius_of_stratiform_cloud_snow_particle_in_um from new to old metadata -INFO: Converting local name iopt_tbot of variable flag_for_lower_boundary_soil_temperature_option from new to old metadata -INFO: Converting local name pdfflag of variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme from new to old metadata -INFO: Converting local name do_aw of variable flag_for_Arakawa_Wu_adjustment from new to old metadata -INFO: Converting local name do_tofd of variable turb_oro_form_drag_flag from new to old metadata -INFO: Converting local name dqdti of variable instantaneous_water_vapor_specific_humidity_tendency_due_to_convection from new to old metadata -INFO: Converting local name qi_r of variable cloud_ice_mixing_ratio from new to old metadata -INFO: Converting local name flag_iter of variable flag_for_iteration from new to old metadata -INFO: Converting local name CLDFRA_BL of variable subgrid_cloud_fraction_pbl from new to old metadata -INFO: Converting local name runoff of variable total_runoff from new to old metadata -INFO: Converting local name dd_mf of variable instantaneous_atmosphere_downdraft_convective_mass_flux from new to old metadata -INFO: Converting local name visdfui of variable surface_upwelling_diffuse_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name julian of variable julian_day from new to old metadata -INFO: Converting local name cd_ice of variable surface_drag_coefficient_for_momentum_in_air_over_ice from new to old metadata -INFO: Converting local name iovr_lw of variable flag_for_max_random_overlap_clouds_for_longwave_radiation from new to old metadata -INFO: Converting local name lmp of variable adjusted_vertical_level_dimension_for_radiation from new to old metadata -INFO: Converting local name kdt of variable index_of_time_step from new to old metadata -INFO: Converting local name ushfsfci of variable instantaneous_surface_upward_sensible_heat_flux_for_chemistry_coupling from new to old metadata -INFO: Converting local name rb_land of variable bulk_richardson_number_at_lowest_model_level_over_land from new to old metadata -INFO: Converting local name uustar of variable surface_friction_velocity from new to old metadata -INFO: Converting local name adjnirbmu of variable surface_upwelling_direct_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name do_mynnsfclay of variable do_mynnsfclay from new to old metadata -INFO: Converting local name zorl_ice of variable surface_roughness_length_over_ice_interstitial from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_water_vapor) of variable tendency_of_water_vapor_specific_humidity_due_to_model_physics from new to old metadata -INFO: Converting local name mol of variable theta_star from new to old metadata -INFO: Converting local name fwetxy of variable area_fraction_of_wet_canopy from new to old metadata -INFO: Converting local name phy_f2d(:,1) of variable surface_air_pressure_two_time_steps_back from new to old metadata -INFO: Converting local name topflw of variable lw_fluxes_top_atmosphere from new to old metadata -INFO: Converting local name satmedmf of variable flag_for_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name waxy of variable water_storage_in_aquifer from new to old metadata -INFO: Converting local name snow of variable lwe_thickness_of_snow_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name ivegsrc of variable vegetation_type_dataset_choice from new to old metadata -INFO: Converting local name sigmaf of variable bounded_vegetation_area_fraction from new to old metadata -INFO: Converting local name f_rain of variable fraction_of_rain_water_cloud from new to old metadata -INFO: Converting local name dkt of variable instantaneous_atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name asolfac_deep of variable aerosol_aware_parameter_deep_convection from new to old metadata -INFO: Converting local name dv3dt(:,:,2) of variable cumulative_change_in_y_wind_due_to_orographic_gravity_wave_drag from new to old metadata -INFO: Converting local name ipr of variable horizontal_index_of_printed_column from new to old metadata -INFO: Converting local name npzcappa of variable vertical_dimension_for_cappa_at_Lagrangian_surface from new to old metadata -INFO: Converting local name clam_deep of variable entrainment_rate_coefficient_deep_convection from new to old metadata -INFO: Converting local name dusfci of variable instantaneous_surface_x_momentum_flux_for_diag from new to old metadata -INFO: Converting local name cs_parm(4) of variable detrainment_and_precipitation_tunable_parameter_4_CS from new to old metadata -INFO: Converting local name levsp1 of variable vertical_dimension_plus_one from new to old metadata -INFO: Converting local name con_cp of variable specific_heat_of_dry_air_at_constant_pressure from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity from new to old metadata -INFO: Converting local name prsik(:,1) of variable dimensionless_exner_function_at_lowest_model_interface from new to old metadata -INFO: Converting local name con_csol of variable specific_heat_of_ice_at_constant_pressure from new to old metadata -INFO: Converting local name gasvmr(:,:,5) of variable volume_mixing_ratio_co from new to old metadata -INFO: Converting local name mg_ngcons of variable mg_flag_graupel_concentration_constant from new to old metadata -INFO: Converting local name acsnow of variable accumulated_water_equivalent_of_frozen_precip from new to old metadata -INFO: Converting local name levsm1 of variable vertical_dimension_minus_one from new to old metadata -INFO: Converting local name phy_myj_a1t of variable weight_for_potental_temperature_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name ntracp1 of variable number_of_tracers_plus_one from new to old metadata -INFO: Converting local name GFS_Data of variable GFS_data_type_instance_all_blocks from new to old metadata -INFO: Converting local name zol of variable surface_stability_parameter from new to old metadata -INFO: Converting local name CCPP_interstitial of variable CCPP_interstitial_type_instance from new to old metadata -INFO: Converting local name isd of variable starting_x_direction_index_domain from new to old metadata -INFO: Converting local name cplflx of variable flag_for_flux_coupling from new to old metadata -INFO: Converting local name lradar of variable flag_for_radar_reflectivity from new to old metadata -INFO: Converting local name iseed_ca of variable seed_for_random_number_generation_in_cellular_automata_scheme from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_for_convective_cloud_cover_in_phy_f3d) of variable convective_cloud_cover_in_phy_f3d from new to old metadata -INFO: Converting local name dqsfci of variable instantaneous_surface_upward_latent_heat_flux_for_diag from new to old metadata -INFO: Converting local name dxmin of variable minimum_scaling_factor_for_critical_relative_humidity from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation from new to old metadata -INFO: Converting local name tahxy of variable canopy_air_temperature from new to old metadata -INFO: Converting local name imn of variable forecast_month from new to old metadata -INFO: Converting local name evcw of variable canopy_upward_latent_heat_flux from new to old metadata -INFO: Converting local name input_nml_file of variable namelist_filename_for_internal_file_reads from new to old metadata -INFO: Converting local name raddt of variable time_step_for_radiation from new to old metadata -INFO: Converting local name dvisbmi_cpl of variable instantaneous_surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name gwdcv of variable tendency_of_y_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name evbsa of variable cumulative_soil_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cldwrk of variable cumulative_cloud_work_function from new to old metadata -INFO: Converting local name npzdelz of variable vertical_dimension_for_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name levh2o of variable vertical_dimension_of_h2o_forcing_data from new to old metadata -INFO: Converting local name ql of variable cloud_liquid_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name imp_physics_fer_hires of variable flag_for_fer_hires_microphysics_scheme from new to old metadata -INFO: Converting local name dvdt of variable tendency_of_y_wind_due_to_model_physics from new to old metadata -INFO: Converting local name dusfc_cpl of variable cumulative_surface_x_momentum_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name prsl(:,1) of variable air_pressure_at_lowest_model_layer from new to old metadata -INFO: Converting local name ktop_shallow of variable k_level_of_highest_reaching_plume from new to old metadata -INFO: Converting local name sfcfsw of variable sw_fluxes_sfc from new to old metadata -INFO: Converting local name gv0 of variable y_wind_updated_by_physics from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_water) of variable rain_water_mixing_ratio from new to old metadata -INFO: Converting local name cdq_ocean of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ocean from new to old metadata -INFO: Converting local name sfcalb(:,4) of variable surface_albedo_due_to_UV_and_VIS_diffused from new to old metadata -INFO: Converting local name gamq of variable countergradient_mixing_term_for_water_vapor from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ice_cloud_condensate) of variable ice_water_mixing_ratio from new to old metadata -INFO: Converting local name sfcalb(:,2) of variable surface_albedo_due_to_near_IR_diffused from new to old metadata -INFO: Converting local name phy_fctd of variable cloud_base_mass_flux from new to old metadata -INFO: Converting local name weasd_land of variable water_equivalent_accumulated_snow_depth_over_land from new to old metadata -INFO: Converting local name nwfa2d of variable tendency_of_water_friendly_aerosols_at_surface from new to old metadata -INFO: Converting local name GFS_Control of variable GFS_control_type_instance from new to old metadata -INFO: Converting local name nncl of variable number_of_tracers_for_cloud_condensate from new to old metadata -INFO: Converting local name olyr of variable ozone_concentration_at_layer_for_radiation from new to old metadata -INFO: Converting local name tg3 of variable deep_soil_temperature from new to old metadata -INFO: Converting local name Radtend of variable GFS_radtend_type_instance from new to old metadata -INFO: Converting local name sinlat of variable sine_of_latitude from new to old metadata -INFO: Converting local name sppt_wts of variable weights_for_stochastic_sppt_perturbation_flipped from new to old metadata -INFO: Converting local name ng of variable number_of_ghost_zones from new to old metadata -INFO: Converting local name phil of variable geopotential from new to old metadata -INFO: Converting local name flag_frsoil of variable flag_for_frozen_soil_physics from new to old metadata -INFO: Converting local name faersw(:,:,:,2) of variable aerosol_single_scattering_albedo_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name qc of variable cloud_fraction_at_Lagrangian_surface from new to old metadata -INFO: Converting local name do_sfcperts of variable flag_for_stochastic_surface_perturbations from new to old metadata -INFO: Converting local name betas_deep of variable downdraft_fraction_reaching_surface_over_ocean_deep_convection from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_rain_number_concentration) of variable rain_number_concentration from new to old metadata -INFO: Converting local name ifd of variable index_of_dtlm_start from new to old metadata -INFO: Converting local name area of variable cell_area_for_fast_physics from new to old metadata -INFO: Converting local name trans_trac of variable flag_for_convective_transport_of_tracers from new to old metadata -INFO: Converting local name isatmedmf of variable choice_of_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name old_monin of variable flag_for_old_PBL_scheme from new to old metadata -INFO: Converting local name cplchm of variable flag_for_chemistry_coupling from new to old metadata -INFO: Converting local name raincprv of variable lwe_thickness_of_convective_precipitation_amount_from_previous_timestep from new to old metadata -INFO: Converting local name u1 of variable x_wind_at_lowest_model_layer_for_diag from new to old metadata -INFO: Converting local name gw_dvdt of variable tendency_of_y_wind_due_to_ugwp from new to old metadata -INFO: Converting local name dtsfc1 of variable instantaneous_surface_upward_sensible_heat_flux from new to old metadata -INFO: Converting local name gasvmr(:,:,9) of variable volume_mixing_ratio_ccl4 from new to old metadata -INFO: Converting local name semis_ice of variable surface_longwave_emissivity_over_ice_interstitial from new to old metadata -INFO: Converting local name zmtb of variable time_integral_of_height_of_mountain_blocking from new to old metadata -INFO: Converting local name dtauy2d_fd of variable y_momentum_tendency_from_form_drag from new to old metadata -INFO: Converting local name lakefrac of variable lake_area_fraction from new to old metadata -INFO: Converting local name do_myjpbl of variable do_myjpbl from new to old metadata -INFO: Converting local name sncovr of variable surface_snow_area_fraction_over_land from new to old metadata -INFO: Converting local name spd10max of variable maximum_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name faerlw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_longwave_bands_01_16 from new to old metadata -INFO: Converting local name adjsfculw_ocean of variable surface_upwelling_longwave_flux_over_ocean_interstitial from new to old metadata -INFO: Converting local name nscfshoc of variable index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d from new to old metadata -INFO: Converting local name qv_r of variable humidity_mixing_ratio from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_vapor) of variable water_vapor_specific_humidity_updated_by_physics from new to old metadata -INFO: Converting local name lsnow_lsm of variable snow_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name dv3dt_ngw of variable time_integral_of_change_in_y_wind_due_to_nonstationary_gravity_wave from new to old metadata -INFO: Converting local name tlyr of variable air_temperature_at_layer_for_radiation from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_turbulent_kinetic_energy) of variable turbulent_kinetic_energy from new to old metadata -INFO: Converting local name h2opl of variable h2o_forcing from new to old metadata -INFO: Converting local name smc of variable volume_fraction_of_soil_moisture from new to old metadata -INFO: Converting local name latr of variable number_of_latitude_points from new to old metadata -INFO: Converting local name crick_proof of variable flag_for_CRICK_proof_cloud_water from new to old metadata -INFO: Converting local name ssem of variable instantaneous_seasalt_emission_flux from new to old metadata -INFO: Converting local name xlai1d of variable perturbation_of_leaf_area_index from new to old metadata -INFO: Converting local name tdoms of variable dominant_snow_type from new to old metadata -INFO: Converting local name canopy of variable canopy_water_amount from new to old metadata -INFO: Converting local name dtauy2d_ss of variable y_momentum_tendency_from_small_scale_gwd from new to old metadata -INFO: Converting local name forcet of variable temperature_tendency_due_to_dynamics from new to old metadata -INFO: Converting local name snowmt of variable surface_snow_melt from new to old metadata -INFO: Converting local name ttendlim of variable limit_for_temperature_tendency_for_microphysics from new to old metadata -INFO: Converting local name clouds(:,:,6) of variable cloud_rain_water_path from new to old metadata -INFO: Converting local name sigmafrac of variable convective_updraft_area_fraction from new to old metadata -INFO: Converting local name tau_tofd of variable instantaneous_momentum_flux_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ice_friendly_aerosols) of variable ice_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name nsswr of variable number_of_timesteps_between_shortwave_radiation_calls from new to old metadata -INFO: Converting local name dq3dt(:,:,8) of variable cumulative_change_in_ozone_concentration_due_to_temperature from new to old metadata -INFO: Converting local name stress_ice of variable surface_wind_stress_over_ice from new to old metadata -INFO: Converting local name is of variable starting_x_direction_index from new to old metadata -INFO: Converting local name sbsno of variable snow_deposition_sublimation_upward_latent_heat_flux from new to old metadata -INFO: Converting local name cnvprcpb of variable cumulative_lwe_thickness_of_convective_precipitation_amount_in_bucket from new to old metadata -INFO: Converting local name rdlai of variable flag_for_reading_leaf_area_index_from_input from new to old metadata -INFO: Converting local name phy_f3d(:,:,4) of variable water_vapor_specific_humidity_at_previous_time_step from new to old metadata -INFO: Converting local name area of variable cell_area from new to old metadata -INFO: Converting local name con_eps of variable ratio_of_dry_air_to_water_vapor_gas_constants from new to old metadata -INFO: Converting local name edmf_a of variable emdf_updraft_area from new to old metadata -INFO: Converting local name dusfc1 of variable instantaneous_surface_x_momentum_flux from new to old metadata -INFO: Converting local name qlcn of variable mass_fraction_of_convective_cloud_liquid_water from new to old metadata -INFO: Converting local name fh2_land of variable Monin_Obukhov_similarity_function_for_heat_at_2m_over_land from new to old metadata -INFO: Converting local name tprcp_land of variable nonnegative_lwe_thickness_of_precipitation_amount_on_dynamics_timestep_over_land from new to old metadata -INFO: Converting local name chh_land of variable surface_drag_mass_flux_for_heat_and_moisture_in_air_over_land from new to old metadata -INFO: Converting local name dt3dt(:,:,1) of variable cumulative_change_in_temperature_due_to_longwave_radiation from new to old metadata -INFO: Converting local name nfracseed of variable cellular_automata_seed_probability from new to old metadata -INFO: Converting local name cwm of variable total_cloud_condensate_mixing_ratio_updated_by_physics from new to old metadata -INFO: Converting local name u10max of variable maximum_u_wind_at_10m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name dvsfc_ss of variable integrated_y_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name smcref2 of variable threshold_volume_fraction_of_condensed_water_in_soil from new to old metadata -INFO: Converting local name kcnv of variable flag_deep_convection from new to old metadata -INFO: Converting local name keepsmfr of variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model from new to old metadata -INFO: Converting local name frain of variable dynamics_to_physics_timestep_ratio from new to old metadata -INFO: Converting local name debug of variable flag_debug from new to old metadata -INFO: Converting local name qrn of variable local_rain_water_mixing_ratio from new to old metadata -INFO: Converting local name tsfc_ocean of variable surface_skin_temperature_over_ocean_interstitial from new to old metadata -INFO: Converting local name levr of variable number_of_vertical_layers_for_radiation_calculations from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_graupel_number_concentration) of variable graupel_number_concentration from new to old metadata -INFO: Converting local name bl_upfr of variable updraft_fraction_in_boundary_layer_mass_flux_scheme from new to old metadata -INFO: Converting local name nsfcpert of variable number_of_surface_perturbations from new to old metadata -INFO: Converting local name evpco of variable coefficient_for_evaporation_of_rainfall from new to old metadata -INFO: Converting local name iems of variable flag_for_surface_emissivity_control from new to old metadata -INFO: Converting local name dlwsfc of variable cumulative_surface_downwelling_longwave_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name cimin of variable minimum_sea_ice_concentration from new to old metadata -INFO: Converting local name zs of variable depth_of_soil_levels_for_land_surface_model from new to old metadata -INFO: Converting local name fm10_land of variable Monin_Obukhov_similarity_function_for_momentum_at_10m_over_land from new to old metadata -INFO: Converting local name lsm_noahmp of variable flag_for_noahmp_land_surface_scheme from new to old metadata -INFO: Converting local name cs_parm(1) of variable updraft_velocity_tunable_parameter_1_CS from new to old metadata -INFO: Converting local name z_c of variable sub_layer_cooling_thickness from new to old metadata -INFO: Converting local name rainc of variable lwe_thickness_of_convective_precipitation_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name do_cnvgwd of variable flag_for_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name nlunit of variable iounit_namelist from new to old metadata -INFO: Converting local name gw_dtdt of variable tendency_of_air_temperature_due_to_ugwp from new to old metadata -INFO: Converting local name phy_myj_vz0 of variable v_wind_component_at_viscous_sublayer_top from new to old metadata -INFO: Converting local name dusfc_ss of variable integrated_x_momentum_flux_from_small_scale_gwd from new to old metadata -INFO: Converting local name iaerclm of variable flag_for_aerosol_input_MG_radiation from new to old metadata -INFO: Converting local name reset of variable flag_reset_maximum_hourly_fields from new to old metadata -INFO: Converting local name idat of variable date_and_time_at_model_initialization from new to old metadata -INFO: Converting local name ntchmdiag of variable number_of_chemical_tracers_for_diagnostics from new to old metadata -INFO: Converting local name rho_h2o of variable density_of_fresh_water from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_ozone) of variable ozone_mixing_ratio from new to old metadata -INFO: Converting local name qv of variable water_vapor_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name adjnirdfd of variable surface_downwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name ca_global of variable flag_for_global_cellular_automata from new to old metadata -INFO: Converting local name landfrac of variable land_area_fraction from new to old metadata -INFO: Converting local name iopt_btr of variable flag_for_soil_moisture_factor_stomatal_resistance_option from new to old metadata -INFO: Converting local name cqs2 of variable surface_exchange_coefficient_for_moisture_at_2m from new to old metadata -INFO: Converting local name snohfa of variable cumulative_snow_freezing_rain_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name nvisbm_cpl of variable cumulative_surface_net_downward_direct_ultraviolet_and_visible_shortwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name GFS_sfcprop_type of variable GFS_sfcprop_type from new to old metadata -INFO: Converting local name oz_phys of variable flag_for_ozone_physics from new to old metadata -INFO: Converting local name rhowater of variable liquid_water_density from new to old metadata -INFO: Converting local name zsnsoxy of variable layer_bottom_depth_from_snow_surface from new to old metadata -INFO: Converting local name nthresh of variable threshold_for_perturbed_vertical_velocity from new to old metadata -INFO: Converting local name phy_f3d(:,:,1) of variable air_temperature_two_time_steps_back from new to old metadata -INFO: Converting local name gq0(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name wetness of variable normalized_soil_wetness_for_land_surface_model from new to old metadata -INFO: Converting local name v10mi_cpl of variable instantaneous_y_wind_at_10m_for_coupling from new to old metadata -INFO: Converting local name rh02min of variable minimum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name nf_aelw of variable number_of_aerosol_output_fields_for_longwave_radiation from new to old metadata -INFO: Converting local name isubc_sw of variable flag_for_sw_clouds_without_sub_grid_approximation from new to old metadata -INFO: Converting local name gq0(:,:,index_for_rain_number_concentration) of variable rain_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name dvsfc1 of variable instantaneous_surface_y_momentum_flux from new to old metadata -INFO: Converting local name nirdfdi of variable surface_downwelling_diffuse_near_infrared_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name isatmedmf_vdif of variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL from new to old metadata -INFO: Converting local name fprcp of variable number_of_frozen_precipitation_species from new to old metadata -INFO: Converting local name tsurf_land of variable surface_skin_temperature_after_iteration_over_land from new to old metadata -INFO: Converting local name kd of variable vertical_index_difference_between_inout_and_local from new to old metadata -INFO: Converting local name w_0 of variable coefficient_w_0 from new to old metadata -INFO: Converting local name solcon of variable solar_constant from new to old metadata -INFO: Converting local name gq0(:,:,index_for_snow_number_concentration) of variable snow_number_concentration_updated_by_physics from new to old metadata -INFO: Converting local name bl_mynn_tkebudget of variable tke_budget from new to old metadata -INFO: Converting local name xu of variable diurnal_thermocline_layer_x_current from new to old metadata -INFO: Converting local name bl_mynn_tkeadvect of variable tke_advect from new to old metadata -INFO: Converting local name hflx_ice of variable kinematic_surface_upward_sensible_heat_flux_over_ice from new to old metadata -INFO: Converting local name smcwlt2 of variable volume_fraction_of_condensed_water_in_soil_at_wilting_point from new to old metadata -INFO: Converting local name imfdeepcnv of variable flag_for_mass_flux_deep_convection_scheme from new to old metadata -INFO: Converting local name ntchm of variable number_of_chemical_tracers from new to old metadata -INFO: Converting local name ncpl of variable local_condesed_water_number_concentration from new to old metadata -INFO: Converting local name vvl of variable omega from new to old metadata -INFO: Converting local name xkzminv of variable atmosphere_heat_diffusivity_background_maximum from new to old metadata -INFO: Converting local name snowc of variable surface_snow_area_fraction from new to old metadata -INFO: Converting local name phy_f3d(:,:,index_of_subgrid_scale_cloud_fraction_from_shoc_in_phy_f3d) of variable subgrid_scale_cloud_fraction_from_shoc from new to old metadata -INFO: Converting local name du3dt(:,:,4) of variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag from new to old metadata -INFO: Converting local name jcap of variable number_of_spectral_wave_trancation_for_sas from new to old metadata -INFO: Converting local name cd_ocean of variable surface_drag_coefficient_for_momentum_in_air_over_ocean from new to old metadata -INFO: Converting local name vfrac of variable vegetation_area_fraction from new to old metadata -INFO: Converting local name dvdftra of variable tendency_of_vertically_diffused_tracer_concentration from new to old metadata -INFO: Converting local name npzp1 of variable vertical_dimension_for_fast_physics_plus_one from new to old metadata -INFO: Converting local name duem of variable instantaneous_dust_emission_flux from new to old metadata -INFO: Converting local name prslrd0 of variable pressure_cutoff_for_rayleigh_damping from new to old metadata -INFO: Converting local name q2m of variable specific_humidity_at_2m from new to old metadata -INFO: Converting local name chs2 of variable surface_exchange_coefficient_for_heat_at_2m from new to old metadata -INFO: Converting local name lfmassxy of variable leaf_mass from new to old metadata -INFO: Converting local name nnirbmi_cpl of variable instantaneous_surface_net_downward_direct_near_infrared_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name rainp of variable tendency_of_rain_water_mixing_ratio_due_to_microphysics from new to old metadata -INFO: Converting local name ud_mf of variable instantaneous_atmosphere_updraft_convective_mass_flux from new to old metadata -INFO: Converting local name dudt_tms of variable instantaneous_change_in_x_wind_due_to_turbulent_orographic_form_drag from new to old metadata -INFO: Converting local name mg3_as_mg2 of variable flag_mg3_as_mg2 from new to old metadata -INFO: Converting local name htlw0 of variable tendency_of_air_temperature_due_to_longwave_heating_assuming_clear_sky_on_radiation_time_step from new to old metadata -INFO: Converting local name w_d of variable coefficient_w_d from new to old metadata -INFO: Converting local name shdmax of variable maximum_vegetation_area_fraction from new to old metadata -INFO: Converting local name iccn of variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics from new to old metadata -INFO: Converting local name htlwc of variable tendency_of_air_temperature_due_to_longwave_heating_on_radiation_time_step from new to old metadata -INFO: Converting local name scmpsw of variable components_of_surface_downward_shortwave_fluxes from new to old metadata -INFO: Converting local name tgrs(:,1) of variable air_temperature_at_lowest_model_layer from new to old metadata -INFO: Converting local name cmxy of variable surface_drag_coefficient_for_momentum_for_noahmp from new to old metadata -INFO: Converting local name snowd_land of variable surface_snow_thickness_water_equivalent_over_land from new to old metadata -INFO: Converting local name clouds(:,:,5) of variable mean_effective_radius_for_ice_cloud from new to old metadata -INFO: Converting local name xz of variable diurnal_thermocline_layer_thickness from new to old metadata -INFO: Converting local name tsfg of variable surface_ground_temperature_for_radiation from new to old metadata -INFO: Converting local name dkt of variable atmosphere_heat_diffusivity from new to old metadata -INFO: Converting local name pgcon_deep of variable momentum_transport_reduction_factor_pgf_deep_convection from new to old metadata -INFO: Converting local name wind10mmax of variable maximum_wind_at_10m from new to old metadata -INFO: Converting local name slopetype of variable surface_slope_classification from new to old metadata -INFO: Converting local name Intdiag of variable GFS_diag_type_instance from new to old metadata -INFO: Converting local name mg_nccons of variable mg_flag_drop_concentration_constant from new to old metadata -INFO: Converting local name adjvisdfd of variable surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_snow_water) of variable tendency_of_snow_water_mixing_ratio_due_to_model_physics from new to old metadata -INFO: Converting local name nlwsfc_cpl of variable cumulative_surface_net_downward_longwave_flux_for_coupling_multiplied_by_timestep from new to old metadata -INFO: Converting local name clouds(:,:,9) of variable mean_effective_radius_for_snow_flake from new to old metadata -INFO: Converting local name con_cvap of variable specific_heat_of_water_vapor_at_constant_pressure from new to old metadata -INFO: Converting local name drydep of variable instantaneous_dry_deposition from new to old metadata -INFO: Converting local name semis_ocean of variable surface_longwave_emissivity_over_ocean_interstitial from new to old metadata -INFO: Converting local name master of variable mpi_root from new to old metadata -INFO: Converting local name gamt of variable countergradient_mixing_term_for_temperature from new to old metadata -INFO: Converting local name redrag of variable flag_for_reduced_drag_coefficient_over_sea from new to old metadata -INFO: Converting local name gq0(:,:,index_for_ozone) of variable ozone_concentration_updated_by_physics from new to old metadata -INFO: Converting local name do_skeb of variable flag_for_stochastic_skeb_option from new to old metadata -INFO: Converting local name qg_r of variable mass_weighted_rime_factor_mixing_ratio from new to old metadata -INFO: Converting local name min_seaice of variable sea_ice_minimum from new to old metadata -INFO: Converting local name betal_deep of variable downdraft_fraction_reaching_surface_over_land_deep_convection from new to old metadata -INFO: Converting local name alvwf of variable mean_vis_albedo_with_weak_cosz_dependency from new to old metadata -INFO: Converting local name do_gwd of variable flag_for_gravity_wave_drag from new to old metadata -INFO: Converting local name nf_aesw of variable number_of_aerosol_output_fields_for_shortwave_radiation from new to old metadata -INFO: Converting local name avg_max_length of variable time_interval_for_maximum_hourly_fields from new to old metadata -INFO: Converting local name tdomzr of variable dominant_freezing_rain_type from new to old metadata -INFO: Converting local name toticeb of variable accumulated_lwe_thickness_of_ice_amount_in_bucket from new to old metadata -INFO: Converting local name isppt_deep of variable flag_for_combination_of_sppt_with_isppt_deep from new to old metadata -INFO: Converting local name ice of variable lwe_thickness_of_ice_amount_on_dynamics_timestep from new to old metadata -INFO: Converting local name dq3dt(:,:,9) of variable cumulative_change_in_ozone_concentration_due_to_overhead_ozone_column from new to old metadata -INFO: Converting local name lsidea of variable flag_idealized_physics from new to old metadata -INFO: Converting local name ico2 of variable flag_for_using_prescribed_global_mean_co2_value from new to old metadata -INFO: Converting local name evap_ice of variable kinematic_surface_upward_latent_heat_flux_over_ice from new to old metadata -INFO: Converting local name do_awdd of variable flag_arakawa_wu_downdraft from new to old metadata -INFO: Converting local name hetfrz_classnuc of variable mg_flag_for_heterogeneous_freezing from new to old metadata -INFO: Converting local name mpiroot of variable mpi_root_for_fast_physics from new to old metadata -INFO: Converting local name dq3dt(:,:,4) of variable cumulative_change_in_water_vapor_specific_humidity_due_to_microphysics from new to old metadata -INFO: Converting local name GFS_coupling_type of variable GFS_coupling_type from new to old metadata -INFO: Converting local name psurfi_cpl of variable instantaneous_surface_air_pressure_for_coupling from new to old metadata -INFO: Converting local name xkzm_h of variable atmosphere_heat_diffusivity_background from new to old metadata -INFO: Converting local name rh02max of variable maximum_relative_humidity_at_2m_over_maximum_hourly_time_interval from new to old metadata -INFO: Converting local name tmpmax of variable maximum_temperature_at_2m from new to old metadata -INFO: Converting local name fscav of variable fraction_of_tracer_scavenged from new to old metadata -INFO: Converting local name ntiwx of variable index_for_ice_cloud_condensate_vertical_diffusion_tracer from new to old metadata -INFO: Converting local name gasvmr(:,:,4) of variable volume_mixing_ratio_o2 from new to old metadata -INFO: Converting local name dpt2m of variable dewpoint_temperature_at_2m from new to old metadata -INFO: Converting local name mg_do_liq_liu of variable mg_flag_for_liu_liquid_treatment from new to old metadata -INFO: Converting local name ffhh_land of variable Monin_Obukhov_similarity_function_for_heat_over_land from new to old metadata -INFO: Converting local name crtrh(3) of variable critical_relative_humidity_at_top_of_atmosphere from new to old metadata -INFO: Converting local name smcwtdxy of variable soil_water_content_between_soil_bottom_and_water_table from new to old metadata -INFO: Converting local name visbmdi of variable surface_downwelling_direct_ultraviolet_and_visible_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name cdq_ice of variable surface_drag_coefficient_for_heat_and_moisture_in_air_over_ice from new to old metadata -INFO: Converting local name adjnirdfu of variable surface_upwelling_diffuse_near_infrared_shortwave_flux from new to old metadata -INFO: Converting local name wcbmax of variable maximum_updraft_velocity_at_cloud_base from new to old metadata -INFO: Converting local name tsflw of variable surface_midlayer_air_temperature_in_longwave_radiation from new to old metadata -INFO: Converting local name asolfac_shal of variable aerosol_aware_parameter_shallow_convection from new to old metadata -INFO: Converting local name gabsbdlw_ocean of variable surface_downwelling_longwave_flux_absorbed_by_ground_over_ocean from new to old metadata -INFO: Converting local name de_lgth of variable cloud_decorrelation_length from new to old metadata -INFO: Converting local name GFS_interstitial_type of variable GFS_interstitial_type from new to old metadata -INFO: Converting local name imap of variable map_of_block_column_number_to_global_i_index from new to old metadata -INFO: Converting local name plyr of variable air_pressure_at_layer_for_radiation_in_hPa from new to old metadata -INFO: Converting local name skip_macro of variable flag_skip_macro from new to old metadata -INFO: Converting local name tsnoxy of variable snow_temperature from new to old metadata -INFO: Converting local name sbsnoa of variable cumulative_snow_deposition_sublimation_upward_latent_heat_flux_multiplied_by_timestep from new to old metadata -INFO: Converting local name prcpmp of variable lwe_thickness_of_explicit_precipitation_amount from new to old metadata -INFO: Converting local name clcn of variable convective_cloud_volume_fraction from new to old metadata -INFO: Converting local name gt0 of variable air_temperature_updated_by_physics from new to old metadata -INFO: Converting local name gamma of variable anisotropy_of_subgrid_orography from new to old metadata -INFO: Converting local name uconvtend of variable tendency_of_x_wind_due_to_deep_convection_for_coupling_on_physics_timestep from new to old metadata -INFO: Converting local name dswsfci_cpl of variable instantaneous_surface_downwelling_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name delp of variable pressure_thickness_at_Lagrangian_surface from new to old metadata -INFO: Converting local name lsm_ruc of variable flag_for_ruc_land_surface_scheme from new to old metadata -INFO: Converting local name dt_mf of variable instantaneous_atmosphere_detrainment_convective_mass_flux from new to old metadata -INFO: Converting local name d_conv of variable free_convection_layer_thickness from new to old metadata -INFO: Converting local name nlwsfci_cpl of variable instantaneous_surface_net_downward_longwave_flux_for_coupling from new to old metadata -INFO: Converting local name levs of variable vertical_dimension from new to old metadata -INFO: Converting local name shum_wts of variable weights_for_stochastic_shum_perturbation from new to old metadata -INFO: Converting local name dswsfci of variable surface_downwelling_shortwave_flux from new to old metadata -INFO: Converting local name do_ysu of variable flag_for_ysu from new to old metadata -INFO: Converting local name q_con of variable cloud_condensed_water_specific_humidity_at_Lagrangian_surface from new to old metadata -INFO: Converting local name phy_f3d(:,:,2) of variable water_vapor_specific_humidity_two_time_steps_back from new to old metadata -INFO: Converting local name tref of variable sea_surface_reference_temperature from new to old metadata -INFO: Converting local name faersw(:,:,:,3) of variable aerosol_asymmetry_parameter_for_shortwave_bands_01_16 from new to old metadata -INFO: Converting local name ie of variable ending_x_direction_index from new to old metadata -INFO: Converting local name qgrs(:,:,index_for_water_friendly_aerosols) of variable water_friendly_aerosol_number_concentration from new to old metadata -INFO: Converting local name dugwd of variable time_integral_of_x_stress_due_to_gravity_wave_drag from new to old metadata -INFO: Converting local name ntot3d of variable number_of_fields_in_phyf3d from new to old metadata -INFO: Converting local name GFS_data_type of variable GFS_data_type from new to old metadata -INFO: Converting local name graupelprv of variable lwe_thickness_of_graupel_amount_from_previous_timestep from new to old metadata -INFO: Converting local name nstf_name(4) of variable vertical_temperature_average_range_lower_bound from new to old metadata -INFO: Converting local name kind_dyn of variable kind_dyn from new to old metadata -INFO: Converting local name acv of variable accumulated_lwe_thickness_of_convective_precipitation_amount_cnvc90 from new to old metadata -INFO: Converting local name lsoil_lsm of variable soil_vertical_dimension_for_land_surface_model from new to old metadata -INFO: Converting local name phy_myj_chkqlm of variable surface_layer_evaporation_switch from new to old metadata -INFO: Converting local name dtf of variable time_step_for_dynamics from new to old metadata -INFO: Converting local name dqsfci_cpl of variable instantaneous_surface_upward_latent_heat_flux_for_coupling from new to old metadata -INFO: Converting local name mg_do_hail of variable mg_flag_for_hail from new to old metadata -INFO: Converting local name iopt_sfc of variable flag_for_surface_layer_drag_coefficient_option from new to old metadata -INFO: Converting local name dqdt(:,:,index_for_ice_cloud_number_concentration) of variable tendency_of_ice_number_concentration_due_to_model_physics from new to old metadata -INFO: Converting local name kind_LOGICAL of variable kind_LOGICAL from new to old metadata -INFO: Converting local name hybedmf of variable flag_for_hedmf from new to old metadata -INFO: Converting local name dvisdfi_cpl of variable instantaneous_surface_downwelling_diffuse_ultraviolet_and_visible_shortwave_flux_for_coupling from new to old metadata -INFO: Converting local name exch_h of variable atmosphere_heat_diffusivity_for_mynnpbl from new to old metadata -INFO: Converting local name z01d of variable perturbation_of_momentum_roughness_length from new to old metadata -INFO: Converting local name prevst of variable temperature_from_previous_timestep from new to old metadata -INFO: Converting local name tracers_total of variable number_of_total_tracers from new to old metadata -INFO: Converting local name wind of variable wind_speed_at_lowest_model_layer from new to old metadata -INFO: Converting local name hprime of variable statistical_measures_of_subgrid_orography from new to old metadata -INFO: Converting local name oz_coeffp5 of variable number_of_coefficients_in_ozone_forcing_data_plus_five from new to old metadata -INFO: Converting local name tvxy of variable vegetation_temperature from new to old metadata -INFO: Converting local name ncps of variable local_snow_number_concentration from new to old metadata -INFO: Converting local name zlvl of variable height_above_ground_at_lowest_model_layer from new to old metadata -INFO: Converting local name restart of variable flag_for_restart from new to old metadata -INFO: Converting local name con_tice of variable freezing_point_temperature_of_seawater from new to old metadata -INFO: Converting local name sfcnsw of variable surface_net_downwelling_shortwave_flux_on_radiation_time_step from new to old metadata -INFO: Converting local name tau_mtb of variable time_integral_of_momentum_flux_due_to_mountain_blocking_drag from new to old metadata -INFO: Metadata table for model FV3 written to tests/build_fv3_9/FV3/ccpp/physics/CCPP_VARIABLES_FV3.html -INFO: Parsing metadata tables in physics scheme files ... -INFO: Parsed tables in scheme rayleigh_damp -INFO: Parsed tables in scheme GFS_surface_composites_pre -INFO: Parsed tables in scheme GFS_surface_composites_inter -INFO: Parsed tables in scheme GFS_surface_composites_post -INFO: Parsed tables in scheme rrtmg_sw -INFO: Parsed tables in scheme sfc_ocean -INFO: Parsed tables in scheme gwdc_pre -INFO: Parsed tables in scheme gwdc -INFO: Parsed tables in scheme gwdc_post -INFO: Parsed tables in scheme cu_gf_driver_pre -INFO: Parsed tables in scheme gfdl_cloud_microphys -INFO: Parsed tables in scheme GFS_time_vary_pre -INFO: Parsed tables in scheme GFS_rrtmg_setup -INFO: Parsed tables in scheme zhaocarr_gscond -INFO: Parsed tables in scheme ysuvdif -INFO: Parsed tables in scheme rrtmg_sw_post -INFO: Parsed tables in scheme GFS_SCNV_generic_pre -INFO: Parsed tables in scheme GFS_SCNV_generic_post -INFO: Parsed tables in scheme GFS_rrtmg_pre -INFO: Parsed tables in scheme sfc_sice -INFO: Parsed tables in scheme samfdeepcnv -INFO: Parsed tables in scheme satmedmfvdif -INFO: Parsed tables in scheme mynnrad_post -INFO: Parsed tables in scheme cu_gf_driver_post -INFO: Parsed tables in scheme cs_conv_aw_adj -INFO: Parsed tables in scheme GFS_phys_time_vary -INFO: Parsed tables in scheme mp_thompson_post -INFO: Parsed tables in scheme GFS_suite_interstitial_rad_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_phys_reset -INFO: Parsed tables in scheme GFS_suite_interstitial_1 -INFO: Parsed tables in scheme GFS_suite_interstitial_2 -INFO: Parsed tables in scheme GFS_suite_stateout_reset -INFO: Parsed tables in scheme GFS_suite_stateout_update -INFO: Parsed tables in scheme GFS_suite_interstitial_3 -INFO: Parsed tables in scheme GFS_suite_interstitial_4 -INFO: Parsed tables in scheme GFS_suite_interstitial_5 -INFO: Parsed tables in scheme samfshalcnv -INFO: Parsed tables in scheme zhaocarr_precpd -INFO: Parsed tables in scheme noahmpdrv -INFO: Parsed tables in scheme mp_fer_hires -INFO: Parsed tables in scheme myjpbl_wrapper -INFO: Parsed tables in scheme GFS_surface_generic_pre -INFO: Parsed tables in scheme GFS_surface_generic_post -INFO: Parsed tables in scheme cu_ntiedtke_post -INFO: Parsed tables in scheme sfc_diag -INFO: Parsed tables in scheme rrtmg_lw -INFO: Parsed tables in scheme GFS_diagtoscreen -INFO: Parsed tables in scheme GFS_interstitialtoscreen -INFO: Parsed tables in scheme GFS_abort -INFO: Parsed tables in scheme GFS_checkland -INFO: Parsed tables in scheme mynnrad_pre -INFO: Parsed tables in scheme ozphys_2015 -INFO: Parsed tables in scheme satmedmfvdifq -INFO: Parsed tables in scheme cs_conv_pre -INFO: Parsed tables in scheme cs_conv_post -INFO: Parsed tables in scheme cs_conv -INFO: Parsed tables in scheme shinhongvdif -INFO: Parsed tables in scheme h2ophys -INFO: Parsed tables in scheme rrtmg_lw_post -INFO: Parsed tables in scheme sfc_nst -INFO: Parsed tables in scheme sfc_nst_pre -INFO: Parsed tables in scheme sfc_nst_post -INFO: Parsed tables in scheme cu_ntiedtke_pre -INFO: Parsed tables in scheme cu_ntiedtke -INFO: Parsed tables in scheme cires_ugwp_post -INFO: Parsed tables in scheme hedmf -INFO: Parsed tables in scheme sfc_diff -INFO: Parsed tables in scheme mp_thompson_pre -INFO: Parsed tables in scheme sfc_diag_post -INFO: Parsed tables in scheme m_micro_pre -INFO: Parsed tables in scheme m_micro_post -INFO: Parsed tables in scheme m_micro -INFO: Parsed tables in scheme fv_sat_adj -INFO: Parsed tables in scheme GFS_surface_loop_control_part1 -INFO: Parsed tables in scheme GFS_surface_loop_control_part2 -INFO: Parsed tables in scheme shoc -INFO: Parsed tables in scheme GFS_rrtmg_post -INFO: Parsed tables in scheme GFS_GWD_generic_pre -INFO: Parsed tables in scheme GFS_GWD_generic_post -INFO: Parsed tables in scheme rrtmg_sw_pre -INFO: Parsed tables in scheme GFS_MP_generic_pre -INFO: Parsed tables in scheme GFS_MP_generic_post -INFO: Parsed tables in scheme cu_gf_driver -INFO: Parsed tables in scheme GFS_PBL_generic_pre -INFO: Parsed tables in scheme GFS_PBL_generic_post -INFO: Parsed tables in scheme hedmf_hafs -INFO: Parsed tables in scheme mp_thompson -INFO: Parsed tables in scheme rrtmg_lw_pre -INFO: Parsed tables in scheme gwdps -INFO: Parsed tables in scheme shalcnv -INFO: Parsed tables in scheme cires_ugwp -INFO: Parsed tables in scheme get_prs_fv3 -INFO: Parsed tables in scheme get_phi_fv3 -INFO: Parsed tables in scheme mynnsfc_wrapper -INFO: Parsed tables in scheme GFS_suite_ini_fini_test -INFO: Parsed tables in scheme myjsfc_wrapper -INFO: Parsed tables in scheme mynnedmf_wrapper -INFO: Parsed tables in scheme ozphys -INFO: Parsed tables in scheme lsm_ruc -INFO: Parsed tables in scheme GFS_stochastics -INFO: Parsed tables in scheme drag_suite -INFO: Parsed tables in scheme lsm_noah -INFO: Parsed tables in scheme sfc_cice -INFO: Parsed tables in scheme sascnvn -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_pre -INFO: Parsed tables in scheme lsm_ruc_sfc_sice_post -INFO: Parsed tables in scheme GFS_DCNV_generic_pre -INFO: Parsed tables in scheme GFS_DCNV_generic_post -INFO: Parsed tables in scheme cnvc90 -INFO: Parsed tables in scheme GFS_rad_time_vary -INFO: Parsed tables in scheme maximum_hourly_diagnostics -INFO: Parsed tables in scheme rascnv -INFO: Parsed tables in scheme dcyc2t3 -INFO: Parsed tables in scheme moninshoc -INFO: filtering out variable GFS_stateout_type_instance -INFO: filtering out variable accumulated_change_of_air_temperature_due_to_FA_scheme -INFO: filtering out variable accumulated_water_equivalent_of_frozen_precip -INFO: filtering out variable aerosol_number_concentration_from_gocart_aerosol_climatology -INFO: filtering out variable area_fraction_of_wet_canopy -INFO: filtering out variable atmosphere_heat_diffusivity_for_mynnpbl -INFO: filtering out variable atmosphere_heat_diffusivity_from_shoc -INFO: filtering out variable atmosphere_momentum_diffusivity_for_mynnpbl -INFO: filtering out variable baseline_surface_roughness_length -INFO: filtering out variable canopy_air_temperature -INFO: filtering out variable canopy_air_vapor_pressure -INFO: filtering out variable canopy_intercepted_ice_mass -INFO: filtering out variable canopy_intercepted_liquid_water -INFO: filtering out variable ccn_number_concentration -INFO: filtering out variable ccpp_block_number -INFO: filtering out variable cell_size -INFO: filtering out variable characteristic_grid_length_scale -INFO: filtering out variable choice_of_original_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable choice_of_updated_scale_aware_TKE_moist_EDMF_PBL -INFO: filtering out variable cloud_area_fraction -INFO: filtering out variable cloud_base_mass_flux -INFO: filtering out variable cloud_condensed_water_ice_conversion_threshold_ras -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_lowest_model_layer -INFO: filtering out variable cloud_condensed_water_mixing_ratio_at_surface -INFO: filtering out variable cloud_droplet_number_concentration -INFO: filtering out variable cloud_droplet_number_concentration_updated_by_physics -INFO: filtering out variable cloud_fraction_for_MG -INFO: filtering out variable cloud_phase_transition_denominator -INFO: filtering out variable cloud_phase_transition_threshold_temperature -INFO: filtering out variable cloud_specie_mix_flag -INFO: filtering out variable cloudpdf -INFO: filtering out variable coefficient_from_cloud_ice_to_snow_ras -INFO: filtering out variable coefficient_from_cloud_water_to_rain_ras -INFO: filtering out variable condensate_fraction_detrained_in_updraft_layers -INFO: filtering out variable conv_activity_counter -INFO: filtering out variable convective_updraft_area_fraction -INFO: filtering out variable convective_updraft_area_fraction_at_model_interfaces -INFO: filtering out variable couple_sgs_clouds_to_radiation_flag -INFO: filtering out variable cumulative_change_in_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable cumulative_change_in_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable density_of_frozen_precipitation -INFO: filtering out variable depth_of_soil_levels_for_land_surface_model -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_3_CS -INFO: filtering out variable detrainment_and_precipitation_tunable_parameter_4_CS -INFO: filtering out variable dimensionless_exner_function_at_model_interfaces -INFO: filtering out variable do_myjsfc -INFO: filtering out variable do_mynnsfclay -INFO: filtering out variable downdraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable edmf_flag -INFO: filtering out variable edmf_momentum_transport_flag -INFO: filtering out variable edmf_partition_flag -INFO: filtering out variable edmf_tke_transport_flag -INFO: filtering out variable emdf_updraft_area -INFO: filtering out variable emdf_updraft_cloud_water -INFO: filtering out variable emdf_updraft_entrainment_rate -INFO: filtering out variable emdf_updraft_theta_l -INFO: filtering out variable emdf_updraft_total_water -INFO: filtering out variable emdf_updraft_vertical_velocity -INFO: filtering out variable entrainment_efficiency_tunable_parameter_9_CS -INFO: filtering out variable equilibrium_soil_water_content -INFO: filtering out variable fa_threshold_relative_humidity_for_onset_of_condensation -INFO: filtering out variable fast_soil_pool_mass_content_of_carbon -INFO: filtering out variable fine_root_mass -INFO: filtering out variable flag_arakawa_wu_downdraft -INFO: filtering out variable flag_convective_tracer_transport -INFO: filtering out variable flag_flip -INFO: filtering out variable flag_flux_form_CS -INFO: filtering out variable flag_for_2015_ozone_physics -INFO: filtering out variable flag_for_canopy_stomatal_resistance_option -INFO: filtering out variable flag_for_dynamic_vegetation_option -INFO: filtering out variable flag_for_frozen_soil_permeability_option -INFO: filtering out variable flag_for_frozen_soil_physics -INFO: filtering out variable flag_for_ground_snow_surface_albedo_option -INFO: filtering out variable flag_for_in_ccn_forcing_for_morrison_gettelman_microphysics -INFO: filtering out variable flag_for_individual_cloud_species_advected -INFO: filtering out variable flag_for_lower_boundary_soil_temperature_option -INFO: filtering out variable flag_for_pdf_for_morrison_gettelman_microphysics_scheme -INFO: filtering out variable flag_for_precipitation_partition_option -INFO: filtering out variable flag_for_radiation_transfer_option -INFO: filtering out variable flag_for_reading_leaf_area_index_from_input -INFO: filtering out variable flag_for_resetting_radar_reflectivity_calculation -INFO: filtering out variable flag_for_restart -INFO: filtering out variable flag_for_runoff_and_groundwater_option -INFO: filtering out variable flag_for_sas_deep_convection_scheme -INFO: filtering out variable flag_for_soil_and_snow_temperature_time_stepping_option -INFO: filtering out variable flag_for_soil_moisture_factor_stomatal_resistance_option -INFO: filtering out variable flag_for_supercooled_liquid_water_option -INFO: filtering out variable flag_for_surface_layer_drag_coefficient_option -INFO: filtering out variable flag_mg3_as_mg2 -INFO: filtering out variable flag_skip_macro -INFO: filtering out variable fraction_of_cloud_top_water_scavenged -INFO: filtering out variable fraction_of_tracer_scavenged -INFO: filtering out variable gf_memory_counter -INFO: filtering out variable graupel_number_concentration_updated_by_physics -INFO: filtering out variable grav_settling -INFO: filtering out variable ground_temperature_for_noahmp -INFO: filtering out variable gwd_opt -INFO: filtering out variable h2o_forcing -INFO: filtering out variable heat_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable ice_friendly_aerosol_number_concentration -INFO: filtering out variable ice_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable ice_number_concentration -INFO: filtering out variable ice_number_concentration_updated_by_physics -INFO: filtering out variable ice_supersaturation_threshold -INFO: filtering out variable ice_water_mixing_ratio -INFO: filtering out variable in_number_concentration -INFO: filtering out variable index_for_ice_cloud_condensate_vertical_diffusion_tracer -INFO: filtering out variable integrated_x_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_x_momentum_flux_from_form_drag -INFO: filtering out variable integrated_x_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_x_momentum_flux_from_small_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_blocking_drag -INFO: filtering out variable integrated_y_momentum_flux_from_form_drag -INFO: filtering out variable integrated_y_momentum_flux_from_large_scale_gwd -INFO: filtering out variable integrated_y_momentum_flux_from_small_scale_gwd -INFO: filtering out variable k_level_of_highest_reaching_plume -INFO: filtering out variable kinematic_buoyancy_flux_from_shoc -INFO: filtering out variable kinematic_surface_latent_heat_flux -INFO: filtering out variable lake_water_storage -INFO: filtering out variable latitude_index_in_debug_printouts -INFO: filtering out variable layer_bottom_depth_from_snow_surface -INFO: filtering out variable leaf_area_index -INFO: filtering out variable leaf_mass -INFO: filtering out variable limit_for_temperature_tendency_for_microphysics -INFO: filtering out variable liquid_water_density -INFO: filtering out variable local_graupel_mixing_ratio -INFO: filtering out variable local_graupel_number_concentration -INFO: filtering out variable local_rain_number_concentration -INFO: filtering out variable local_rain_water_mixing_ratio -INFO: filtering out variable local_snow_number_concentration -INFO: filtering out variable local_snow_water_mixing_ratio -INFO: filtering out variable mass_weighted_rime_factor_updated_by_physics -INFO: filtering out variable maximum_column_heating_rate -INFO: filtering out variable maximum_mass_flux -INFO: filtering out variable maximum_updraft_velocity_at_cloud_base -INFO: filtering out variable mean_nir_albedo_with_weak_cosz_dependency -INFO: filtering out variable mean_vis_albedo_with_weak_cosz_dependency -INFO: filtering out variable mg_allow_supersat_after_sed -INFO: filtering out variable mg_autoconversion_size_threshold_ice_snow -INFO: filtering out variable mg_bergeron_efficiency_factor -INFO: filtering out variable mg_cloud_water_variance -INFO: filtering out variable mg_drop_concentration_constant -INFO: filtering out variable mg_flag_drop_concentration_constant -INFO: filtering out variable mg_flag_for_cloud_ice_processes -INFO: filtering out variable mg_flag_for_gmao_ice_formulation -INFO: filtering out variable mg_flag_for_graupel -INFO: filtering out variable mg_flag_for_hail -INFO: filtering out variable mg_flag_for_heterogeneous_freezing -INFO: filtering out variable mg_flag_for_liu_liquid_treatment -INFO: filtering out variable mg_flag_for_sb2001_autoconversion -INFO: filtering out variable mg_flag_for_uniform_subcolumns -INFO: filtering out variable mg_flag_graupel_concentration_constant -INFO: filtering out variable mg_flag_ice_concentration_constant -INFO: filtering out variable mg_graupel_concentration_constant -INFO: filtering out variable mg_ice_concentration_constant -INFO: filtering out variable mg_minimum_cloud_condensed_water_and_ice_mixing_ratio -INFO: filtering out variable mg_minimum_rh_for_ice -INFO: filtering out variable mg_time_scale_for_autoconversion_of_ice -INFO: filtering out variable mg_tuning_factor_for_alphas -INFO: filtering out variable mg_type_of_precip_fraction_method -INFO: filtering out variable minimum_value_of_specific_humidity -INFO: filtering out variable mix_total_water_flag -INFO: filtering out variable mixing_length -INFO: filtering out variable mixing_length_flag -INFO: filtering out variable moisture_from_previous_timestep -INFO: filtering out variable moisture_tendency_due_to_dynamics -INFO: filtering out variable momentum_exchange_coefficient_for_MYJ_schemes -INFO: filtering out variable mpi_comm -INFO: filtering out variable multiplication_factor_for_critical_cloud_workfunction -INFO: filtering out variable natural_log_of_h2o_forcing_data_pressure_levels -INFO: filtering out variable nondimensional_snow_age -INFO: filtering out variable normalized_soil_wetness_for_land_surface_model -INFO: filtering out variable number_of_cloud_types_CS -INFO: filtering out variable number_of_coefficients_in_h2o_forcing_data -INFO: filtering out variable number_of_frozen_precipitation_species -INFO: filtering out variable number_of_plumes -INFO: filtering out variable number_of_snow_layers -INFO: filtering out variable number_of_spectral_wave_trancation_for_sas -INFO: filtering out variable number_of_tracers_for_CS -INFO: filtering out variable number_of_tracers_plus_one -INFO: filtering out variable ozone_mixing_ratio -INFO: filtering out variable potential_temperature_at_2m -INFO: filtering out variable potential_temperature_at_viscous_sublayer_top -INFO: filtering out variable prandtl_number -INFO: filtering out variable q_prime_squared -INFO: filtering out variable rain_number_concentration_updated_by_physics -INFO: filtering out variable reciprocal_of_obukhov_length -INFO: filtering out variable shoc_flag_for_optional_surface_TKE_dissipation -INFO: filtering out variable shoc_implicit_TKE_integration_uncentering_term -INFO: filtering out variable shoc_tke_dissipatation_pressure_threshold -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter -INFO: filtering out variable shoc_tke_dissipation_tunable_parameter_near_surface -INFO: filtering out variable slow_soil_pool_mass_content_of_carbon -INFO: filtering out variable snow_albedo_at_previous_time_step -INFO: filtering out variable snow_layer_ice -INFO: filtering out variable snow_layer_liquid_water -INFO: filtering out variable snow_mass_at_previous_time_step -INFO: filtering out variable snow_number_concentration_updated_by_physics -INFO: filtering out variable snow_precipitation_rate_at_surface -INFO: filtering out variable snow_temperature -INFO: filtering out variable snow_temperature_bottom_first_layer -INFO: filtering out variable soil_temperature_for_land_surface_model -INFO: filtering out variable soil_vertical_dimension_for_land_surface_model -INFO: filtering out variable soil_water_content_between_soil_bottom_and_water_table -INFO: filtering out variable specific_heat_of_ice_at_constant_pressure -INFO: filtering out variable specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable stability_function_for_heat -INFO: filtering out variable stem_area_index -INFO: filtering out variable stem_mass -INFO: filtering out variable subgrid_cloud_fraction_pbl -INFO: filtering out variable subgrid_cloud_mixing_ratio_pbl -INFO: filtering out variable subgrid_scale_cloud_fraction_from_shoc -INFO: filtering out variable surface_condensation_mass -INFO: filtering out variable surface_drag_coefficient_for_heat_and_moisture_for_noahmp -INFO: filtering out variable surface_drag_coefficient_for_momentum_for_noahmp -INFO: filtering out variable surface_exchange_coefficient_for_heat -INFO: filtering out variable surface_exchange_coefficient_for_heat_at_2m -INFO: filtering out variable surface_exchange_coefficient_for_moisture -INFO: filtering out variable surface_exchange_coefficient_for_moisture_at_2m -INFO: filtering out variable surface_friction_velocity_drag -INFO: filtering out variable surface_latent_heat -INFO: filtering out variable surface_layer_evaporation_switch -INFO: filtering out variable surface_specific_humidity_for_MYJ_schemes -INFO: filtering out variable surface_stability_parameter -INFO: filtering out variable t_prime_q_prime -INFO: filtering out variable t_prime_squared -INFO: filtering out variable temperature_from_previous_timestep -INFO: filtering out variable temperature_tendency_due_to_dynamics -INFO: filtering out variable tendency_of_cloud_droplet_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_ice_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_ice_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_liquid_cloud_water_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_ozone_mixing_ratio_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosol_number_concentration_due_to_model_physics -INFO: filtering out variable tendency_of_water_friendly_aerosols_at_surface -INFO: filtering out variable tendency_of_water_vapor_specific_humidity_due_to_model_physics -INFO: filtering out variable tendency_of_x_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable tendency_of_y_wind_due_to_convective_gravity_wave_drag -INFO: filtering out variable theta_star -INFO: filtering out variable tke_advect -INFO: filtering out variable tke_at_mass_points -INFO: filtering out variable tke_budget -INFO: filtering out variable tke_dissipative_heating_factor -INFO: filtering out variable total_accumulated_snowfall -INFO: filtering out variable triple_point_temperature_of_water -INFO: filtering out variable turbulent_kinetic_energy_convective_transport_tracer -INFO: filtering out variable u_wind_component_at_viscous_sublayer_top -INFO: filtering out variable updraft_fraction_in_boundary_layer_mass_flux_scheme -INFO: filtering out variable updraft_velocity_tunable_parameter_1_CS -INFO: filtering out variable updraft_velocity_tunable_parameter_2_CS -INFO: filtering out variable v_wind_component_at_viscous_sublayer_top -INFO: filtering out variable vegetation_temperature -INFO: filtering out variable vertical_dimension_of_h2o_forcing_data -INFO: filtering out variable volume_fraction_of_frozen_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_soil_moisture_for_land_surface_model -INFO: filtering out variable volume_fraction_of_unfrozen_soil_moisture_for_land_surface_model -INFO: filtering out variable water_friendly_aerosol_number_concentration -INFO: filtering out variable water_friendly_aerosol_number_concentration_updated_by_physics -INFO: filtering out variable water_storage_in_aquifer -INFO: filtering out variable water_storage_in_aquifer_and_saturated_soil -INFO: filtering out variable water_table_depth -INFO: filtering out variable water_table_recharge_when_deep -INFO: filtering out variable water_table_recharge_when_shallow -INFO: filtering out variable water_vapor_mixing_ratio_at_surface -INFO: filtering out variable weight_for_momentum_at_viscous_sublayer_top -INFO: filtering out variable weight_for_potental_temperature_at_viscous_sublayer_top -INFO: filtering out variable weight_for_specific_humidity_at_viscous_sublayer_top -INFO: filtering out variable wood_mass -INFO: filtering out variable x_momentum_tendency_from_blocking_drag -INFO: filtering out variable x_momentum_tendency_from_form_drag -INFO: filtering out variable x_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable x_momentum_tendency_from_small_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_blocking_drag -INFO: filtering out variable y_momentum_tendency_from_form_drag -INFO: filtering out variable y_momentum_tendency_from_large_scale_gwd -INFO: filtering out variable y_momentum_tendency_from_small_scale_gwd -INFO: Checking optional arguments in physics schemes ... -INFO: Metadata table for model FV3 written to tests/build_fv3_9/FV3/ccpp/framework/doc/DevelopersGuide/CCPP_VARIABLES_FV3.tex -INFO: Comparing metadata for requested and provided variables ... -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_ice_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_liquid_water_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Automatic unit conversion from m to um for effective_radius_of_stratiform_cloud_snow_particle_in_um after returning from MODULE_mp_thompson SCHEME_mp_thompson SUBROUTINE_mp_thompson_run -INFO: Generating schemes makefile/cmakefile snippet ... -INFO: Added 170 schemes to tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.mk, tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.cmake, tests/build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.sh -INFO: Generating suite and group caps ... -INFO: Generating static API ccpp_static_api.F90 in tests/build_fv3_9/FV3/ccpp/physics ... -INFO: Generating caps makefile/cmakefile snippet ... -INFO: Added 11 auto-generated caps to tests/build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.mk and tests/build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.cmake -INFO: CCPP prebuild step completed successfully. -+ source build_fv3_9/FV3/ccpp/physics/CCPP_SCHEMES.sh -++ export 'CCPP_SCHEMES=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -++ CCPP_SCHEMES='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f' -+ source build_fv3_9/FV3/ccpp/physics/CCPP_CAPS.sh -++ export 'CCPP_CAPS=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -++ CCPP_CAPS='/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90' -+ source build_fv3_9/FV3/ccpp/physics/CCPP_STATIC_API.sh -++ export CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_static_api.F90 -++ CCPP_STATIC_API=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_static_api.F90 -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\N\A\M\_\p\h\y\s\=\Y* ]] -+ [[ REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y == *\W\W\3\=\Y* ]] -++ trim ' -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ local 'var= -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ var='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -++ echo -n '-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ CCPP_CMAKE_FLAGS='-DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF' -+ source /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/NEMS/src/conf/module-setup.sh.inc -++ __ms_function_name=setup__test_function__181148 -++ eval 'setup__test_function__181148() { /bin/true ; }' -+++ eval '__text="text" ; if [[ $__text =~ ^(t).* ]] ; then printf "%s" ${.sh.match[1]} ; fi' -+++ cat -++ __ms_ksh_test= -+++ eval 'if ( set | grep setup__test_function__181148 | grep -v name > /dev/null 2>&1 ) ; then echo t ; fi ' -+++ cat -++ __ms_bash_test=t -++ [[ ! -z '' ]] -++ [[ ! -z t ]] -++ __ms_shell=bash -++ [[ -d /lfs3 ]] -++ [[ -d /scratch1 ]] -++ [[ -d /gpfs/hps ]] -++ [[ -e /etc/SuSE-release ]] -++ [[ -d /dcom ]] -++ [[ -L /usrx ]] -+++ readlink /usrx -++ [[ /gpfs/dell1/usrx =~ dell ]] -++ eval module help -++ module purge -+++ /usrx/local/prod/lmod/lmod/libexec/lmod bash purge -++ eval unset 'ADVISOR_2018_DIR;' unset 'BACIO_LIB4;' unset 'BACIO_LIB8;' unset 'BACIO_SRC;' unset 'BACIO_VER;' unset 'BINARY_TYPE_HPC;' unset '__LMOD_REF_COUNT_CLASSPATH;' unset 'CLASSPATH;' unset 'CLCK_ROOT;' unset 'CMAKE_CXX_COMPILER;' unset 'CMAKE_C_COMPILER;' unset 'CMAKE_Fortran_COMPILER;' unset 'CMAKE_Platform;' unset 'COMP;' unset '__LMOD_REF_COUNT_CPATH;' unset 'CPATH;' unset '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' unset 'CPLUS_INCLUDE_PATH;' unset 'CRTM_FIX;' unset 'CRTM_INC;' unset 'CRTM_LIB;' unset 'CRTM_SRC;' unset 'CRTM_VER;' unset 'DAALROOT;' unset 'ECF_HOSTFILE;' unset 'ECF_PORT;' unset 'ECF_ROOT;' unset 'ESMFMKFILE;' unset 'G2TMPL_INC;' unset 'G2TMPL_LIB;' unset 'G2TMPL_SRC;' unset 'G2TMPL_VER;' unset 'G2_INC4;' unset 'G2_INCd;' unset 'G2_LIB4;' unset 'G2_LIBd;' unset 'G2_SRC;' unset 'G2_VER;' unset 'GDBSERVER_MIC;' unset 'GDB_CROSS;' unset 'HDF5;' unset 'HDF5_CFLAGS;' unset 'HDF5_CXXFLAGS;' unset 'HDF5_FFLAGS;' unset 'HDF5_INCLUDE;' unset 'HDF5_LDFLAGS;' unset 'HDF5_LDFLAGS_C;' unset 'HDF5_LDFLAGS_CXX;' unset 'HDF5_LDFLAGS_F;' unset '__LMOD_REF_COUNT_INFOPATH;' unset 'INFOPATH;' unset 'INSPECTOR_2018_DIR;' unset 'INTEL_LICENSE_FILE;' unset 'INTEL_PYTHONHOME;' unset 'IPPROOT;' unset 'IP_INC4;' unset 'IP_INC8;' unset 'IP_INCd;' unset 'IP_LIB4;' unset 'IP_LIB8;' unset 'IP_LIBd;' unset 'IP_SRC;' unset 'IP_VER;' unset 'I_MPI_CC;' unset 'I_MPI_CXX;' unset 'I_MPI_EXTRA_FILESYSTEM;' unset 'I_MPI_EXTRA_FILESYSTEM_LIST;' unset 'I_MPI_F77;' unset 'I_MPI_F90;' unset 'I_MPI_FC;' unset 'I_MPI_HYDRA_BOOTSTRAP;' unset 'I_MPI_HYDRA_IFACE;' unset 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' unset 'I_MPI_ROOT;' unset 'JASPER_INC;' unset 'JASPER_LIB;' unset 'JASPER_LIBDIR;' unset 'JASPER_SRC;' unset 'JASPER_VER;' unset 'KMP_AFFINITY;' unset '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' unset 'LD_LIBRARY_PATH;' unset '__LMOD_REF_COUNT_LIBRARY_PATH;' unset 'LIBRARY_PATH;' unset 'LIB_NAME;' unset 'LMOD_FAMILY_COMPILER;' unset 'LMOD_FAMILY_COMPILER_VERSION;' unset 'LMOD_FAMILY_MPI;' unset 'LMOD_FAMILY_MPI_VERSION;' unset '__LMOD_REF_COUNT_LOADEDMODULES;' unset 'LOADEDMODULES;' unset 'LSF_BINDIR;' unset 'LSF_ENVDIR;' unset 'LSF_LIBDIR;' unset 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/lmod/lmod/share/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/lmod/lmod/share/man::";' export 'MANPATH;' unset 'MKLROOT;' 'MODULEPATH="/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' unset 'MPM_LAUNCHER;' unset 'NEMSIO_INC;' unset 'NEMSIO_LIB;' unset 'NEMSIO_SRC;' unset 'NEMSIO_VER;' unset 'NETCDF;' unset 'NETCDF_CFLAGS;' unset 'NETCDF_CXX4FLAGS;' unset 'NETCDF_CXXFLAGS;' unset 'NETCDF_FFLAGS;' unset 'NETCDF_INC;' unset 'NETCDF_INCLUDE;' unset 'NETCDF_LDFLAGS;' unset 'NETCDF_LDFLAGS_C;' unset 'NETCDF_LDFLAGS_CXX;' unset 'NETCDF_LDFLAGS_CXX4;' unset 'NETCDF_LDFLAGS_F;' unset 'NETCDF_LIB;' unset 'NETCDF_ROOT;' unset '__LMOD_REF_COUNT_NLSPATH;' unset 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin";' export 'PATH;' unset 'PKG_CONFIG_PATH;' unset 'PNG_INC;' unset 'PNG_LIB;' unset 'PNG_LIB12;' unset 'PNG_LIBDIR;' unset 'PNG_LIBso;' unset 'PNG_SRC;' unset 'PNG_VER;' unset 'POST_INC;' unset 'POST_LIB;' unset 'POST_SRC;' unset 'POST_VER;' unset 'PSTLROOT;' unset 'PYTHONPATH;' unset '__LMOD_REF_COUNT_QT_PLUGIN_PATH;' unset 'QT_PLUGIN_PATH;' unset 'SP_LIB4;' unset 'SP_LIB8;' unset 'SP_LIBd;' unset 'SP_SRC;' unset 'SP_VER;' unset 'TBBROOT;' unset 'VT_ADD_LIBS;' unset 'VT_ARCH;' unset 'VT_LIB_DIR;' unset 'VT_MPI;' unset 'VT_ROOT;' unset 'VT_SLIB_DIR;' unset 'W3EMC_INC4;' unset 'W3EMC_INC8;' unset 'W3EMC_INCd;' unset 'W3EMC_LIB4;' unset 'W3EMC_LIB8;' unset 'W3EMC_LIBd;' unset 'W3EMC_SRC;' unset 'W3EMC_VER;' unset 'W3NCO_LIB4;' unset 'W3NCO_LIB8;' unset 'W3NCO_LIBd;' unset 'W3NCO_SRC;' unset 'W3NCO_VER;' unset 'XLSF_UIDDIR;' unset 'Z_INC;' unset 'Z_LIB;' unset 'Z_SRC;' unset 'Z_VER;' unset '__LMOD_REF_COUNT__LMFILES_;' unset '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' unset '_ModuleTable004_;' unset '_ModuleTable005_;' unset '_ModuleTable006_;' unset '_ModuleTable007_;' unset '_ModuleTable008_;' unset '_ModuleTable009_;' unset '_ModuleTable010_;' unset '_ModuleTable011_;' unset '_ModuleTable012_;' unset '_ModuleTable013_;' unset '_ModuleTable014_;' unset '_ModuleTable015_;' unset '_ModuleTable016_;' -+++ unset ADVISOR_2018_DIR -+++ unset BACIO_LIB4 -+++ unset BACIO_LIB8 -+++ unset BACIO_SRC -+++ unset BACIO_VER -+++ unset BINARY_TYPE_HPC -+++ unset __LMOD_REF_COUNT_CLASSPATH -+++ unset CLASSPATH -+++ unset CLCK_ROOT -+++ unset CMAKE_CXX_COMPILER -+++ unset CMAKE_C_COMPILER -+++ unset CMAKE_Fortran_COMPILER -+++ unset CMAKE_Platform -+++ unset COMP -+++ unset __LMOD_REF_COUNT_CPATH -+++ unset CPATH -+++ unset __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -+++ unset CPLUS_INCLUDE_PATH -+++ unset CRTM_FIX -+++ unset CRTM_INC -+++ unset CRTM_LIB -+++ unset CRTM_SRC -+++ unset CRTM_VER -+++ unset DAALROOT -+++ unset ECF_HOSTFILE -+++ unset ECF_PORT -+++ unset ECF_ROOT -+++ unset ESMFMKFILE -+++ unset G2TMPL_INC -+++ unset G2TMPL_LIB -+++ unset G2TMPL_SRC -+++ unset G2TMPL_VER -+++ unset G2_INC4 -+++ unset G2_INCd -+++ unset G2_LIB4 -+++ unset G2_LIBd -+++ unset G2_SRC -+++ unset G2_VER -+++ unset GDBSERVER_MIC -+++ unset GDB_CROSS -+++ unset HDF5 -+++ unset HDF5_CFLAGS -+++ unset HDF5_CXXFLAGS -+++ unset HDF5_FFLAGS -+++ unset HDF5_INCLUDE -+++ unset HDF5_LDFLAGS -+++ unset HDF5_LDFLAGS_C -+++ unset HDF5_LDFLAGS_CXX -+++ unset HDF5_LDFLAGS_F -+++ unset __LMOD_REF_COUNT_INFOPATH -+++ unset INFOPATH -+++ unset INSPECTOR_2018_DIR -+++ unset INTEL_LICENSE_FILE -+++ unset INTEL_PYTHONHOME -+++ unset IPPROOT -+++ unset IP_INC4 -+++ unset IP_INC8 -+++ unset IP_INCd -+++ unset IP_LIB4 -+++ unset IP_LIB8 -+++ unset IP_LIBd -+++ unset IP_SRC -+++ unset IP_VER -+++ unset I_MPI_CC -+++ unset I_MPI_CXX -+++ unset I_MPI_EXTRA_FILESYSTEM -+++ unset I_MPI_EXTRA_FILESYSTEM_LIST -+++ unset I_MPI_F77 -+++ unset I_MPI_F90 -+++ unset I_MPI_FC -+++ unset I_MPI_HYDRA_BOOTSTRAP -+++ unset I_MPI_HYDRA_IFACE -+++ unset I_MPI_LSF_USE_COLLECTIVE_LAUNCH -+++ unset I_MPI_ROOT -+++ unset JASPER_INC -+++ unset JASPER_LIB -+++ unset JASPER_LIBDIR -+++ unset JASPER_SRC -+++ unset JASPER_VER -+++ unset KMP_AFFINITY -+++ unset __LMOD_REF_COUNT_LD_LIBRARY_PATH -+++ unset LD_LIBRARY_PATH -+++ unset __LMOD_REF_COUNT_LIBRARY_PATH -+++ unset LIBRARY_PATH -+++ unset LIB_NAME -+++ unset LMOD_FAMILY_COMPILER -+++ unset LMOD_FAMILY_COMPILER_VERSION -+++ unset LMOD_FAMILY_MPI -+++ unset LMOD_FAMILY_MPI_VERSION -+++ unset __LMOD_REF_COUNT_LOADEDMODULES -+++ unset LOADEDMODULES -+++ unset LSF_BINDIR -+++ unset LSF_ENVDIR -+++ unset LSF_LIBDIR -+++ unset LSF_SERVERDIR -+++ __LMOD_REF_COUNT_MANPATH=/usrx/local/prod/lmod/lmod/share/man:1 -+++ export __LMOD_REF_COUNT_MANPATH -+++ MANPATH=/usrx/local/prod/lmod/lmod/share/man:: -+++ export MANPATH -+++ unset MKLROOT -+++ MODULEPATH=/usrx/local/dev/emc_rocoto/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -+++ export MODULEPATH -+++ unset MPM_LAUNCHER -+++ unset NEMSIO_INC -+++ unset NEMSIO_LIB -+++ unset NEMSIO_SRC -+++ unset NEMSIO_VER -+++ unset NETCDF -+++ unset NETCDF_CFLAGS -+++ unset NETCDF_CXX4FLAGS -+++ unset NETCDF_CXXFLAGS -+++ unset NETCDF_FFLAGS -+++ unset NETCDF_INC -+++ unset NETCDF_INCLUDE -+++ unset NETCDF_LDFLAGS -+++ unset NETCDF_LDFLAGS_C -+++ unset NETCDF_LDFLAGS_CXX -+++ unset NETCDF_LDFLAGS_CXX4 -+++ unset NETCDF_LDFLAGS_F -+++ unset NETCDF_LIB -+++ unset NETCDF_ROOT -+++ unset __LMOD_REF_COUNT_NLSPATH -+++ unset NLSPATH -+++ __LMOD_REF_COUNT_PATH='/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1' -+++ export __LMOD_REF_COUNT_PATH -+++ PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin -+++ export PATH -+++ unset PKG_CONFIG_PATH -+++ unset PNG_INC -+++ unset PNG_LIB -+++ unset PNG_LIB12 -+++ unset PNG_LIBDIR -+++ unset PNG_LIBso -+++ unset PNG_SRC -+++ unset PNG_VER -+++ unset POST_INC -+++ unset POST_LIB -+++ unset POST_SRC -+++ unset POST_VER -+++ unset PSTLROOT -+++ unset PYTHONPATH -+++ unset __LMOD_REF_COUNT_QT_PLUGIN_PATH -+++ unset QT_PLUGIN_PATH -+++ unset SP_LIB4 -+++ unset SP_LIB8 -+++ unset SP_LIBd -+++ unset SP_SRC -+++ unset SP_VER -+++ unset TBBROOT -+++ unset VT_ADD_LIBS -+++ unset VT_ARCH -+++ unset VT_LIB_DIR -+++ unset VT_MPI -+++ unset VT_ROOT -+++ unset VT_SLIB_DIR -+++ unset W3EMC_INC4 -+++ unset W3EMC_INC8 -+++ unset W3EMC_INCd -+++ unset W3EMC_LIB4 -+++ unset W3EMC_LIB8 -+++ unset W3EMC_LIBd -+++ unset W3EMC_SRC -+++ unset W3EMC_VER -+++ unset W3NCO_LIB4 -+++ unset W3NCO_LIB8 -+++ unset W3NCO_LIBd -+++ unset W3NCO_SRC -+++ unset W3NCO_VER -+++ unset XLSF_UIDDIR -+++ unset Z_INC -+++ unset Z_LIB -+++ unset Z_SRC -+++ unset Z_VER -+++ unset __LMOD_REF_COUNT__LMFILES_ -+++ unset _LMFILES_ -+++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii91c3J4L2xvY2FsL2Rldi9lbWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -+++ export _ModuleTable001_ -+++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -+++ export _ModuleTable002_ -+++ _ModuleTable_Sz_=2 -+++ export _ModuleTable_Sz_ -+++ unset _ModuleTable004_ -+++ unset _ModuleTable005_ -+++ unset _ModuleTable006_ -+++ unset _ModuleTable007_ -+++ unset _ModuleTable008_ -+++ unset _ModuleTable009_ -+++ unset _ModuleTable010_ -+++ unset _ModuleTable011_ -+++ unset _ModuleTable012_ -+++ unset _ModuleTable013_ -+++ unset _ModuleTable014_ -+++ unset _ModuleTable015_ -+++ unset _ModuleTable016_ -+++ : -s sh -++ eval -++ unset __ms_shell -++ unset __ms_ksh_test -++ unset __ms_bash_test -++ unset setup__test_function__181148 -++ unset __ms_function_name -+ [[ wcoss_dell_p3 == macosx.* ]] -+ [[ wcoss_dell_p3 == linux.* ]] -+ module use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash use /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3 -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm";' export '_ModuleTable001_;' '_ModuleTable002_="cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ==";' export '_ModuleTable002_;' '_ModuleTable_Sz_="2";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXt9LG1UPXt9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMiLCIvdXNyeC9sb2NhbC9kZXYvZW1jX3JvY290by9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbG1vZC9sbW9kL21vZHVsZWZpbGVzL0NvcmUiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnMiLCIvZ3Bm -++ export _ModuleTable001_ -++ _ModuleTable002_=cy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb3JlX3Byb2QiLCIvdXNyeC9sb2NhbC9kZXYvbW9kdWxlZmlsZXMiLH0sWyJzeXN0ZW1CYXNlTVBBVEgiXT0iL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZTovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvcmVfdGhpcmQ6L3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9kZWZzOi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsfQ== -++ export _ModuleTable002_ -++ _ModuleTable_Sz_=2 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module load fv3 -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash load fv3 -+ eval 'ADVISOR_2018_DIR="/usrx/local/prod/intel/2018UP01/advisor_2018";' export 'ADVISOR_2018_DIR;' 'BACIO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a";' export 'BACIO_LIB4;' 'BACIO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a";' export 'BACIO_LIB8;' 'BACIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3";' export 'BACIO_SRC;' 'BACIO_VER="v2.0.3";' export 'BACIO_VER;' 'BINARY_TYPE_HPC="";' export 'BINARY_TYPE_HPC;' '__LMOD_REF_COUNT_CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1";' export '__LMOD_REF_COUNT_CLASSPATH;' 'CLASSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar";' export 'CLASSPATH;' 'CLCK_ROOT="/usrx/local/prod/intel/2018UP01/clck_latest";' export 'CLCK_ROOT;' 'CMAKE_CXX_COMPILER="mpiicpc";' export 'CMAKE_CXX_COMPILER;' 'CMAKE_C_COMPILER="mpiicc";' export 'CMAKE_C_COMPILER;' 'CMAKE_Fortran_COMPILER="mpiifort";' export 'CMAKE_Fortran_COMPILER;' 'CMAKE_Platform="wcoss_dell_p3";' export 'CMAKE_Platform;' 'COMP="ips";' export 'COMP;' '__LMOD_REF_COUNT_CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1";' export '__LMOD_REF_COUNT_CPATH;' 'CPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include";' export 'CPATH;' '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include:1";' export '__LMOD_REF_COUNT_CPLUS_INCLUDE_PATH;' 'CPLUS_INCLUDE_PATH="/usrx/local/prod/intel/2018UP01/clck_latest/include";' export 'CPLUS_INCLUDE_PATH;' 'CRTM_FIX="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix";' export 'CRTM_FIX;' 'CRTM_INC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6";' export 'CRTM_INC;' 'CRTM_LIB="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a";' export 'CRTM_LIB;' 'CRTM_SRC="/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src";' export 'CRTM_SRC;' 'CRTM_VER="v2.2.6";' export 'CRTM_VER;' 'DAALROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal";' export 'DAALROOT;' 'ESMFMKFILE="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk";' export 'ESMFMKFILE;' 'G2TMPL_INC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0";' export 'G2TMPL_INC;' 'G2TMPL_LIB="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a";' export 'G2TMPL_LIB;' 'G2TMPL_SRC="/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src";' export 'G2TMPL_SRC;' 'G2TMPL_VER="v1.6.0";' export 'G2TMPL_VER;' 'G2_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4";' export 'G2_INC4;' 'G2_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d";' export 'G2_INCd;' 'G2_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a";' export 'G2_LIB4;' 'G2_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a";' export 'G2_LIBd;' 'G2_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1";' export 'G2_SRC;' 'G2_VER="v3.1.1";' export 'G2_VER;' 'GDBSERVER_MIC="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver";' export 'GDBSERVER_MIC;' 'GDB_CROSS="/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia";' export 'GDB_CROSS;' 'HDF5="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'HDF5;' 'HDF5_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CFLAGS;' 'HDF5_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_CXXFLAGS;' 'HDF5_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_FFLAGS;' 'HDF5_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'HDF5_INCLUDE;' 'HDF5_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran -lhdf5 '-lhdf5_fortran";' export 'HDF5_LDFLAGS;' 'HDF5_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl '-lhdf5";' export 'HDF5_LDFLAGS_C;' 'HDF5_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -hdf5_hl_cpp -lhdf5 '-lhdf5_cpp";' export 'HDF5_LDFLAGS_CXX;' 'HDF5_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lhdf5_hl -lhdf5hl_fortran '-lhdf5";' export 'HDF5_LDFLAGS_F;' '__LMOD_REF_COUNT_INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1";' export '__LMOD_REF_COUNT_INFOPATH;' 'INFOPATH="/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx";' export 'INFOPATH;' 'INSPECTOR_2018_DIR="/usrx/local/prod/intel/2018UP01/inspector_2018";' export 'INSPECTOR_2018_DIR;' 'INTEL_LICENSE_FILE="/usrx/local/prod/intel/licenses";' export 'INTEL_LICENSE_FILE;' 'INTEL_PYTHONHOME="/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64";' export 'INTEL_PYTHONHOME;' 'IPPROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp";' export 'IPPROOT;' 'IP_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4";' export 'IP_INC4;' 'IP_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8";' export 'IP_INC8;' 'IP_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d";' export 'IP_INCd;' 'IP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a";' export 'IP_LIB4;' 'IP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a";' export 'IP_LIB8;' 'IP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a";' export 'IP_LIBd;' 'IP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2";' export 'IP_SRC;' 'IP_VER="v3.0.2";' export 'IP_VER;' 'I_MPI_CC="icc";' export 'I_MPI_CC;' 'I_MPI_CXX="icpc";' export 'I_MPI_CXX;' 'I_MPI_EXTRA_FILESYSTEM="yes";' export 'I_MPI_EXTRA_FILESYSTEM;' 'I_MPI_EXTRA_FILESYSTEM_LIST="gpfs";' export 'I_MPI_EXTRA_FILESYSTEM_LIST;' 'I_MPI_F77="ifort";' export 'I_MPI_F77;' 'I_MPI_F90="ifort";' export 'I_MPI_F90;' 'I_MPI_FC="ifort";' export 'I_MPI_FC;' 'I_MPI_HYDRA_BOOTSTRAP="lsf";' export 'I_MPI_HYDRA_BOOTSTRAP;' 'I_MPI_HYDRA_IFACE="ib0";' export 'I_MPI_HYDRA_IFACE;' 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH="1";' export 'I_MPI_LSF_USE_COLLECTIVE_LAUNCH;' 'I_MPI_ROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi";' export 'I_MPI_ROOT;' 'JASPER_INC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include";' export 'JASPER_INC;' 'JASPER_LIB="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a";' export 'JASPER_LIB;' 'JASPER_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib";' export 'JASPER_LIBDIR;' 'JASPER_SRC="/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29";' export 'JASPER_SRC;' 'JASPER_VER="1.900.29";' export 'JASPER_VER;' 'KMP_AFFINITY="scatter";' export 'KMP_AFFINITY;' unset 'LAUNCH;' '__LMOD_REF_COUNT_LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LD_LIBRARY_PATH;' 'LD_LIBRARY_PATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LD_LIBRARY_PATH;' '__LMOD_REF_COUNT_LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1";' export '__LMOD_REF_COUNT_LIBRARY_PATH;' 'LIBRARY_PATH="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4";' export 'LIBRARY_PATH;' 'LIB_NAME="POST";' export 'LIB_NAME;' 'LMOD_FAMILY_COMPILER="ips";' export 'LMOD_FAMILY_COMPILER;' 'LMOD_FAMILY_COMPILER_VERSION="18.0.1.163";' export 'LMOD_FAMILY_COMPILER_VERSION;' 'LMOD_FAMILY_MPI="impi";' export 'LMOD_FAMILY_MPI;' 'LMOD_FAMILY_MPI_VERSION="18.0.1";' export 'LMOD_FAMILY_MPI_VERSION;' '__LMOD_REF_COUNT_LOADEDMODULES="ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1";' export '__LMOD_REF_COUNT_LOADEDMODULES;' 'LOADEDMODULES="ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3";' export 'LOADEDMODULES;' 'LSF_BINDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin";' export 'LSF_BINDIR;' 'LSF_ENVDIR="/gpfs/lsf/conf";' export 'LSF_ENVDIR;' 'LSF_LIBDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib";' export 'LSF_LIBDIR;' 'LSF_SERVERDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc";' export 'LSF_SERVERDIR;' '__LMOD_REF_COUNT_MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1";' export '__LMOD_REF_COUNT_MANPATH;' 'MANPATH="/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man";' export 'MANPATH;' 'MKLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl";' export 'MKLROOT;' 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' 'MPM_LAUNCHER="/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh";' export 'MPM_LAUNCHER;' 'NEMSIO_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4";' export 'NEMSIO_INC;' 'NEMSIO_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a";' export 'NEMSIO_LIB;' 'NEMSIO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4";' export 'NEMSIO_SRC;' 'NEMSIO_VER="v2.2.4";' export 'NEMSIO_VER;' 'NETCDF="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF;' 'NETCDF_CFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CFLAGS;' 'NETCDF_CXX4FLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXX4FLAGS;' 'NETCDF_CXXFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_CXXFLAGS;' 'NETCDF_FFLAGS="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_FFLAGS;' 'NETCDF_INC="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INC;' 'NETCDF_INCLUDE="-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include";' export 'NETCDF_INCLUDE;' 'NETCDF_LDFLAGS="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS;' 'NETCDF_LDFLAGS_C="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdf";' export 'NETCDF_LDFLAGS_C;' 'NETCDF_LDFLAGS_CXX="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++";' export 'NETCDF_LDFLAGS_CXX;' 'NETCDF_LDFLAGS_CXX4="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' -lnetcdf '-lnetcdf_c++4";' export 'NETCDF_LDFLAGS_CXX4;' 'NETCDF_LDFLAGS_F="-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib' '-lnetcdff";' export 'NETCDF_LDFLAGS_F;' 'NETCDF_LIB="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib";' export 'NETCDF_LIB;' 'NETCDF_ROOT="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel";' export 'NETCDF_ROOT;' '__LMOD_REF_COUNT_NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1";' export '__LMOD_REF_COUNT_NLSPATH;' 'NLSPATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N";' export 'NLSPATH;' '__LMOD_REF_COUNT_PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1";' export '__LMOD_REF_COUNT_PATH;' 'PATH="/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'PATH;' 'PKG_CONFIG_PATH="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig";' export 'PKG_CONFIG_PATH;' 'PNG_INC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include";' export 'PNG_INC;' 'PNG_LIB="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a";' export 'PNG_LIB;' 'PNG_LIB12="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a";' export 'PNG_LIB12;' 'PNG_LIBDIR="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib";' export 'PNG_LIBDIR;' 'PNG_LIBso="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so";' export 'PNG_LIBso;' 'PNG_SRC="/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59";' export 'PNG_SRC;' 'PNG_VER="1.2.59";' export 'PNG_VER;' 'POST_INC="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4";' export 'POST_INC;' 'POST_LIB="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a";' export 'POST_LIB;' 'POST_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5";' export 'POST_SRC;' 'POST_VER="v8.0.5";' export 'POST_VER;' 'PSTLROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl";' export 'PSTLROOT;' 'PYTHONPATH="/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi";' export 'PYTHONPATH;' 'SP_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a";' export 'SP_LIB4;' 'SP_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a";' export 'SP_LIB8;' 'SP_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a";' export 'SP_LIBd;' 'SP_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3";' export 'SP_SRC;' 'SP_VER="v2.0.3";' export 'SP_VER;' 'TBBROOT="/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb";' export 'TBBROOT;' 'VT_ADD_LIBS="-ldwarf' -lelf -lvtunwind -lm '-lpthread";' export 'VT_ADD_LIBS;' 'VT_ARCH="intel64";' export 'VT_ARCH;' 'VT_LIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/lib";' export 'VT_LIB_DIR;' 'VT_MPI="impi4";' export 'VT_MPI;' 'VT_ROOT="/usrx/local/prod/intel/2018UP01/itac_latest";' export 'VT_ROOT;' 'VT_SLIB_DIR="/usrx/local/prod/intel/2018UP01/itac_latest/slib";' export 'VT_SLIB_DIR;' 'W3EMC_INC4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4";' export 'W3EMC_INC4;' 'W3EMC_INC8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8";' export 'W3EMC_INC8;' 'W3EMC_INCd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d";' export 'W3EMC_INCd;' 'W3EMC_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a";' export 'W3EMC_LIB4;' 'W3EMC_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a";' export 'W3EMC_LIB8;' 'W3EMC_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a";' export 'W3EMC_LIBd;' 'W3EMC_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1";' export 'W3EMC_SRC;' 'W3EMC_VER="v2.3.1";' export 'W3EMC_VER;' 'W3NCO_LIB4="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a";' export 'W3NCO_LIB4;' 'W3NCO_LIB8="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a";' export 'W3NCO_LIB8;' 'W3NCO_LIBd="/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a";' export 'W3NCO_LIBd;' 'W3NCO_SRC="/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7";' export 'W3NCO_SRC;' 'W3NCO_VER="v2.0.7";' export 'W3NCO_VER;' 'XLSF_UIDDIR="/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid";' export 'XLSF_UIDDIR;' 'Z_INC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include";' export 'Z_INC;' 'Z_LIB="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a";' export 'Z_LIB;' 'Z_SRC="/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src";' export 'Z_SRC;' 'Z_VER="1.2.11";' export 'Z_VER;' '__LMOD_REF_COUNT__LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1";' export '__LMOD_REF_COUNT__LMFILES_;' '_LMFILES_="/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3";' export '_LMFILES_;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ ADVISOR_2018_DIR=/usrx/local/prod/intel/2018UP01/advisor_2018 -++ export ADVISOR_2018_DIR -++ BACIO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_4.a -++ export BACIO_LIB4 -++ BACIO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libbacio_v2.0.3_8.a -++ export BACIO_LIB8 -++ BACIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/bacio_v2.0.3 -++ export BACIO_SRC -++ BACIO_VER=v2.0.3 -++ export BACIO_VER -++ BINARY_TYPE_HPC= -++ export BINARY_TYPE_HPC -++ __LMOD_REF_COUNT_CLASSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar:1' -++ export __LMOD_REF_COUNT_CLASSPATH -++ CLASSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64/mpi.jar:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/daal.jar -++ export CLASSPATH -++ CLCK_ROOT=/usrx/local/prod/intel/2018UP01/clck_latest -++ export CLCK_ROOT -++ CMAKE_CXX_COMPILER=mpiicpc -++ export CMAKE_CXX_COMPILER -++ CMAKE_C_COMPILER=mpiicc -++ export CMAKE_C_COMPILER -++ CMAKE_Fortran_COMPILER=mpiifort -++ export CMAKE_Fortran_COMPILER -++ CMAKE_Platform=wcoss_dell_p3 -++ export CMAKE_Platform -++ COMP=ips -++ export COMP -++ __LMOD_REF_COUNT_CPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include:1' -++ export __LMOD_REF_COUNT_CPATH -++ CPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/include:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/include -++ export CPATH -++ __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include:1 -++ export __LMOD_REF_COUNT_CPLUS_INCLUDE_PATH -++ CPLUS_INCLUDE_PATH=/usrx/local/prod/intel/2018UP01/clck_latest/include -++ export CPLUS_INCLUDE_PATH -++ CRTM_FIX=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/fix -++ export CRTM_FIX -++ CRTM_INC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/include/crtm_v2.2.6 -++ export CRTM_INC -++ CRTM_LIB=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/ips/18.0.1/libcrtm_v2.2.6.a -++ export CRTM_LIB -++ CRTM_SRC=/gpfs/dell1/nco/ops/nwprod/lib/crtm/v2.2.6/src -++ export CRTM_SRC -++ CRTM_VER=v2.2.6 -++ export CRTM_VER -++ DAALROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal -++ export DAALROOT -++ ESMFMKFILE=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk -++ export ESMFMKFILE -++ G2TMPL_INC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/include/g2tmpl_v1.6.0 -++ export G2TMPL_INC -++ G2TMPL_LIB=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/ips/18.0.1/libg2tmpl_v1.6.0.a -++ export G2TMPL_LIB -++ G2TMPL_SRC=/gpfs/dell1/nco/ops/nwprod/lib/g2tmpl/v1.6.0/src -++ export G2TMPL_SRC -++ G2TMPL_VER=v1.6.0 -++ export G2TMPL_VER -++ G2_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_4 -++ export G2_INC4 -++ G2_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/g2_v3.1.1_d -++ export G2_INCd -++ G2_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_4.a -++ export G2_LIB4 -++ G2_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libg2_v3.1.1_d.a -++ export G2_LIBd -++ G2_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/g2_v3.1.1 -++ export G2_SRC -++ G2_VER=v3.1.1 -++ export G2_VER -++ GDBSERVER_MIC=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin/gdbserver -++ export GDBSERVER_MIC -++ GDB_CROSS=/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin/gdb-ia -++ export GDB_CROSS -++ HDF5=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export HDF5 -++ HDF5_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CFLAGS -++ HDF5_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_CXXFLAGS -++ HDF5_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_FFLAGS -++ HDF5_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export HDF5_INCLUDE -++ HDF5_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5 -lhdf5_fortran' -++ export HDF5_LDFLAGS -++ HDF5_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5' -++ export HDF5_LDFLAGS_C -++ HDF5_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -hdf5_hl_cpp -lhdf5 -lhdf5_cpp' -++ export HDF5_LDFLAGS_CXX -++ HDF5_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lhdf5_hl -lhdf5hl_fortran -lhdf5' -++ export HDF5_LDFLAGS_F -++ __LMOD_REF_COUNT_INFOPATH='/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:1;info_gdb_igfx:1' -++ export __LMOD_REF_COUNT_INFOPATH -++ INFOPATH=/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/info:info_gdb_igfx -++ export INFOPATH -++ INSPECTOR_2018_DIR=/usrx/local/prod/intel/2018UP01/inspector_2018 -++ export INSPECTOR_2018_DIR -++ INTEL_LICENSE_FILE=/usrx/local/prod/intel/licenses -++ export INTEL_LICENSE_FILE -++ INTEL_PYTHONHOME=/usrx/local/prod/intel/2018UP01/debugger_2018/python/intel64 -++ export INTEL_PYTHONHOME -++ IPPROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp -++ export IPPROOT -++ IP_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_4 -++ export IP_INC4 -++ IP_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_8 -++ export IP_INC8 -++ IP_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ip_v3.0.2_d -++ export IP_INCd -++ IP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_4.a -++ export IP_LIB4 -++ IP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_8.a -++ export IP_LIB8 -++ IP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libip_v3.0.2_d.a -++ export IP_LIBd -++ IP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/ip_v3.0.2 -++ export IP_SRC -++ IP_VER=v3.0.2 -++ export IP_VER -++ I_MPI_CC=icc -++ export I_MPI_CC -++ I_MPI_CXX=icpc -++ export I_MPI_CXX -++ I_MPI_EXTRA_FILESYSTEM=yes -++ export I_MPI_EXTRA_FILESYSTEM -++ I_MPI_EXTRA_FILESYSTEM_LIST=gpfs -++ export I_MPI_EXTRA_FILESYSTEM_LIST -++ I_MPI_F77=ifort -++ export I_MPI_F77 -++ I_MPI_F90=ifort -++ export I_MPI_F90 -++ I_MPI_FC=ifort -++ export I_MPI_FC -++ I_MPI_HYDRA_BOOTSTRAP=lsf -++ export I_MPI_HYDRA_BOOTSTRAP -++ I_MPI_HYDRA_IFACE=ib0 -++ export I_MPI_HYDRA_IFACE -++ I_MPI_LSF_USE_COLLECTIVE_LAUNCH=1 -++ export I_MPI_LSF_USE_COLLECTIVE_LAUNCH -++ I_MPI_ROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi -++ export I_MPI_ROOT -++ JASPER_INC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/include -++ export JASPER_INC -++ JASPER_LIB=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a -++ export JASPER_LIB -++ JASPER_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib -++ export JASPER_LIBDIR -++ JASPER_SRC=/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29 -++ export JASPER_SRC -++ JASPER_VER=1.900.29 -++ export JASPER_VER -++ KMP_AFFINITY=scatter -++ export KMP_AFFINITY -++ unset LAUNCH -++ __LMOD_REF_COUNT_LD_LIBRARY_PATH='/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/itac_latest/slib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:1;/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LD_LIBRARY_PATH -++ LD_LIBRARY_PATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/itac_latest/slib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/lib64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/debugger_2018/iga/lib:/usrx/local/prod/intel/2018UP01/debugger_2018/libipt/intel64/lib:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LD_LIBRARY_PATH -++ __LMOD_REF_COUNT_LIBRARY_PATH='/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:1;/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4:1' -++ export __LMOD_REF_COUNT_LIBRARY_PATH -++ LIBRARY_PATH=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib:/usrx/local/prod/intel/2018UP01/clck_latest/lib/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/ipp/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.7:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/daal/lib/intel64_lin:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb/lib/intel64_lin/gcc4.4 -++ export LIBRARY_PATH -++ LIB_NAME=POST -++ export LIB_NAME -++ LMOD_FAMILY_COMPILER=ips -++ export LMOD_FAMILY_COMPILER -++ LMOD_FAMILY_COMPILER_VERSION=18.0.1.163 -++ export LMOD_FAMILY_COMPILER_VERSION -++ LMOD_FAMILY_MPI=impi -++ export LMOD_FAMILY_MPI -++ LMOD_FAMILY_MPI_VERSION=18.0.1 -++ export LMOD_FAMILY_MPI_VERSION -++ __LMOD_REF_COUNT_LOADEDMODULES='ips/18.0.1.163:1;impi/18.0.1:1;lsf/10.1:1;bacio/2.0.3:1;ip/3.0.2:1;sp/2.0.3:1;w3nco/2.0.7:1;w3emc/2.3.1:1;nemsio/2.2.4:1;g2/3.1.1:1;g2tmpl/1.6.0:1;crtm/2.2.6:1;jasper/1.900.29:1;libpng/1.2.59:1;zlib/1.2.11:1;post/8.0.5:1;hdf5_parallel/1.10.6:1;netcdf_parallel/4.7.4:1;esmf/8.0.0_ParallelNetCDF:1;cmake/3.10.0:1;fv3:1' -++ export __LMOD_REF_COUNT_LOADEDMODULES -++ LOADEDMODULES=ips/18.0.1.163:impi/18.0.1:lsf/10.1:bacio/2.0.3:ip/3.0.2:sp/2.0.3:w3nco/2.0.7:w3emc/2.3.1:nemsio/2.2.4:g2/3.1.1:g2tmpl/1.6.0:crtm/2.2.6:jasper/1.900.29:libpng/1.2.59:zlib/1.2.11:post/8.0.5:hdf5_parallel/1.10.6:netcdf_parallel/4.7.4:esmf/8.0.0_ParallelNetCDF:cmake/3.10.0:fv3 -++ export LOADEDMODULES -++ LSF_BINDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin -++ export LSF_BINDIR -++ LSF_ENVDIR=/gpfs/lsf/conf -++ export LSF_ENVDIR -++ LSF_LIBDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib -++ export LSF_LIBDIR -++ LSF_SERVERDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc -++ export LSF_SERVERDIR -++ __LMOD_REF_COUNT_MANPATH='/usrx/local/prod/packages/cmake/3.10.0/share/man:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:2;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:1;/gpfs/lsf/10.1/man:1;/usrx/local/prod/intel/2018UP01/itac_latest/man:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:1;/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:1;/usrx/local/prod/lmod/lmod/share/man:1;/usrx/local/prod/intel/2018UP01/inspector_2018/man:1;/usrx/local/prod/intel/2018UP01/advisor_2018/man:1' -++ export __LMOD_REF_COUNT_MANPATH -++ MANPATH=/usrx/local/prod/packages/cmake/3.10.0/share/man:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/share/man:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/share/man:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/share/man:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/man:/gpfs/lsf/10.1/man:/usrx/local/prod/intel/2018UP01/itac_latest/man:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/man/common:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-ia/man:/usrx/local/prod/intel/2018UP01/documentation_2018/en/debugger/gdb-igfx/man:/usrx/local/prod/lmod/lmod/share/man::/usrx/local/prod/intel/2018UP01/inspector_2018/man:/usrx/local/prod/intel/2018UP01/advisor_2018/man -++ export MANPATH -++ MKLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl -++ export MKLROOT -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ MPM_LAUNCHER=/usrx/local/prod/intel/2018UP01/debugger_2018/mpm/mic/bin/start_mpm.sh -++ export MPM_LAUNCHER -++ NEMSIO_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/nemsio_v2.2.4 -++ export NEMSIO_INC -++ NEMSIO_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libnemsio_v2.2.4.a -++ export NEMSIO_LIB -++ NEMSIO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/nemsio_v2.2.4 -++ export NEMSIO_SRC -++ NEMSIO_VER=v2.2.4 -++ export NEMSIO_VER -++ NETCDF=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF -++ NETCDF_CFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CFLAGS -++ NETCDF_CXX4FLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXX4FLAGS -++ NETCDF_CXXFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_CXXFLAGS -++ NETCDF_FFLAGS=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_FFLAGS -++ NETCDF_INC=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INC -++ NETCDF_INCLUDE=-I/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -++ export NETCDF_INCLUDE -++ NETCDF_LDFLAGS='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS -++ NETCDF_LDFLAGS_C='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf' -++ export NETCDF_LDFLAGS_C -++ NETCDF_LDFLAGS_CXX='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++' -++ export NETCDF_LDFLAGS_CXX -++ NETCDF_LDFLAGS_CXX4='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdf -lnetcdf_c++4' -++ export NETCDF_LDFLAGS_CXX4 -++ NETCDF_LDFLAGS_F='-L/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -lnetcdff' -++ export NETCDF_LDFLAGS_F -++ NETCDF_LIB=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/lib -++ export NETCDF_LIB -++ NETCDF_ROOT=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel -++ export NETCDF_ROOT -++ __LMOD_REF_COUNT_NLSPATH='/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N:1' -++ export __LMOD_REF_COUNT_NLSPATH -++ NLSPATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/lib/intel64_lin/locale/%l_%t/%N:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/lib/intel64_lin/locale/%l_%t/%N::/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/share/locale/%l_%t/%N -++ export NLSPATH -++ __LMOD_REF_COUNT_PATH='/usrx/local/prod/packages/cmake/3.10.0/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:2;/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:1;/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:1;/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:1;/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:1;/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:1;/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:1;/usrx/local/prod/intel/2018UP01/itac_latest/bin:1;/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:1;/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:1;/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:1;/usr/lib64/qt-3.3/bin:1;/usr/local/bin:1;/usr/bin:1;/usr/local/sbin:1;/usr/sbin:1;/usr/lpp/mmfs/bin:1;/opt/ibutils/bin:1;/opt/dell/srvadmin/bin:1;/u/Dusan.Jovic/bin:2;/usrx/local/emc_rocoto/1.2.3/bin:1;/u/Dusan.Jovic/.local/bin:1;/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include:1' -++ export __LMOD_REF_COUNT_PATH -++ PATH=/usrx/local/prod/packages/cmake/3.10.0/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/bin:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/bin:/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/bin:/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/bin:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/etc:/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/bin:/usrx/local/prod/intel/2018UP01/advisor_2018/bin64:/usrx/local/prod/intel/2018UP01/vtune_amplifier_2018/bin64:/usrx/local/prod/intel/2018UP01/inspector_2018/bin64:/usrx/local/prod/intel/2018UP01/itac_latest/bin:/usrx/local/prod/intel/2018UP01/clck_latest/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/bin/intel64:/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/targets/intel64/x200/bin:/usrx/local/prod/intel/2018UP01/debugger_2018/gdb/intel64/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/usr/lpp/mmfs/bin:/opt/ibutils/bin:/opt/dell/srvadmin/bin:/u/Dusan.Jovic/bin:/usrx/local/emc_rocoto/1.2.3/bin:/u/Dusan.Jovic/.local/bin:/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export PATH -++ PKG_CONFIG_PATH=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mkl/bin/pkgconfig -++ export PKG_CONFIG_PATH -++ PNG_INC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/include -++ export PNG_INC -++ PNG_LIB=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.a -++ export PNG_LIB -++ PNG_LIB12=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng12.a -++ export PNG_LIB12 -++ PNG_LIBDIR=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib -++ export PNG_LIBDIR -++ PNG_LIBso=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/lib/libpng.so -++ export PNG_LIBso -++ PNG_SRC=/usrx/local/prod/packages/gnu/4.8.5/libpng/1.2.59/src/libpng-1.2.59 -++ export PNG_SRC -++ PNG_VER=1.2.59 -++ export PNG_VER -++ POST_INC=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/ncep_post_v8.0.5_4 -++ export POST_INC -++ POST_LIB=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libncep_post_v8.0.5_4.a -++ export POST_LIB -++ POST_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/post_v8.0.5 -++ export POST_SRC -++ POST_VER=v8.0.5 -++ export POST_VER -++ PSTLROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/pstl -++ export PSTLROOT -++ PYTHONPATH=/usrx/local/prod/intel/2018UP01/advisor_2018/pythonapi -++ export PYTHONPATH -++ SP_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_4.a -++ export SP_LIB4 -++ SP_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_8.a -++ export SP_LIB8 -++ SP_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libsp_v2.0.3_d.a -++ export SP_LIBd -++ SP_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/sp_v2.0.3 -++ export SP_SRC -++ SP_VER=v2.0.3 -++ export SP_VER -++ TBBROOT=/usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/tbb -++ export TBBROOT -++ VT_ADD_LIBS='-ldwarf -lelf -lvtunwind -lm -lpthread' -++ export VT_ADD_LIBS -++ VT_ARCH=intel64 -++ export VT_ARCH -++ VT_LIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/lib -++ export VT_LIB_DIR -++ VT_MPI=impi4 -++ export VT_MPI -++ VT_ROOT=/usrx/local/prod/intel/2018UP01/itac_latest -++ export VT_ROOT -++ VT_SLIB_DIR=/usrx/local/prod/intel/2018UP01/itac_latest/slib -++ export VT_SLIB_DIR -++ W3EMC_INC4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_4 -++ export W3EMC_INC4 -++ W3EMC_INC8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_8 -++ export W3EMC_INC8 -++ W3EMC_INCd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/include/w3emc_v2.3.1_d -++ export W3EMC_INCd -++ W3EMC_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_4.a -++ export W3EMC_LIB4 -++ W3EMC_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_8.a -++ export W3EMC_LIB8 -++ W3EMC_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3emc_v2.3.1_d.a -++ export W3EMC_LIBd -++ W3EMC_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3emc_v2.3.1 -++ export W3EMC_SRC -++ W3EMC_VER=v2.3.1 -++ export W3EMC_VER -++ W3NCO_LIB4=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_4.a -++ export W3NCO_LIB4 -++ W3NCO_LIB8=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_8.a -++ export W3NCO_LIB8 -++ W3NCO_LIBd=/usrx/local/nceplibs/dev/NCEPLIBS/compilers/ips/18.0.1.163/lib/libw3nco_v2.0.7_d.a -++ export W3NCO_LIBd -++ W3NCO_SRC=/usrx/local/nceplibs/dev/NCEPLIBS/src/w3nco_v2.0.7 -++ export W3NCO_SRC -++ W3NCO_VER=v2.0.7 -++ export W3NCO_VER -++ XLSF_UIDDIR=/gpfs/lsf/10.1/linux3.10-glibc2.17-x86_64/lib/uid -++ export XLSF_UIDDIR -++ Z_INC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/include -++ export Z_INC -++ Z_LIB=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/lib/libz.a -++ export Z_LIB -++ Z_SRC=/usrx/local/prod/packages/ips/18.0.1/zlib/1.2.11/src -++ export Z_SRC -++ Z_VER=1.2.11 -++ export Z_VER -++ __LMOD_REF_COUNT__LMFILES_='/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:1;/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:1;/usrx/local/prod/modulefiles/core_third/lsf/10.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:1;/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:1;/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:1;/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:1;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:1;/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:1;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3:1' -++ export __LMOD_REF_COUNT__LMFILES_ -++ _LMFILES_=/usrx/local/prod/modulefiles/core_third/ips/18.0.1.163:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1/impi/18.0.1.lua:/usrx/local/prod/modulefiles/core_third/lsf/10.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/bacio/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/ip/3.0.2:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/sp/2.0.3:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3nco/2.0.7:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/w3emc/2.3.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/nemsio/2.2.4:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/g2/3.1.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/g2tmpl/1.6.0:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1/crtm/2.2.6:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/jasper/1.900.29:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/libpng/1.2.59:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1/zlib/1.2.11:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles/post/8.0.5:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/hdf5_parallel/1.10.6:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/netcdf_parallel/4.7.4:/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles/esmf/8.0.0_ParallelNetCDF:/usrx/local/prod/modulefiles/core_third/cmake/3.10.0:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 -++ export _LMFILES_ -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ module list -++ /usrx/local/prod/lmod/lmod/libexec/lmod bash list - -Currently Loaded Modules: - 1) ips/18.0.1.163 8) w3emc/2.3.1 15) zlib/1.2.11 - 2) impi/18.0.1 9) nemsio/2.2.4 16) post/8.0.5 - 3) lsf/10.1 10) g2/3.1.1 17) hdf5_parallel/1.10.6 - 4) bacio/2.0.3 11) g2tmpl/1.6.0 18) netcdf_parallel/4.7.4 - 5) ip/3.0.2 12) crtm/2.2.6 19) esmf/8.0.0_ParallelNetCDF - 6) sp/2.0.3 13) jasper/1.900.29 20) cmake/3.10.0 - 7) w3nco/2.0.7 14) libpng/1.2.59 21) fv3 - - - -+ eval 'MODULEPATH="/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles";' export 'MODULEPATH;' '_ModuleTable001_="X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt";' export '_ModuleTable001_;' '_ModuleTable002_="YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny";' export '_ModuleTable002_;' '_ModuleTable003_="dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi";' export '_ModuleTable003_;' '_ModuleTable004_="XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw";' export '_ModuleTable004_;' '_ModuleTable005_="dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh";' export '_ModuleTable005_;' '_ModuleTable006_="IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp";' export '_ModuleTable006_;' '_ModuleTable007_="cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv";' export '_ModuleTable007_;' '_ModuleTable008_="aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl";' export '_ModuleTable008_;' '_ModuleTable009_="cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs";' export '_ModuleTable009_;' '_ModuleTable010_="fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd";' export '_ModuleTable010_;' '_ModuleTable011_="PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09";' export '_ModuleTable011_;' '_ModuleTable012_="Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l";' export '_ModuleTable012_;' '_ModuleTable013_="bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t";' export '_ModuleTable013_;' '_ModuleTable014_="cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls";' export '_ModuleTable014_;' '_ModuleTable015_="ZXMvY29yZV9wcm9kIix9";' export '_ModuleTable015_;' '_ModuleTable_Sz_="15";' export '_ModuleTable_Sz_;' -++ MODULEPATH=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/modulefiles:/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3:/usrx/local/dev/emc_rocoto/modulefiles:/usrx/local/prod/lmod/lmod/modulefiles/Core:/usrx/local/prod/modulefiles/core_third:/usrx/local/prod/modulefiles/defs:/gpfs/dell1/nco/ops/nwprod/modulefiles/core_prod:/usrx/local/dev/modulefiles:/usrx/local/prod/modulefiles/compiler_third/ips/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/compiler_prod/ips/18.0.1:/usrx/local/prod/modulefiles/compiler_mpi/ips/18.0.1:/usrx/local/prod/modulefiles/mpi_third/ips/18.0.1/impi/18.0.1:/gpfs/dell1/nco/ops/nwprod/modulefiles/mpi_prod/ips/18.0.1/impi/18.0.1:/usrx/local/nceplibs/dev/NCEPLIBS/modulefiles -++ export MODULEPATH -++ _ModuleTable001_=X01vZHVsZVRhYmxlXz17WyJNVHZlcnNpb24iXT0zLFsiY19yZWJ1aWxkVGltZSJdPWZhbHNlLFsiY19zaG9ydFRpbWUiXT1mYWxzZSxkZXB0aFQ9e30sZmFtaWx5PXtbImNvbXBpbGVyIl09ImlwcyIsWyJtcGkiXT0iaW1waSIsfSxtVD17YmFjaW89e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2JhY2lvLzIuMC4zIixbImZ1bGxOYW1lIl09ImJhY2lvLzIuMC4zIixbImxvYWRPcmRlciJdPTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iYmFjaW8vMi4wLjMiLH0sY21ha2U9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2Nt -++ export _ModuleTable001_ -++ _ModuleTable002_=YWtlLzMuMTAuMCIsWyJmdWxsTmFtZSJdPSJjbWFrZS8zLjEwLjAiLFsibG9hZE9yZGVyIl09MjAscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iY21ha2UvMy4xMC4wIix9LGNydG09e1siZm4iXT0iL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfcHJvZC9pcHMvMTguMC4xL2NydG0vMi4yLjYiLFsiZnVsbE5hbWUiXT0iY3J0bS8yLjIuNiIsWyJsb2FkT3JkZXIiXT0xMixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJjcnRtLzIuMi42Iix9LGVzbWY9e1siZm4iXT0iL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2Ny -++ export _ModuleTable002_ -++ _ModuleTable003_=dWIvZW1jLm5lbXNwYXJhL3NvZnQvbW9kdWxlZmlsZXMvZXNtZi84LjAuMF9QYXJhbGxlbE5ldENERiIsWyJmdWxsTmFtZSJdPSJlc21mLzguMC4wX1BhcmFsbGVsTmV0Q0RGIixbImxvYWRPcmRlciJdPTE5LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImVzbWYvOC4wLjBfUGFyYWxsZWxOZXRDREYiLH0sZnYzPXtbImZuIl09Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL0R1c2FuLkpvdmljL3Vmcy9NRzNfcnYxL3Vmcy13ZWF0aGVyLW1vZGVsL21vZHVsZWZpbGVzL3djb3NzX2RlbGxfcDMvZnYzIixbImZ1bGxOYW1lIl09ImZ2MyIsWyJsb2FkT3JkZXIiXT0yMSxwcm9wVD17fSxbInN0YWNrRGVwdGgi -++ export _ModuleTable003_ -++ _ModuleTable004_=XT0wLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJmdjMiLH0sZzI9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2cyLzMuMS4xIixbImZ1bGxOYW1lIl09ImcyLzMuMS4xIixbImxvYWRPcmRlciJdPTEwLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09ImcyLzMuMS4xIix9LGcydG1wbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMS9uY28vb3BzL253cHJvZC9tb2R1bGVmaWxlcy9jb21waWxlcl9wcm9kL2lwcy8xOC4wLjEvZzJ0bXBsLzEuNi4wIixbImZ1bGxOYW1lIl09ImcydG1wbC8xLjYuMCIsWyJsb2FkT3JkZXIiXT0xMSxwcm9wVD17fSxbInN0YWNrRGVw -++ export _ModuleTable004_ -++ _ModuleTable005_=dGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJnMnRtcGwvMS42LjAiLH0saGRmNV9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9oZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJmdWxsTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsWyJsb2FkT3JkZXIiXT0xNyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJoZGY1X3BhcmFsbGVsLzEuMTAuNiIsfSxpbXBpPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfbXBpL2lwcy8xOC4wLjEvaW1waS8xOC4wLjEubHVh -++ export _ModuleTable005_ -++ _ModuleTable006_=IixbImZ1bGxOYW1lIl09ImltcGkvMTguMC4xIixbImxvYWRPcmRlciJdPTIscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaW1waS8xOC4wLjEiLH0saXA9e1siZm4iXT0iL3VzcngvbG9jYWwvbmNlcGxpYnMvZGV2L05DRVBMSUJTL21vZHVsZWZpbGVzL2lwLzMuMC4yIixbImZ1bGxOYW1lIl09ImlwLzMuMC4yIixbImxvYWRPcmRlciJdPTUscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0iaXAvMy4wLjIiLH0saXBzPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZC9pcHMvMTguMC4xLjE2MyIsWyJmdWxsTmFtZSJdPSJp -++ export _ModuleTable006_ -++ _ModuleTable007_=cHMvMTguMC4xLjE2MyIsWyJsb2FkT3JkZXIiXT0xLHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Imlwcy8xOC4wLjEuMTYzIix9LGphc3Blcj17WyJmbiJdPSIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3RoaXJkL2lwcy8xOC4wLjEvamFzcGVyLzEuOTAwLjI5IixbImZ1bGxOYW1lIl09Imphc3Blci8xLjkwMC4yOSIsWyJsb2FkT3JkZXIiXT0xMyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJqYXNwZXIvMS45MDAuMjkiLH0sbGlicG5nPXtbImZuIl09Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQv -++ export _ModuleTable007_ -++ _ModuleTable008_=aXBzLzE4LjAuMS9saWJwbmcvMS4yLjU5IixbImZ1bGxOYW1lIl09ImxpYnBuZy8xLjIuNTkiLFsibG9hZE9yZGVyIl09MTQscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibGlicG5nLzEuMi41OSIsfSxsc2Y9e1siZm4iXT0iL3VzcngvbG9jYWwvcHJvZC9tb2R1bGVmaWxlcy9jb3JlX3RoaXJkL2xzZi8xMC4xIixbImZ1bGxOYW1lIl09ImxzZi8xMC4xIixbImxvYWRPcmRlciJdPTMscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibHNmLzEwLjEiLH0sbmVtc2lvPXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxl -++ export _ModuleTable008_ -++ _ModuleTable009_=cy9uZW1zaW8vMi4yLjQiLFsiZnVsbE5hbWUiXT0ibmVtc2lvLzIuMi40IixbImxvYWRPcmRlciJdPTkscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0ibmVtc2lvLzIuMi40Iix9LG5ldGNkZl9wYXJhbGxlbD17WyJmbiJdPSIvZ3Bmcy9kZWxsMi9lbWMvbW9kZWxpbmcvbm9zY3J1Yi9lbWMubmVtc3BhcmEvc29mdC9tb2R1bGVmaWxlcy9uZXRjZGZfcGFyYWxsZWwvNC43LjQiLFsiZnVsbE5hbWUiXT0ibmV0Y2RmX3BhcmFsbGVsLzQuNy40IixbImxvYWRPcmRlciJdPTE4LHByb3BUPXt9LFsic3RhY2tEZXB0aCJdPTEsWyJzdGF0dXMiXT0iYWN0aXZlIixbInVzZXJOYW1lIl09Im5ldGNkZl9wYXJhbGxlbC80LjcuNCIs -++ export _ModuleTable009_ -++ _ModuleTable010_=fSxwb3N0PXtbImZuIl09Ii91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcy9wb3N0LzguMC41IixbImZ1bGxOYW1lIl09InBvc3QvOC4wLjUiLFsibG9hZE9yZGVyIl09MTYscHJvcFQ9e30sWyJzdGFja0RlcHRoIl09MSxbInN0YXR1cyJdPSJhY3RpdmUiLFsidXNlck5hbWUiXT0icG9zdC84LjAuNSIsfSxzcD17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvc3AvMi4wLjMiLFsiZnVsbE5hbWUiXT0ic3AvMi4wLjMiLFsibG9hZE9yZGVyIl09Nixwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJzcC8yLjAuMyIsfSx3M2VtYz17WyJmbiJd -++ export _ModuleTable010_ -++ _ModuleTable011_=PSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNlbWMvMi4zLjEiLFsiZnVsbE5hbWUiXT0idzNlbWMvMi4zLjEiLFsibG9hZE9yZGVyIl09OCxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M2VtYy8yLjMuMSIsfSx3M25jbz17WyJmbiJdPSIvdXNyeC9sb2NhbC9uY2VwbGlicy9kZXYvTkNFUExJQlMvbW9kdWxlZmlsZXMvdzNuY28vMi4wLjciLFsiZnVsbE5hbWUiXT0idzNuY28vMi4wLjciLFsibG9hZE9yZGVyIl09Nyxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ3M25jby8yLjAuNyIsfSx6bGliPXtbImZuIl09 -++ export _ModuleTable011_ -++ _ModuleTable012_=Ii91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMS96bGliLzEuMi4xMSIsWyJmdWxsTmFtZSJdPSJ6bGliLzEuMi4xMSIsWyJsb2FkT3JkZXIiXT0xNSxwcm9wVD17fSxbInN0YWNrRGVwdGgiXT0xLFsic3RhdHVzIl09ImFjdGl2ZSIsWyJ1c2VyTmFtZSJdPSJ6bGliLzEuMi4xMSIsfSx9LG1wYXRoQT17Ii9ncGZzL2RlbGwyL2VtYy9tb2RlbGluZy9ub3NjcnViL2VtYy5uZW1zcGFyYS9zb2Z0L21vZHVsZWZpbGVzIiwiL2dwZnMvZGVsbDIvZW1jL21vZGVsaW5nL25vc2NydWIvRHVzYW4uSm92aWMvdWZzL01HM19ydjEvdWZzLXdlYXRoZXItbW9kZWwvbW9kdWxlZmlsZXMvd2Nvc3NfZGVsbF9wMyIsIi91c3J4L2xvY2FsL2Rldi9l -++ export _ModuleTable012_ -++ _ModuleTable013_=bWNfcm9jb3RvL21vZHVsZWZpbGVzIiwiL3VzcngvbG9jYWwvcHJvZC9sbW9kL2xtb2QvbW9kdWxlZmlsZXMvQ29yZSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZCIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvZGVmcyIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvcmVfcHJvZCIsIi91c3J4L2xvY2FsL2Rldi9tb2R1bGVmaWxlcyIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29tcGlsZXJfdGhpcmQvaXBzLzE4LjAuMSIsIi9ncGZzL2RlbGwxL25jby9vcHMvbndwcm9kL21vZHVsZWZpbGVzL2NvbXBpbGVyX3Byb2QvaXBzLzE4LjAuMSIsIi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29t -++ export _ModuleTable013_ -++ _ModuleTable014_=cGlsZXJfbXBpL2lwcy8xOC4wLjEiLCIvdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL21waV90aGlyZC9pcHMvMTguMC4xL2ltcGkvMTguMC4xIiwiL2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmlsZXMvbXBpX3Byb2QvaXBzLzE4LjAuMS9pbXBpLzE4LjAuMSIsIi91c3J4L2xvY2FsL25jZXBsaWJzL2Rldi9OQ0VQTElCUy9tb2R1bGVmaWxlcyIsfSxbInN5c3RlbUJhc2VNUEFUSCJdPSIvdXNyeC9sb2NhbC9wcm9kL2xtb2QvbG1vZC9tb2R1bGVmaWxlcy9Db3JlOi91c3J4L2xvY2FsL3Byb2QvbW9kdWxlZmlsZXMvY29yZV90aGlyZDovdXNyeC9sb2NhbC9wcm9kL21vZHVsZWZpbGVzL2RlZnM6L2dwZnMvZGVsbDEvbmNvL29wcy9ud3Byb2QvbW9kdWxlZmls -++ export _ModuleTable014_ -++ _ModuleTable015_=ZXMvY29yZV9wcm9kIix9 -++ export _ModuleTable015_ -++ _ModuleTable_Sz_=15 -++ export _ModuleTable_Sz_ -++ : -s sh -+ eval -+ cd build_fv3_9 -+ cmake /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model -DREPRO=Y -D32BIT=Y -DCCPP=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -DDYN32=ON -DSTATIC=ON -DMULTI_GASES=OFF --- The C compiler identification is Intel 18.0.1.20171018 --- The CXX compiler identification is Intel 18.0.1.20171018 --- The Fortran compiler identification is Intel 18.0.1.20171018 --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc --- Check for working C compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc --- Check for working CXX compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc -- works --- Detecting CXX compiler ABI info --- Detecting CXX compiler ABI info - done --- Detecting CXX compile features --- Detecting CXX compile features - done --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort --- Check for working Fortran compiler: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort -- works --- Detecting Fortran compiler ABI info --- Detecting Fortran compiler ABI info - done --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 --- Checking whether /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort supports Fortran 90 -- yes --- Found MPI_C: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicc (found version "3.1") --- Found MPI_CXX: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiicpc (found version "3.1") --- Found MPI_Fortran: /usrx/local/prod/intel/2018UP01/compilers_and_libraries/linux/mpi/bin64/mpiifort (found version "3.1") --- Found MPI: TRUE (found version "3.1") -ESMFMKFILE: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib/esmf.mk - Found ESMF: -ESMF_VERSION_MAJOR: 8 -ESMF_F90COMPILEPATHS: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include -ESMF_F90ESMFLINKRPATHS: -Wl,-rpath,/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/lib -ESMF_F90ESMFLINKLIBS: -lesmf -cxxlib -lrt -ldl -lnetcdff -lnetcdf --- Found ESMF: /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/mod;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/esmf/8.0.0_ParallelNetCDF/include;/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/soft/netcdf_parallel/include (found version "8.0.0") - -Setting configuration for wcoss_dell_p3 - -C compiler: Intel 18.0.1.20171018 (mpiicc) -CXX compiler: Intel 18.0.1.20171018 (mpiicpc) -Fortran compiler: Intel 18.0.1.20171018 (mpiifort) - -DEBUG is disabled -REPRO is ENABLED -32BIT is ENABLED -OPENMP is ENABLED -AVX2 is disabled -INLINE_POST is ENABLED - - -Selected physics package: gfs - -Force 64 bits in gfsphysics -Force 64 bits in ipd --- Dynamics compiled with 32-bit option, adjust fv_sat_adj types --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Disable SIONlib support --- Disable Intel MKL support --- Enable netCDF support --- Disable ESMF support --- Disable multi-gases physics --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler --- Found LibXml2: /usr/lib64/libxml2.so (found version "2.9.1") --- Skipping tests, defined for dynamic build only --- Found Doxygen: /usr/bin/doxygen (found version "1.8.5") found components: doxygen dot --- Detecting OpenMP flags for Intel C compiler: -qopenmp --- Detecting OpenMP flags for Intel C++ compiler: -qopenmp --- Detecting OpenMP flags for Intel Fortran compiler: -qopenmp --- Enable OpenMP support for C/C++/Fortran compiler -INFOGot CCPP_SCHEMES from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFDL_parse_tracers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aer_cloud.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerclm_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/aerinterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/calpreciptype.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldwat2m_micro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cldmacro.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/date_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/funcphys.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcycle.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfs_phy_tracer_config.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gocart_tracer_config_stub.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2o_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ointerp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccn_def.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iccninterp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/iounitdef.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/machine.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mersenne_twister.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbl.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg2_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/micro_mg3_0.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bfmicrophysics.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/multi_gases.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_model.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_parameters.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_nst_water_prop.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_radar.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_mp_thompson_make_number_concentrations.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MP_FER_HIRES.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_bl_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_mynn.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_SF_JSFC.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_BL_MYJPBL.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmp_glacier.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_noahmplsm.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_module.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ugwp_driver_v0.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_triggers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_initialize.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_solvers.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_utils.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_orowam2017.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_lsatdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_orodis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_vert_wmsdis.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpblt.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfpbltq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscu.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mfscuq.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/noahmp_tables.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/num_parthds.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozne_def.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozinterp.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physcons.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/physparam.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radcons.f90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_aerosols.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_astronomy.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_clouds.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_gases.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radiation_surface.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_datatb.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_param.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfaerosols.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfcsub.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sflx.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/surface_perturbation.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_deep.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_sh.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/tridi.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/wv_saturation.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_sf_ruclsm.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/namelist_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/set_soilveg_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_soil_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/GFS_layer/GFS_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/gfsphysics/CCPP_layer/CCPP_typedefs.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rayleigh_damp.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_composites.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radsw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_ocean.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdc.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_cloud_microphys.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_time_vary_pre.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_setup.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gscond.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ysuvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_SCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_sice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfdeepcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdif.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv_aw_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_phys_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/samfshalcnv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/precpd.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_noahmp_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_fer_hires.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/radlw_main.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_debug.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNrad_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys_2015.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/satmedmfvdifq.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cs_conv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shinhongvdif.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/h2ophys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_nst.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_ntiedtke.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diff.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_diag_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/m_micro.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gfdl_fv_sat_adj.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_surface_loop_control.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gcm_shoc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rrtmg_post.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_GWD_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_sw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_MP_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cu_gf_driver.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_PBL_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninedmf_hafs.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/mp_thompson.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rrtmg_lw_pre.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/gwdps.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/shalcnv.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cires_ugwp.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/get_prs_fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_suite_init_finalize_test.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYJSFC_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/module_MYNNPBL_wrapper.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/ozphys.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv_ruc.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_stochastics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/drag_suite.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_drv.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sfc_cice.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/sascnvn.F;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/lsm_ruc_sfc_sice_interstitial.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_DCNV_generic.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/cnvc90.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/GFS_rad_time_vary.fv3.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/maximum_hourly_diagnostics.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/rascnv.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/dcyc2.f;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/FV3/ccpp/physics/physics/moninshoc.f -INFOGot CAPS from environment variable: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stochastics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_physics_cap.F90;/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9/FV3/ccpp/physics/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90 -Force 64 bits in CCPP_layer -Force 64 bits in stochastic_physics --- Configuring done --- Generating done --- Build files have been written to: /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/tests/build_fv3_9 -+ make -j 4 -Scanning dependencies of target fv3cpl -Scanning dependencies of target ccpp -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cap_cpl.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_types.F90.o -[ 0%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_errors.F90.o -[ 0%] Building Fortran object FV3/cpl/CMakeFiles/fv3cpl.dir/module_cplfields.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp.F90.o -[ 1%] Building Fortran object FV3/ccpp/framework/src/CMakeFiles/ccpp.dir/ccpp_api.F90.o -[ 1%] Linking Fortran static library libccpp.a -[ 1%] Built target ccpp -[ 1%] Linking Fortran static library libfv3cpl.a -[ 1%] Built target fv3cpl -Scanning dependencies of target ccppphys -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mersenne_twister.f.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/machine.F.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFDL_parse_tracers.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_radar.F90.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iounitdef.f.o -[ 1%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg.f.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/namelist_soilveg_ruc.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmp_glacier.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_noahmplsm.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/noahmp_tables.f90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_soil_pre.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physcons.F90.o -[ 2%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerclm_def.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/physparam.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2o_def.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccn_def.F.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg_utils.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozne_def.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/surface_perturbation.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_deep.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_gfdl_cloud_microphys.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radcons.f90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg.f.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MP_FER_HIRES.F90.o -Scanning dependencies of target fms -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/platform/platform.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_parameter.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_core.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_input.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 3%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/cloud_interpolator.F90.o -[ 3%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_BL_MYJPBL.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 4%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_io.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/MersenneTwister.F90.o -[ 5%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres_k.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/date_def.f.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson.F90.o -[ 6%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdps.f.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/constants/constants.F90.o -[ 6%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 7%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_SF_JSFC.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_ruclsm.F90.o -[ 8%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/set_soilveg_ruc.F90.o -[ 9%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_post.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cnvc90.f.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_DCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_GWD_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_MP_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_PBL_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_SCNV_generic.F90.o -[ 10%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_composites.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_loop_control.F90.o -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_efp.F90.o -[ 11%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/maximum_hourly_diagnostics.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 11%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_memutils.F90.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_pset.F90.o -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 12%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rayleigh_damp.f.o -[ 12%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_type.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag_post.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/gradient.F90.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diff.f.o -[ 13%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_stochastics.F90.o -[ 13%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_domains.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/CCPP_layer/CCPP_typedefs.F90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/funcphys.f90.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_param.f.o -[ 14%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_param.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_parameters.f90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bl_mynn.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_initialize.F90.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_astronomy.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_surface.f.o -[ 15%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfaerosols.F.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aerinterp.F90.o -[ 16%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ointerp.f90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/iccninterp.F90.o -[ 17%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozinterp.f90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_mp_thompson_make_number_concentrations.F90.o -[ 18%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/aer_cloud.F.o -[ 19%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_sh.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/dcyc2.f.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/get_prs_fv3.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_surface_generic.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_fv_sat_adj.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfdl_cloud_microphys.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/wv_saturation.F.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/__/__/gfsphysics/GFS_layer/GFS_typedefs.F90.o -[ 20%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_water_prop.f90.o -[ 21%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_module.F90.o -[ 22%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_bfmicrophysics.f.o -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_datatb.f.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 23%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_aerosols.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_gases.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_datatb.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_sf_mynn.F90.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf.f.o -[ 24%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv.f.o -[ 25%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfdeepcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/samfshalcnv.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_diag.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_sice.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gscond.f.o -[ 26%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/precpd.f.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_time_vary_pre.fv3.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_fast_physics_cap.F90.o -[ 27%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radiation_clouds.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radlw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/radsw_main.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_nst_model.f90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldmacro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cldwat2m_micro.F.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg2_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/micro_mg3_0.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_nst.f.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_setup.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_interstitial.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_post.F90.o -[ 28%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rrtmg_pre.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_post.F90.o -[ 29%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_lw_pre.F90.o -[ 30%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_post.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rrtmg_sw_pre.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stochastics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_phys_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_rad_time_vary.fv3.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_stochastics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_physics_cap.F90.o -[ 31%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_physics_cap.F90.o -[ 31%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_io.F90.o -[ 32%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters_comm.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 32%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_radiation_cap.F90.o -[ 33%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_time_vary_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_radiation_cap.F90.o -[ 34%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_time_vary_cap.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/memutils/memutils.F90.o -[ 34%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms_io.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 35%] Building Fortran object CMakeFiles/fms.dir/FMS/fms/fms.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bicubic.F90.o -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/time_manager.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 36%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_bilinear.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_conserve.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp_spherical.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/axis_utils/axis_utils.F90.o -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_grid.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 37%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/field_manager.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/mosaic.F90.o -[ 38%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/gaussian_topog.F90.o -[ 38%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_cap.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/ccpp_FV3_GFS_2017_stretched_cap.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_manager/get_cal_time.F90.o -[ 39%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_debug.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/horiz_interp/horiz_interp.F90.o -[ 39%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/GFS_suite_init_finalize_test.F90.o -[ 40%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv.F90.o -[ 41%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_data.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cs_conv_aw_adj.F90.o -[ 42%] Building Fortran object CMakeFiles/fms.dir/FMS/field_manager/fm_util.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver.F90.o -[ 42%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_post.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_types.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/time_interp/time_interp_external.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_axis.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_gf_driver_pre.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manifest.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/xbt_drop_rate_adjust.f90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_post.F90.o -[ 43%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/write_ocean_data.F90.o -[ 43%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cu_ntiedtke_pre.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_output.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/drag_suite.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcm_shoc.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_util.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gfs_phy_tracer_config.F.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gwdc.f.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/h2ophys.f.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_table.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/lsm_ruc_sfc_sice_interstitial.F90.o -[ 44%] Building Fortran object CMakeFiles/fms.dir/FMS/diag_manager/diag_manager.F90.o -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 44%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/m_micro_interstitial.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJPBL_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYJSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNPBL_wrapper.F90.o -[ 45%] Building Fortran object CMakeFiles/fms.dir/FMS/data_override/data_override.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNSFC_wrapper.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_post.F90.o -[ 45%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/module_MYNNrad_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninedmf_hafs.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/moninshoc.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_fer_hires.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_post.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mp_thompson_pre.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/multi_gases.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ozphys_2015.f.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/rascnv.F90.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sascnvn.F.o -[ 46%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdif.F.o -[ 47%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/satmedmfvdifq.F.o -[ 48%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_cice.f.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_drv_ruc.F90.o -[ 49%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_noahmp_drv.f.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/coupler_types.F90.o -[ 50%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/stock_constants.F90.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfc_ocean.F.o -[ 51%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sfcsub.F.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shalcnv.F.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/shinhongvdif.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ugwp_driver_v0.F.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/amip_interp/amip_interp.F90.o -[ 52%] Building Fortran object CMakeFiles/fms.dir/FMS/astronomy/astronomy.F90.o -[ 52%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/ysuvdif.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/block_control/block_control.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/calpreciptype.f90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/column_diagnostics/column_diagnostics.F90.o -[ 53%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gcycle.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/atmos_ocean_fluxes.F90.o -[ 53%] Building Fortran object CMakeFiles/fms.dir/FMS/coupler/ensemble_manager.F90.o -[ 54%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/gocart_tracer_config_stub.f.o -[ 54%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/drifters.F90.o -Compiling in MPI mode (with or without MPP) -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbl.f.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/exchange/xgrid.F90.o -[ 55%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft.F90.o -[ 55%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_triggers.F90.o -[ 56%] Building Fortran object CMakeFiles/fms.dir/FMS/fft/fft99.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 57%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_solvers.F90.o -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/interpolator/interpolator.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_ugwp_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 58%] Building Fortran object CMakeFiles/fms.dir/FMS/mosaic/grid.F90.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_orowam2017.f.o -[ 58%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_lsatdis.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_orodis.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/cires_vert_wmsdis.F90.o -[ 59%] Building Fortran object CMakeFiles/fms.dir/FMS/mpp/mpp_utilities.F90.o -[ 59%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpblt.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfpbltq.f.o -[ 60%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core.F90.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscu.f.o -[ 60%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/mfscuq.f.o -[ 61%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/num_parthds.F.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/sflx.f.o -[ 62%] Building Fortran object FV3/ccpp/physics/CMakeFiles/ccppphys.dir/physics/tridi.f.o -[ 62%] Building Fortran object CMakeFiles/fms.dir/FMS/oda_tools/oda_core_ecda.F90.o -[ 62%] Linking Fortran static library libccppphys.a -[ 62%] Built target ccppphys -Scanning dependencies of target gfsphysics -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/machine.F.o -[ 62%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/namelist_soilveg.f.o -[ 63%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/mersenne_twister.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/GFDL_parse_tracers.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physparam.f.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_typedefs.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/physcons.F90.o -[ 64%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radlw_param.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/radsw_param.f.o -[ 65%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_typedefs.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/random_numbers/random_numbers.F90.o -[ 65%] Building Fortran object CMakeFiles/fms.dir/FMS/sat_vapor_pres/sat_vapor_pres.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/station_data/station_data.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/topography/topography.F90.o -[ 66%] Building Fortran object CMakeFiles/fms.dir/FMS/tracer_manager/tracer_manager.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/tridiagonal/tridiagonal.F90.o -[ 67%] Building Fortran object CMakeFiles/fms.dir/FMS/drifters/quicksort.F90.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/memutils/memuse.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/create_xgrid.c.o -[ 67%] Building C object CMakeFiles/fms.dir/FMS/mosaic/gradient_c2l.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/interp.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/mosaic_util.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/mosaic/read_mosaic.c.o -[ 68%] Building C object CMakeFiles/fms.dir/FMS/affinity/affinity.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/nsclock.c.o -[ 69%] Building C object CMakeFiles/fms.dir/FMS/mpp/threadloc.c.o -[ 69%] Linking Fortran static library FMS/libfms.a -[ 69%] Built target fms -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_driver.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_diagnostics.F90.o -[ 69%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/CCPP_layer/CCPP_data.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_restart.F90.o -[ 70%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/GFS_layer/GFS_abstraction_layer.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/__/ccpp/physics/ccpp_static_api.F90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/noahmp_tables.f90.o -[ 71%] Building Fortran object FV3/gfsphysics/CMakeFiles/gfsphysics.dir/physics/set_soilveg.f.o -[ 71%] Linking Fortran static library libgfsphysics.a -[ 71%] Built target gfsphysics -Scanning dependencies of target ccppdriver -[ 71%] Building Fortran object FV3/ccpp/driver/CMakeFiles/ccppdriver.dir/CCPP_driver.F90.o -Scanning dependencies of target ipd -[ 71%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_typedefs.F90.o -[ 72%] Linking Fortran static library libccppdriver.a -[ 72%] Building Fortran object FV3/ipd/CMakeFiles/ipd.dir/IPD_driver.F90.o -[ 72%] Built target ccppdriver -[ 73%] Linking Fortran static library libipd.a -[ 73%] Built target ipd -Scanning dependencies of target io -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_internal_state.F90.o -[ 74%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_fv3_io_def.F90.o -Scanning dependencies of target fv3core -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_sst.F90.o -[ 74%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_arrays.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_fill.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_nemsio.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sim_nc_mod.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_write_netcdf_parallel.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/DYCORE_typedefs.F90.o -[ 75%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_gfs.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_mp_mod.F90.o -[ 75%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/sorted_index.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_sg.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_eta.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_timing.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/boundary.F90.o -[ 76%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_grid_utils.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 76%] Building Fortran object FV3/io/CMakeFiles/io.dir/module_wrt_grid_comp.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/FV3GFS_io.F90.o -[ 77%] Building Fortran object FV3/io/CMakeFiles/io.dir/ffsync.F90.o -[ 78%] Building Fortran object FV3/io/CMakeFiles/io.dir/post_nems_routines.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_mapz.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/a2b_edge.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_surf_map.F90.o -[ 78%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/tp_core.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_grid_tools.F90.o -[ 79%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/init_hydro.F90.o -[ 80%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_treat_da_inc.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/sw_core.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_iau_mod.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_diagnostics.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_io.F90.o -[ 81%] Linking Fortran static library libio.a -[ 81%] Built target io -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_utils.F90.o -[ 81%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/nh_core.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_nudge.F90.o -[ 82%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_regional_bc.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/fv_nggps_diag.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/test_cases.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_tracer2d.F90.o -[ 83%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_update_phys.F90.o -[ 84%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/dyn_core.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/external_ic.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/tools/fv_restart.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_control.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_nesting.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/fv_dynamics.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/driver/fvGFS/atmosphere.F90.o -[ 85%] Building Fortran object FV3/CMakeFiles/fv3core.dir/atmos_cubed_sphere/model/multi_gases.F90.o -Using 8-byte addressing -Using pure routines. -Using allocatable derived type array members. -Using cray pointers. -[ 86%] Linking Fortran static library libfv3core.a -[ 86%] Built target fv3core -Scanning dependencies of target stochastic_physics -[ 86%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_resol_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/update_ca.f90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/spectral_layout.F90.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_gg_def.f.o -[ 87%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_layout_lag.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/glats_stochy.f.o -[ 88%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_namelist_def.F90.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_lag_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/epslon_stochy.f.o -[ 89%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_lats_node_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_ls_node_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/gozrineo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/pln2eo_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/setlats_a_stochy.f.o -[ 90%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_internal_state_mod.F90.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dezouv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/dozeuv_stochy.f.o -[ 91%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/four_to_grid_stochy.F.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/compns_stochy.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_patterngenerator.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/sumfln_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_lag_stochy.f.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/getcon_spectral.F90.o -[ 92%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/initialize_spectral_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochy_data_mod.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/get_stochy_pattern.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/stochastic_physics.F90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/num_parthds_stochy.f.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/cellular_automata.f90.o -[ 93%] Building Fortran object FV3/stochastic_physics/CMakeFiles/stochastic_physics.dir/__/__/stochastic_physics/plumes.f90.o -[ 94%] Linking Fortran static library libstochastic_physics.a -[ 94%] Built target stochastic_physics -Scanning dependencies of target fv3cap -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fv3_config.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/atmos_model.F90.o -[ 94%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/module_fcst_grid_comp.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/time_utils.F90.o -[ 95%] Building Fortran object FV3/CMakeFiles/fv3cap.dir/fv3_cap.F90.o -[ 96%] Linking Fortran static library libfv3cap.a -[ 96%] Built target fv3cap -Scanning dependencies of target NEMS.exe -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_SpaceWeather.F90.o -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_INTERNAL_STATE.F90.o -[ 96%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR_methods.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/ENS_Cpl/ENS_CplComp_ESMFMod_STUB.F90.o -[ 97%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_UTILS.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_INTERNAL_STATE.F90.o -[ 98%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_Rusage.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_MEDIATOR.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_EARTH_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/module_NEMS_GRID_COMP.F90.o -[100%] Building Fortran object CMakeFiles/NEMS.exe.dir/NEMS/src/MAIN_NEMS.F90.o -[100%] Building C object CMakeFiles/NEMS.exe.dir/NEMS/src/nems_c_rusage.c.o -[100%] Linking Fortran executable NEMS.exe -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/lib/libjasper.a(jas_stream.o): In function `jas_stream_tmpfile': -/usrx/local/prod/packages/gnu/4.8.5/jasper/1.900.29/src/jasper-1.900.29/src/libjasper/base/jas_stream.c:520: warning: the use of `tmpnam' is dangerous, better use `mkstemp' -[100%] Built target NEMS.exe -+ mv NEMS.exe ../fv3_9.exe -+ cp /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/MG3_rv1/ufs-weather-model/modulefiles/wcoss_dell_p3/fv3 ../modules.fv3_9 -+ cd .. -+ '[' YES = YES ']' -+ rm -rf build_fv3_9 -+ elapsed=596 -+ echo 'Elapsed time 596 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished' -Elapsed time 596 seconds. Compiling REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y finished ++ [[ 4 != 4 ]] ++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ export RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ RUNDIR_ROOT=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913 ++ export 'MAKE_OPT=CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ MAKE_OPT='CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y' ++ export COMPILE_NR=9 ++ COMPILE_NR=9 ++ cd /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests ++ [[ -e /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9.env ]] ++ source /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9.env +++ export MACHINE_ID=wcoss_dell_p3 +++ MACHINE_ID=wcoss_dell_p3 +++ export PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ PATHRT=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests +++ export PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ PATHTR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model +++ export SCHEDULER=lsf +++ SCHEDULER=lsf +++ export ACCNR=GFS-DEV +++ ACCNR=GFS-DEV +++ export QUEUE=dev_transfer +++ QUEUE=dev_transfer +++ export PARTITION= +++ PARTITION= +++ export ROCOTO=false +++ ROCOTO=false +++ export ECFLOW=true +++ ECFLOW=true +++ export REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ REGRESSIONTEST_LOG=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/RegressionTests_wcoss_dell_p3.log +++ export LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 +++ LOG_DIR=/gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/log_wcoss_dell_p3 ++ source default_vars.sh +++ '[' wcoss_dell_p3 = wcoss ']' +++ '[' wcoss_dell_p3 = wcoss_cray ']' +++ '[' wcoss_dell_p3 = wcoss_dell_p3 ']' +++ TASKS_dflt=150 +++ TPN_dflt=28 +++ INPES_dflt=3 +++ JNPES_dflt=8 +++ TASKS_thrd=84 +++ TPN_thrd=14 +++ INPES_thrd=3 +++ JNPES_thrd=4 +++ TASKS_stretch=48 +++ TPN_stretch=28 +++ INPES_stretch=2 +++ JNPES_stretch=4 +++ TASKS_strnest=96 +++ TPN_strnest=28 +++ INPES_strnest=2 +++ JNPES_strnest=4 +++ COMPILER=intel +++ [[ intel = gnu ]] +++ [[ intel = pgi ]] +++ WLCLK_dflt=15 ++ export TEST_NAME=compile ++ TEST_NAME=compile ++ export TEST_NR=9 ++ TEST_NR=9 ++ export JBNME=compile_9 ++ JBNME=compile_9 ++ export RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9 ++ RUNDIR=/gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9 ++ source rt_utils.sh +++ set -eu +++ [[ /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr94/ufs-weather-model/tests/run_compile.sh = \r\t\_\u\t\i\l\s\.\s\h ]] +++ UNIT_TEST=false ++ source atparse.bash ++ mkdir -p /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9 ++ cd /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/compile_9 ++ [[ lsf = \s\l\u\r\m ]] ++ [[ lsf = \l\s\f ]] ++ atparse ++ local __set_x ++ '[' -o xtrace ']' ++ __set_x='set -x' ++ set +x ++ [[ false = \f\a\l\s\e ]] ++ submit_and_wait job_card ++ [[ -z job_card ]] ++ '[' -o xtrace ']' ++ set_x='set -x' ++ set +x +ESUB: MEMORY LIMIT RLIMIT_RSS set to 8192 - with rusage set in shared job. +Job id 25844134 +TEST 9 compile is waiting to enter the queue +1 min. TEST 9 compile is running, Status: RUN +2 min. TEST 9 compile is running, Status: RUN +3 min. TEST 9 compile is running, Status: RUN +4 min. TEST 9 compile is running, Status: RUN +5 min. TEST 9 compile is running, Status: RUN +6 min. TEST 9 compile is running, Status: RUN +7 min. TEST 9 compile is finished, Status: DONE ++ elapsed=426 ++ echo 'Elapsed time 426 seconds. Compile 9' +Elapsed time 426 seconds. Compile 9 diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index bca6e74c7d..84c3e96993 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,10 +1,10 @@ -Fri Apr 10 02:41:35 UTC 2020 +Wed Jun 3 22:43:24 UTC 2020 Start Regression test -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_restart -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_read_inc_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,118 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -471,92 +375,24 @@ Checking test 008 fv3_gfdlmprad_noahmp results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 008 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wsm6 -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wsm6 -Checking test 009 fv3_wsm6 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 009 fv3_wsm6 PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_netcdf_esmf -Checking test 010 fv3_wrtGauss_netcdf_esmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -599,12 +435,12 @@ Checking test 010 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_wrtGauss_netcdf_esmf PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_netcdf -Checking test 011 fv3_wrtGauss_netcdf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGlatlon_netcdf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -647,12 +483,12 @@ Checking test 011 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf PASS +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio -Checking test 012 fv3_wrtGauss_nemsio results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -695,12 +531,12 @@ Checking test 012 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_nemsio PASS +Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio_c192 -Checking test 013 fv3_wrtGauss_nemsio_c192 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -743,12 +579,12 @@ Checking test 013 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_wrtGauss_nemsio_c192 PASS +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stochy -Checking test 014 fv3_stochy results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stochy_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +647,12 @@ Checking test 014 fv3_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_stochy PASS +Test 011 fv3_ccpp_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_iau -Checking test 015 fv3_iau results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_iau_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_iau_prod +Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,22 +715,42 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_iau PASS +Test 012 fv3_ccpp_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmgshoc -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmgshoc -Checking test 016 fv3_csawmgshoc results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_ca_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_ca_prod +Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -927,12 +783,12 @@ Checking test 016 fv3_csawmgshoc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_csawmgshoc PASS +Test 013 fv3_ccpp_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmg -Checking test 017 fv3_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_lheatstrg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_lheatstrg_prod +Checking test 014 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -975,12 +831,12 @@ Checking test 017 fv3_csawmg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_csawmg PASS +Test 014 fv3_ccpp_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_rasmgshoc -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_rasmgshoc -Checking test 018 fv3_rasmgshoc results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmprad_prod +Checking test 015 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1011,24 +867,25 @@ Checking test 018 fv3_rasmgshoc results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_rasmgshoc PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 015 fv3_ccpp_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg3shoc127 -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmg3shoc127 -Checking test 019 fv3_csawmg3shoc127 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 016 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1059,34 +916,33 @@ Checking test 019 fv3_csawmg3shoc127 results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_csawmg3shoc127 PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 016 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_satmedmf -Checking test 020 fv3_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 017 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1119,22 +975,45 @@ Checking test 020 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 020 fv3_satmedmf PASS + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 017 fv3_ccpp_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_lheatstrg -Checking test 021 fv3_lheatstrg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_control_32bit_prod +Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1167,5030 +1046,12 @@ Checking test 021 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_lheatstrg PASS +Test 018 fv3_ccpp_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfsv16_csawmg -Checking test 022 fv3_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gocart_clm -Checking test 023 fv3_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 023 fv3_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfsv16_csawmgt -Checking test 024 fv3_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 024 fv3_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad -Checking test 025 fv3_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 025 fv3_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_atmwav -Checking test 026 fv3_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 026 fv3_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio_c768 -Checking test 027 fv3_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 027 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_appbuild -Checking test 028 fv3_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_control_32bit -Checking test 029 fv3_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 029 fv3_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_32bit_post -Checking test 030 fv3_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 030 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched -Checking test 031 fv3_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 031 fv3_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched_nest -Checking test 032 fv3_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 032 fv3_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched_nest_quilt -Checking test 033 fv3_stretched_nest_quilt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing dynf006.nc .........OK - Comparing dynf012.nc .........OK - Comparing dynf024.nc .........OK - Comparing dynf048.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing phyf006.nc .........OK - Comparing phyf012.nc .........OK - Comparing phyf024.nc .........OK - Comparing phyf048.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 033 fv3_stretched_nest_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_control -Checking test 034 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 034 fv3_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_restart -Checking test 035 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 035 fv3_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_quilt -Checking test 036 fv3_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 036 fv3_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_c768 -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_c768 -Checking test 037 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 037 fv3_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_control_debug -Checking test 038 fv3_control_debug results .... -Test 038 fv3_control_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched_nest_debug -Checking test 039 fv3_stretched_nest_debug results .... -Test 039 fv3_stretched_nest_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_control_repro -Checking test 040 fv3_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_decomp_repro -Checking test 041 fv3_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_2threads_repro -Checking test 042 fv3_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_restart_repro -Checking test 043 fv3_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_read_inc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_read_inc_repro -Checking test 044 fv3_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_netcdf_esmf_repro -Checking test 045 fv3_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 045 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_netcdf_repro -Checking test 046 fv3_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 046 fv3_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio_repro -Checking test 047 fv3_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio_c192_repro -Checking test 048 fv3_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 048 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stochy_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stochy_repro -Checking test 049 fv3_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 049 fv3_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_iau_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_iau_repro -Checking test 050 fv3_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 050 fv3_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmp_repro -Checking test 051 fv3_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 051 fv3_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_gwd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_gwd_repro -Checking test 052 fv3_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 052 fv3_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_noahmp_repro -Checking test 053 fv3_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 053 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmgshoc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmgshoc_repro -Checking test 054 fv3_csawmgshoc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_csawmgshoc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg3shoc127_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmg3shoc127_repro -Checking test 055 fv3_csawmg3shoc127 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_csawmg3shoc127 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_csawmg_repro -Checking test 056 fv3_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 056 fv3_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_satmedmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_satmedmf_repro -Checking test 057 fv3_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmg_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfsv16_csawmg_repro -Checking test 058 fv3_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 058 fv3_gfsv16_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gocart_clm_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gocart_clm_repro -Checking test 059 fv3_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 059 fv3_gocart_clm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmgt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfsv16_csawmgt_repro -Checking test 060 fv3_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_gfsv16_csawmgt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_repro -Checking test 061 fv3_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 061 fv3_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_atmwav_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_atmwav_repro -Checking test 062 fv3_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 062 fv3_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_wrtGauss_nemsio_c768_repro -Checking test 063 fv3_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 063 fv3_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_appbuild_repro -Checking test 064 fv3_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 064 fv3_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_control_32bit_repro -Checking test 065 fv3_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 065 fv3_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_32bit_post_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmprad_32bit_post_repro -Checking test 066 fv3_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 066 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched_repro -Checking test 067 fv3_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 067 fv3_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_stretched_nest_repro -Checking test 068 fv3_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 068 fv3_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_control_repro -Checking test 069 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 069 fv3_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_restart_repro -Checking test 070 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 070 fv3_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_quilt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_quilt_repro -Checking test 071 fv3_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 071 fv3_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_regional_c768_repro -Checking test 072 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 072 fv3_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfdlmp_32bit_repro -Checking test 073 fv3_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 073 fv3_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_cpt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_cpt_repro -Checking test 074 fv3_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 074 fv3_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_control_repro -Checking test 075 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 075 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_decomp_repro -Checking test 076 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 076 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_2threads_repro -Checking test 077 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 077 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_restart_repro -Checking test 078 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 078 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_read_inc_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_read_inc_repro -Checking test 079 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 079 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_esmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 080 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 080 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 081 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 081 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 082 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 082 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c192_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 083 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 083 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stochy_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stochy_repro -Checking test 084 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 084 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_iau_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_iau_repro -Checking test 085 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 085 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_repro -Checking test 086 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 086 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_atmwav_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_atmwav_repro -Checking test 087 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 087 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_c768_repro -Checking test 088 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 088 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_appbuild_repro -Checking test 089 fv3_ccpp_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 089 fv3_ccpp_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_control_32bit_repro -Checking test 090 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 090 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stretched_repro -Checking test 091 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 091 fv3_ccpp_stretched PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stretched_nest_repro -Checking test 092 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 092 fv3_ccpp_stretched_nest PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_control_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_control_repro -Checking test 093 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 093 fv3_ccpp_regional_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_restart_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_restart_repro -Checking test 094 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 094 fv3_ccpp_regional_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_quilt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_quilt_repro -Checking test 095 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 095 fv3_ccpp_regional_quilt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_c768_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_c768_repro -Checking test 096 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 096 fv3_ccpp_regional_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmp_repro -Checking test 097 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 097 fv3_ccpp_gfdlmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_gwd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 098 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 098 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_noahmp_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 099 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 099 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_csawmg_repro -Checking test 100 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 100 fv3_ccpp_csawmg PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_satmedmf_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_satmedmf_repro -Checking test 101 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 101 fv3_ccpp_satmedmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_32bit_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmp_32bit_repro -Checking test 102 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 102 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_32bit_post_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_32bit_post_repro -Checking test 103 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 103 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_cpt_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_cpt_repro -Checking test 104 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 104 fv3_ccpp_cpt PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gsd_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gsd_repro -Checking test 105 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 105 fv3_ccpp_gsd PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_control_prod -Checking test 106 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 106 fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_decomp_prod -Checking test 107 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 107 fv3_ccpp_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_2threads_prod -Checking test 108 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 108 fv3_ccpp_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_restart_prod -Checking test 109 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 109 fv3_ccpp_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_read_inc_prod -Checking test 110 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 110 fv3_ccpp_read_inc PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 111 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 111 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 112 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 112 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 113 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 113 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 114 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 114 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stochy_prod -Checking test 115 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 115 fv3_ccpp_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_iau_prod -Checking test 116 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 116 fv3_ccpp_iau PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_prod -Checking test 117 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 117 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 118 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 118 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_wrtGauss_nemsio_c768_prod -Checking test 119 fv3_ccpp_wrtGauss_nemsio_c768 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf006.nemsio .........OK - Comparing dynf006.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing out_grd.glo_10m .........OK - Comparing out_grd.ant_9km .........OK - Comparing out_grd.aoc_9km .........OK -Test 119 fv3_ccpp_wrtGauss_nemsio_c768 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_appbuild_prod -Checking test 120 fv3_ccpp_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 120 fv3_ccpp_appbuild PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_control_32bit_prod -Checking test 121 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 121 fv3_ccpp_control_32bit PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stretched_prod -Checking test 122 fv3_ccpp_stretched results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_stretched_prod +Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6241,12 +1102,12 @@ Checking test 122 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 122 fv3_ccpp_stretched PASS +Test 019 fv3_ccpp_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stretched_nest_prod -Checking test 123 fv3_ccpp_stretched_nest results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_stretched_nest_prod +Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6308,64 +1169,112 @@ Checking test 123 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 123 fv3_ccpp_stretched_nest PASS +Test 020 fv3_ccpp_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_control_prod -Checking test 124 fv3_ccpp_regional_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_regional_control_prod +Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 124 fv3_ccpp_regional_control PASS +Test 021 fv3_ccpp_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_restart_prod -Checking test 125 fv3_ccpp_regional_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_restart_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_regional_restart_prod +Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 125 fv3_ccpp_regional_restart PASS +Test 022 fv3_ccpp_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_quilt_prod -Checking test 126 fv3_ccpp_regional_quilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_quilt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_regional_quilt_prod +Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 126 fv3_ccpp_regional_quilt PASS +Test 023 fv3_ccpp_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_regional_c768_prod -Checking test 127 fv3_ccpp_regional_c768 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_c768_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_regional_c768_prod +Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 127 fv3_ccpp_regional_c768 PASS +Test 024 fv3_ccpp_regional_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_control_debug_prod -Checking test 128 fv3_ccpp_control_debug results .... -Test 128 fv3_ccpp_control_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_control_debug_prod +Checking test 025 fv3_ccpp_control_debug results .... +Test 025 fv3_ccpp_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_stretched_nest_debug_prod -Checking test 129 fv3_ccpp_stretched_nest_debug results .... -Test 129 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_nest_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_stretched_nest_debug_prod +Checking test 026 fv3_ccpp_stretched_nest_debug results .... +Test 026 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmp_prod +Checking test 027 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 027 fv3_ccpp_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmp_prod -Checking test 130 fv3_ccpp_gfdlmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6408,12 +1317,12 @@ Checking test 130 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 130 fv3_ccpp_gfdlmp PASS +Test 028 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 131 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6456,12 +1365,12 @@ Checking test 131 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 131 fv3_ccpp_gfdlmprad_gwd PASS +Test 029 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 132 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmp_hwrfsas_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfdlmp_hwrfsas_prod +Checking test 030 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6504,12 +1413,60 @@ Checking test 132 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 132 fv3_ccpp_gfdlmprad_noahmp PASS +Test 030 fv3_ccpp_gfdlmp_hwrfsas PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_csawmg_prod +Checking test 031 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 031 fv3_ccpp_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_csawmg_prod -Checking test 133 fv3_ccpp_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_satmedmf_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6552,12 +1509,12 @@ Checking test 133 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 133 fv3_ccpp_csawmg PASS +Test 032 fv3_ccpp_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_satmedmf_prod -Checking test 134 fv3_ccpp_satmedmf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_satmedmfq_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6600,12 +1557,12 @@ Checking test 134 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 134 fv3_ccpp_satmedmf PASS +Test 033 fv3_ccpp_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmp_32bit_prod -Checking test 135 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6648,12 +1605,12 @@ Checking test 135 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 135 fv3_ccpp_gfdlmp_32bit PASS +Test 034 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 136 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6700,12 +1657,12 @@ Checking test 136 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 136 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 035 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_cpt_prod -Checking test 137 fv3_ccpp_cpt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_cpt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6754,12 +1711,12 @@ Checking test 137 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 137 fv3_ccpp_cpt PASS +Test 036 fv3_ccpp_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gsd_prod -Checking test 138 fv3_ccpp_gsd results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gsd_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6846,12 +1803,12 @@ Checking test 138 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 138 fv3_ccpp_gsd PASS +Test 037 fv3_ccpp_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_thompson_prod -Checking test 139 fv3_ccpp_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6914,12 +1871,12 @@ Checking test 139 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 139 fv3_ccpp_thompson PASS +Test 038 fv3_ccpp_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_thompson_no_aero_prod -Checking test 140 fv3_ccpp_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_no_aero_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/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 @@ -6982,12 +1939,12 @@ Checking test 140 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 140 fv3_ccpp_thompson_no_aero PASS +Test 039 fv3_ccpp_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v15p2_prod -Checking test 141 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v15p2_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfs_v15p2_prod +Checking test 040 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7050,12 +2007,12 @@ Checking test 141 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 141 fv3_ccpp_gfs_v15p2 PASS +Test 040 fv3_ccpp_gfs_v15p2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v16beta_prod -Checking test 142 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v16beta_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfs_v16beta_prod +Checking test 041 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7082,146 +2039,10 @@ Checking test 142 fv3_ccpp_gfs_v16beta results .... Comparing dynf000.tile6.nc .........OK Comparing dynf024.tile1.nc .........OK Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 142 fv3_ccpp_gfs_v16beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v15p2_debug_prod -Checking test 143 fv3_ccpp_gfs_v15p2_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 143 fv3_ccpp_gfs_v15p2_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v16beta_debug_prod -Checking test 144 fv3_ccpp_gfs_v16beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf006.tile1.nc .........OK - Comparing phyf006.tile2.nc .........OK - Comparing phyf006.tile3.nc .........OK - Comparing phyf006.tile4.nc .........OK - Comparing phyf006.tile5.nc .........OK - Comparing phyf006.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf006.tile1.nc .........OK - Comparing dynf006.tile2.nc .........OK - Comparing dynf006.tile3.nc .........OK - Comparing dynf006.tile4.nc .........OK - Comparing dynf006.tile5.nc .........OK - Comparing dynf006.tile6.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7242,24 +2063,24 @@ Checking test 144 fv3_ccpp_gfs_v16beta_debug results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 144 fv3_ccpp_gfs_v16beta_debug PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 041 fv3_ccpp_gfs_v16beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gsd_debug_prod -Checking test 145 fv3_ccpp_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_rrtmgp_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_rrtmgp_prod +Checking test 042 fv3_ccpp_rrtmgp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7322,12 +2143,12 @@ Checking test 145 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 145 fv3_ccpp_gsd_debug PASS +Test 042 fv3_ccpp_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_thompson_debug_prod -Checking test 146 fv3_ccpp_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 043 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7390,12 +2211,12 @@ Checking test 146 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 146 fv3_ccpp_thompson_debug PASS +Test 043 fv3_ccpp_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 147 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 044 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7458,22 +2279,42 @@ Checking test 147 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 147 fv3_ccpp_thompson_no_aero_debug PASS +Test 044 fv3_ccpp_gfs_v16beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfsv16_csawmg_prod -Checking test 148 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_rrtmgp_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_rrtmgp_debug_prod +Checking test 045 fv3_ccpp_rrtmgp_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7506,22 +2347,42 @@ Checking test 148 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 148 fv3_ccpp_gfsv16_csawmg PASS +Test 045 fv3_ccpp_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 149 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gsd_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gsd_debug_prod +Checking test 046 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7554,22 +2415,42 @@ Checking test 149 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 149 fv3_ccpp_gfsv16_csawmgt PASS +Test 046 fv3_ccpp_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gocart_clm_prod -Checking test 150 fv3_ccpp_gocart_clm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_thompson_debug_prod +Checking test 047 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7590,24 +2471,24 @@ Checking test 150 fv3_ccpp_gocart_clm results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 150 fv3_ccpp_gocart_clm PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 047 fv3_ccpp_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v15p2_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v15p2_repro -Checking test 151 fv3_ccpp_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 048 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7620,24 +2501,24 @@ Checking test 151 fv3_ccpp_gfs_v15p2 results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK Comparing dynf000.tile4.nc .........OK Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7658,54 +2539,34 @@ Checking test 151 fv3_ccpp_gfs_v15p2 results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 151 fv3_ccpp_gfs_v15p2 PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 048 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v16beta_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_ccpp_gfs_v16beta_repro -Checking test 152 fv3_ccpp_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfsv16_csawmg_prod +Checking test 049 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7726,54 +2587,34 @@ Checking test 152 fv3_ccpp_gfs_v16beta results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 152 fv3_ccpp_gfs_v16beta PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 049 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v15p2_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfs_v15p2_repro -Checking test 153 fv3_gfs_v15p2 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 050 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7794,54 +2635,34 @@ Checking test 153 fv3_gfs_v15p2 results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 153 fv3_gfs_v15p2 PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 050 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/INTEL/fv3_gfs_v16beta_repro -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_68463/fv3_gfs_v16beta_repro -Checking test 154 fv3_gfs_v16beta results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gocart_clm_ccpp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_188298/fv3_ccpp_gocart_clm_prod +Checking test 051 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -7874,9 +2695,9 @@ Checking test 154 fv3_gfs_v16beta results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 154 fv3_gfs_v16beta PASS +Test 051 fv3_ccpp_gocart_clm PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 10 03:41:21 UTC 2020 -Elapsed time: 00h:59m:48s. Have a nice day! +Wed Jun 3 23:48:49 UTC 2020 +Elapsed time: 01h:05m:29s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log new file mode 100644 index 0000000000..ae17df4ef2 --- /dev/null +++ b/tests/RegressionTests_orion.intel.log @@ -0,0 +1,2511 @@ +Thu Jun 4 09:11:02 CDT 2020 +Start Regression test + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 001 fv3_ccpp_control PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 002 fv3_ccpp_decomp PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 003 fv3_ccpp_2threads PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 004 fv3_ccpp_restart PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_read_inc_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 005 fv3_ccpp_read_inc PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_netcdf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 007 fv3_ccpp_wrtGauss_netcdf PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 008 fv3_ccpp_wrtGauss_nemsio results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 008 fv3_ccpp_wrtGauss_nemsio PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio_c192 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 009 fv3_ccpp_wrtGauss_nemsio_c192 PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stochy_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_stochy_prod +Checking test 010 fv3_ccpp_stochy results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 010 fv3_ccpp_stochy PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_iau_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_iau_prod +Checking test 011 fv3_ccpp_iau results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 011 fv3_ccpp_iau PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_ca_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_ca_prod +Checking test 012 fv3_ccpp_ca results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 012 fv3_ccpp_ca PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmprad_prod +Checking test 013 fv3_ccpp_gfdlmprad results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 013 fv3_ccpp_gfdlmprad PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_atmwav_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 014 fv3_ccpp_gfdlmprad_atmwav results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 014 fv3_ccpp_gfdlmprad_atmwav PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_wrtGauss_nemsio_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_wrtGauss_nemsio_c768_prod +Checking test 015 fv3_ccpp_wrtGauss_nemsio_c768 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf006.nemsio .........OK + Comparing dynf006.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing out_grd.glo_10m .........OK + Comparing out_grd.ant_9km .........OK + Comparing out_grd.aoc_9km .........OK +Test 015 fv3_ccpp_wrtGauss_nemsio_c768 PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 016 fv3_ccpp_control_32bit PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 017 fv3_ccpp_stretched PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_regional_control_prod +Checking test 019 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 019 fv3_ccpp_regional_control PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_restart_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_regional_restart_prod +Checking test 020 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 020 fv3_ccpp_regional_restart PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_quilt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_regional_quilt_prod +Checking test 021 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 021 fv3_ccpp_regional_quilt PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_regional_c768_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_regional_c768_prod +Checking test 022 fv3_ccpp_regional_c768 results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 022 fv3_ccpp_regional_c768 PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_control_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... +Test 023 fv3_ccpp_control_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_stretched_nest_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 fv3_ccpp_stretched_nest_debug results .... +Test 024 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmp PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_gwd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 026 fv3_ccpp_gfdlmprad_gwd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 026 fv3_ccpp_gfdlmprad_gwd PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_noahmp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 027 fv3_ccpp_gfdlmprad_noahmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 028 fv3_ccpp_csawmg PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_satmedmf_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 029 fv3_ccpp_satmedmf PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmp_32bit_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmp_32bit_prod +Checking test 030 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 030 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfdlmprad_32bit_post_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_cpt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_cpt_prod +Checking test 032 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_cpt PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gsd_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gsd_prod +Checking test 033 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 033 fv3_ccpp_gsd PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_thompson_prod +Checking test 034 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_thompson PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_no_aero_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_thompson_no_aero_prod +Checking test 035 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v15p2_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfs_v15p2_prod +Checking test 036 fv3_ccpp_gfs_v15p2 results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 036 fv3_ccpp_gfs_v15p2 PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v16beta_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfs_v16beta_prod +Checking test 037 fv3_ccpp_gfs_v16beta results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 037 fv3_ccpp_gfs_v16beta PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_rrtmgp_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_rrtmgp_prod +Checking test 038 fv3_ccpp_rrtmgp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_rrtmgp PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v15p2_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfs_v15p2_debug_prod +Checking test 039 fv3_ccpp_gfs_v15p2_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_gfs_v15p2_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfs_v16beta_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfs_v16beta_debug_prod +Checking test 040 fv3_ccpp_gfs_v16beta_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfs_v16beta_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_rrtmgp_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_rrtmgp_debug_prod +Checking test 041 fv3_ccpp_rrtmgp_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_rrtmgp_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gsd_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gsd_debug_prod +Checking test 042 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 042 fv3_ccpp_gsd_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_thompson_debug_prod +Checking test 043 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 043 fv3_ccpp_thompson_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_thompson_no_aero_debug_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 044 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfsv16_csawmg_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfsv16_csawmg_prod +Checking test 045 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 045 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gfsv16_csawmgt_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 046 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 046 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /work/noaa/fv3-cam/djovic/RT/NEMSfv3gfs/develop-20200603/INTEL/fv3_gocart_clm_ccpp +working dir = /work/noaa/stmp/dheinzel/stmp/dheinzel/FV3_RT/rt_409080/fv3_ccpp_gocart_clm_prod +Checking test 047 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 047 fv3_ccpp_gocart_clm PASS + + +REGRESSION TEST WAS SUCCESSFUL +Thu Jun 4 09:45:39 CDT 2020 +Elapsed time: 00h:34m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index e0e875d810..362a17405c 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,10 +1,10 @@ -Fri Apr 10 03:59:43 UTC 2020 +Wed Jun 3 23:50:29 UTC 2020 Start Regression test -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_restart -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_read_inc -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_read_inc_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,186 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_gfdlmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 008 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_thompson -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_thompson -Checking test 009 fv3_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -539,92 +375,24 @@ Checking test 009 fv3_thompson results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -Test 009 fv3_thompson PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wsm6 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_wsm6 -Checking test 010 fv3_wsm6 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 010 fv3_wsm6 PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_wrtGauss_netcdf_esmf -Checking test 011 fv3_wrtGauss_netcdf_esmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -667,12 +435,12 @@ Checking test 011 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf_esmf PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_wrtGauss_netcdf -Checking test 012 fv3_wrtGauss_netcdf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -715,12 +483,12 @@ Checking test 012 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_netcdf PASS +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_wrtGauss_nemsio -Checking test 013 fv3_wrtGauss_nemsio results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -763,12 +531,12 @@ Checking test 013 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_wrtGauss_nemsio PASS +Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_wrtGauss_nemsio_c192 -Checking test 014 fv3_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -811,12 +579,12 @@ Checking test 014 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_wrtGauss_nemsio_c192 PASS +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stochy -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_stochy -Checking test 015 fv3_stochy results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stochy_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -879,12 +647,12 @@ Checking test 015 fv3_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_stochy PASS +Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_iau -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_iau -Checking test 016 fv3_iau results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_iau_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_iau_prod +Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -947,12 +715,12 @@ Checking test 016 fv3_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_iau PASS +Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmgshoc -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_csawmgshoc -Checking test 017 fv3_csawmgshoc results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_lheatstrg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_lheatstrg_prod +Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -995,12 +763,12 @@ Checking test 017 fv3_csawmgshoc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_csawmgshoc PASS +Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_csawmg -Checking test 018 fv3_csawmg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmprad_prod +Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1031,24 +799,25 @@ Checking test 018 fv3_csawmg results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_csawmg PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_rasmgshoc -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_rasmgshoc -Checking test 019 fv3_rasmgshoc results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1079,36 +848,57 @@ Checking test 019 fv3_rasmgshoc results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_rasmgshoc PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg3shoc127 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_csawmg3shoc127 -Checking test 020 fv3_csawmg3shoc127 results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK @@ -1139,22 +929,30 @@ Checking test 020 fv3_csawmg3shoc127 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 020 fv3_csawmg3shoc127 PASS +Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_satmedmf -Checking test 021 fv3_satmedmf results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1187,60 +985,122 @@ Checking test 021 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_satmedmf PASS +Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_lheatstrg -Checking test 022 fv3_lheatstrg results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK + Comparing atmos_4xdaily.nest02.tile7.nc .........OK + Comparing fv3_history2d.tile1.nc .........OK + Comparing fv3_history2d.tile2.nc .........OK + Comparing fv3_history2d.tile3.nc .........OK + Comparing fv3_history2d.tile4.nc .........OK + Comparing fv3_history2d.tile5.nc .........OK + Comparing fv3_history2d.tile6.nc .........OK + Comparing fv3_history2d.nest02.tile7.nc .........OK + Comparing fv3_history.tile1.nc .........OK + Comparing fv3_history.tile2.nc .........OK + Comparing fv3_history.tile3.nc .........OK + Comparing fv3_history.tile4.nc .........OK + Comparing fv3_history.tile5.nc .........OK + Comparing fv3_history.tile6.nc .........OK + Comparing fv3_history.nest02.tile7.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.nest02.nc .........OK + Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK + Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK Comparing RESTART/fv_core.res.tile4.nc .........OK Comparing RESTART/fv_core.res.tile5.nc .........OK Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/fv_tracer.res.tile2.nc .........OK Comparing RESTART/fv_tracer.res.tile3.nc .........OK Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/phy_data.nest02.tile7.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_lheatstrg PASS + Comparing RESTART/sfc_data.nest02.tile7.nc .........OK +Test 018 fv3_ccpp_stretched_nest PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_regional_control_prod +Checking test 019 fv3_ccpp_regional_control results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 019 fv3_ccpp_regional_control PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_restart_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_regional_restart_prod +Checking test 020 fv3_ccpp_regional_restart results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK +Test 020 fv3_ccpp_regional_restart PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_quilt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_regional_quilt_prod +Checking test 021 fv3_ccpp_regional_quilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK +Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_gfdlmprad -Checking test 023 fv3_gfdlmprad results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_control_debug_prod +Checking test 022 fv3_ccpp_control_debug results .... +Test 022 fv3_ccpp_control_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_nest_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_stretched_nest_debug_prod +Checking test 023 fv3_ccpp_stretched_nest_debug results .... +Test 023 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmp_prod +Checking test 024 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1283,43 +1143,22 @@ Checking test 023 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 023 fv3_gfdlmprad PASS +Test 024 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_appbuild -Checking test 024 fv3_appbuild results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmprad_gwd_prod +Checking test 025 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1340,54 +1179,34 @@ Checking test 024 fv3_appbuild results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 024 fv3_appbuild PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_control_32bit -Checking test 025 fv3_control_32bit results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmprad_noahmp_prod +Checking test 026 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1408,24 +1227,24 @@ Checking test 025 fv3_control_32bit results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 025 fv3_control_32bit PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 026 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_gfdlmprad_32bit_post -Checking test 026 fv3_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmp_hwrfsas_prod +Checking test 027 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1436,10 +1255,6 @@ Checking test 026 fv3_gfdlmprad_32bit_post results .... Comparing phyf024.nemsio .........OK Comparing dynf000.nemsio .........OK Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1472,30 +1287,22 @@ Checking test 026 fv3_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 026 fv3_gfdlmprad_32bit_post PASS +Test 027 fv3_ccpp_gfdlmp_hwrfsas PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_stretched -Checking test 027 fv3_stretched results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_csawmg_prod +Checking test 028 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1528,172 +1335,835 @@ Checking test 027 fv3_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 027 fv3_stretched PASS +Test 028 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_stretched_nest -Checking test 028 fv3_stretched_nest results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_satmedmf_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_satmedmf_prod +Checking test 029 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK Comparing RESTART/fv_core.res.tile4.nc .........OK Comparing RESTART/fv_core.res.tile5.nc .........OK Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/fv_tracer.res.tile2.nc .........OK Comparing RESTART/fv_tracer.res.tile3.nc .........OK Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 028 fv3_stretched_nest PASS +Test 029 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_quilt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_stretched_nest_quilt -Checking test 029 fv3_stretched_nest_quilt results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_satmedmfq_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_satmedmfq_prod +Checking test 030 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing dynf006.nc .........OK - Comparing dynf012.nc .........OK - Comparing dynf024.nc .........OK - Comparing dynf048.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing phyf006.nc .........OK - Comparing phyf012.nc .........OK - Comparing phyf024.nc .........OK - Comparing phyf048.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK Comparing RESTART/fv_core.res.tile3.nc .........OK Comparing RESTART/fv_core.res.tile4.nc .........OK Comparing RESTART/fv_core.res.tile5.nc .........OK Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK Comparing RESTART/fv_tracer.res.tile1.nc .........OK Comparing RESTART/fv_tracer.res.tile2.nc .........OK Comparing RESTART/fv_tracer.res.tile3.nc .........OK Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 029 fv3_stretched_nest_quilt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_regional_control -Checking test 030 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 030 fv3_regional_control PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_regional_restart -Checking test 031 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 031 fv3_regional_restart PASS +Test 030 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_11931/fv3_regional_quilt -Checking test 032 fv3_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 032 fv3_regional_quilt PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmp_32bit_prod +Checking test 031 fv3_ccpp_gfdlmp_32bit results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 031 fv3_ccpp_gfdlmp_32bit PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfdlmprad_32bit_post_prod +Checking test 032 fv3_ccpp_gfdlmprad_32bit_post results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 032 fv3_ccpp_gfdlmprad_32bit_post PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_cpt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_cpt_prod +Checking test 033 fv3_ccpp_cpt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 033 fv3_ccpp_cpt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gsd_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gsd_prod +Checking test 034 fv3_ccpp_gsd results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing phyf027.tile1.nc .........OK + Comparing phyf027.tile2.nc .........OK + Comparing phyf027.tile3.nc .........OK + Comparing phyf027.tile4.nc .........OK + Comparing phyf027.tile5.nc .........OK + Comparing phyf027.tile6.nc .........OK + Comparing phyf048.tile1.nc .........OK + Comparing phyf048.tile2.nc .........OK + Comparing phyf048.tile3.nc .........OK + Comparing phyf048.tile4.nc .........OK + Comparing phyf048.tile5.nc .........OK + Comparing phyf048.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing dynf027.tile1.nc .........OK + Comparing dynf027.tile2.nc .........OK + Comparing dynf027.tile3.nc .........OK + Comparing dynf027.tile4.nc .........OK + Comparing dynf027.tile5.nc .........OK + Comparing dynf027.tile6.nc .........OK + Comparing dynf048.tile1.nc .........OK + Comparing dynf048.tile2.nc .........OK + Comparing dynf048.tile3.nc .........OK + Comparing dynf048.tile4.nc .........OK + Comparing dynf048.tile5.nc .........OK + Comparing dynf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 034 fv3_ccpp_gsd PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_thompson_prod +Checking test 035 fv3_ccpp_thompson results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 035 fv3_ccpp_thompson PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_no_aero_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_thompson_no_aero_prod +Checking test 036 fv3_ccpp_thompson_no_aero results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 036 fv3_ccpp_thompson_no_aero PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gsd_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gsd_debug_prod +Checking test 037 fv3_ccpp_gsd_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 037 fv3_ccpp_gsd_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_thompson_debug_prod +Checking test 038 fv3_ccpp_thompson_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 038 fv3_ccpp_thompson_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 039 fv3_ccpp_thompson_no_aero_debug results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf006.tile1.nc .........OK + Comparing phyf006.tile2.nc .........OK + Comparing phyf006.tile3.nc .........OK + Comparing phyf006.tile4.nc .........OK + Comparing phyf006.tile5.nc .........OK + Comparing phyf006.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf006.tile1.nc .........OK + Comparing dynf006.tile2.nc .........OK + Comparing dynf006.tile3.nc .........OK + Comparing dynf006.tile4.nc .........OK + Comparing dynf006.tile5.nc .........OK + Comparing dynf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 039 fv3_ccpp_thompson_no_aero_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfsv16_csawmg_prod +Checking test 040 fv3_ccpp_gfsv16_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 040 fv3_ccpp_gfsv16_csawmg PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 041 fv3_ccpp_gfsv16_csawmgt PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gocart_clm_ccpp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_9350/fv3_ccpp_gocart_clm_prod +Checking test 042 fv3_ccpp_gocart_clm results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 042 fv3_ccpp_gocart_clm PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 10 04:29:20 UTC 2020 -Elapsed time: 00h:29m:38s. Have a nice day! +Thu Jun 4 00:31:39 UTC 2020 +Elapsed time: 00h:41m:12s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 6b8d4255bb..0e4fa59b6e 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,10 +1,10 @@ -Fri Apr 10 04:01:08 UTC 2020 +Wed Jun 3 23:49:43 UTC 2020 Start Regression test -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_control -Checking test 001 fv3_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_control_prod +Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -67,12 +67,12 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 001 fv3_control PASS +Test 001 fv3_ccpp_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_decomp -Checking test 002 fv3_decomp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_decomp_prod +Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -135,12 +135,12 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 002 fv3_decomp PASS +Test 002 fv3_ccpp_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_2threads -Checking test 003 fv3_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_2threads_prod +Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -203,12 +203,12 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 003 fv3_2threads PASS +Test 003 fv3_ccpp_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_restart -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_restart -Checking test 004 fv3_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_restart_prod +Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -271,12 +271,12 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 004 fv3_restart PASS +Test 004 fv3_ccpp_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_read_inc -Checking test 005 fv3_read_inc results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_read_inc_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_read_inc_prod +Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -339,5050 +339,22 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 005 fv3_read_inc PASS +Test 005 fv3_ccpp_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmp -Checking test 006 fv3_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_netcdf_esmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_wrtGauss_netcdf_esmf_prod +Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 006 fv3_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_gwd -Checking test 007 fv3_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 007 fv3_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_noahmp -Checking test 008 fv3_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 008 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wsm6 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wsm6 -Checking test 009 fv3_wsm6 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 009 fv3_wsm6 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_netcdf_esmf -Checking test 010 fv3_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 010 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_netcdf -Checking test 011 fv3_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 011 fv3_wrtGauss_netcdf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_nemsio -Checking test 012 fv3_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 012 fv3_wrtGauss_nemsio PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_nemsio_c192 -Checking test 013 fv3_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 013 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stochy -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stochy -Checking test 014 fv3_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 014 fv3_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_iau -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_iau -Checking test 015 fv3_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 015 fv3_iau PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmgshoc -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmgshoc -Checking test 016 fv3_csawmgshoc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 016 fv3_csawmgshoc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmg -Checking test 017 fv3_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 017 fv3_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_rasmgshoc -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_rasmgshoc -Checking test 018 fv3_rasmgshoc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 018 fv3_rasmgshoc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg3shoc127 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmg3shoc127 -Checking test 019 fv3_csawmg3shoc127 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 019 fv3_csawmg3shoc127 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_satmedmf -Checking test 020 fv3_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 020 fv3_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_lheatstrg -Checking test 021 fv3_lheatstrg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 021 fv3_lheatstrg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfsv16_csawmg -Checking test 022 fv3_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 022 fv3_gfsv16_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gocart_clm -Checking test 023 fv3_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 023 fv3_gocart_clm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfsv16_csawmgt -Checking test 024 fv3_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 024 fv3_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad -Checking test 025 fv3_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 025 fv3_gfdlmprad PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_atmwav -Checking test 026 fv3_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 026 fv3_gfdlmprad_atmwav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_appbuild -Checking test 027 fv3_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 027 fv3_appbuild PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_control_32bit -Checking test 028 fv3_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 028 fv3_control_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_32bit_post -Checking test 029 fv3_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 029 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stretched -Checking test 030 fv3_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 030 fv3_stretched PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stretched_nest -Checking test 031 fv3_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 031 fv3_stretched_nest PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_quilt -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stretched_nest_quilt -Checking test 032 fv3_stretched_nest_quilt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing dynf006.nc .........OK - Comparing dynf012.nc .........OK - Comparing dynf024.nc .........OK - Comparing dynf048.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing phyf006.nc .........OK - Comparing phyf012.nc .........OK - Comparing phyf024.nc .........OK - Comparing phyf048.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 032 fv3_stretched_nest_quilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_control -Checking test 033 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 033 fv3_regional_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_restart -Checking test 034 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 034 fv3_regional_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_quilt -Checking test 035 fv3_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 035 fv3_regional_quilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_c768 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_c768 -Checking test 036 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 036 fv3_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_control_repro -Checking test 037 fv3_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 037 fv3_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_decomp_repro -Checking test 038 fv3_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 038 fv3_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_2threads_repro -Checking test 039 fv3_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 039 fv3_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_restart_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_restart_repro -Checking test 040 fv3_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 040 fv3_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_read_inc_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_read_inc_repro -Checking test 041 fv3_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 041 fv3_read_inc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_esmf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_netcdf_esmf_repro -Checking test 042 fv3_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 042 fv3_wrtGauss_netcdf_esmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_netcdf_repro -Checking test 043 fv3_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 043 fv3_wrtGauss_netcdf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_nemsio_repro -Checking test 044 fv3_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 044 fv3_wrtGauss_nemsio PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_c192_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_wrtGauss_nemsio_c192_repro -Checking test 045 fv3_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 045 fv3_wrtGauss_nemsio_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stochy_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stochy_repro -Checking test 046 fv3_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 046 fv3_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_iau_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_iau_repro -Checking test 047 fv3_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 047 fv3_iau PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmp_repro -Checking test 048 fv3_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 048 fv3_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_gwd_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_gwd_repro -Checking test 049 fv3_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 049 fv3_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_noahmp_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_noahmp_repro -Checking test 050 fv3_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 050 fv3_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmgshoc_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmgshoc_repro -Checking test 051 fv3_csawmgshoc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 051 fv3_csawmgshoc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg3shoc127_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmg3shoc127_repro -Checking test 052 fv3_csawmg3shoc127 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 052 fv3_csawmg3shoc127 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_csawmg_repro -Checking test 053 fv3_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 053 fv3_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_satmedmf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_satmedmf_repro -Checking test 054 fv3_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 054 fv3_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmg_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfsv16_csawmg_repro -Checking test 055 fv3_gfsv16_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 055 fv3_gfsv16_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gocart_clm_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gocart_clm_repro -Checking test 056 fv3_gocart_clm results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 056 fv3_gocart_clm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmgt_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfsv16_csawmgt_repro -Checking test 057 fv3_gfsv16_csawmgt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 057 fv3_gfsv16_csawmgt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_repro -Checking test 058 fv3_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 058 fv3_gfdlmprad PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_atmwav_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_atmwav_repro -Checking test 059 fv3_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 059 fv3_gfdlmprad_atmwav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_appbuild_repro -Checking test 060 fv3_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 060 fv3_appbuild PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_32bit_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_control_32bit_repro -Checking test 061 fv3_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 061 fv3_control_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_32bit_post_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmprad_32bit_post_repro -Checking test 062 fv3_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 062 fv3_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stretched_repro -Checking test 063 fv3_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 063 fv3_stretched PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_stretched_nest_repro -Checking test 064 fv3_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 064 fv3_stretched_nest PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_control_repro -Checking test 065 fv3_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 065 fv3_regional_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_restart_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_restart_repro -Checking test 066 fv3_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 066 fv3_regional_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_quilt_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_quilt_repro -Checking test 067 fv3_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 067 fv3_regional_quilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_c768_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_regional_c768_repro -Checking test 068 fv3_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 068 fv3_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_32bit_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_gfdlmp_32bit_repro -Checking test 069 fv3_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 069 fv3_gfdlmp_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_cpt_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_cpt_repro -Checking test 070 fv3_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 070 fv3_cpt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_control_repro -Checking test 071 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 071 fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_decomp_repro -Checking test 072 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 072 fv3_ccpp_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_2threads_repro -Checking test 073 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 073 fv3_ccpp_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_restart_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_restart_repro -Checking test 074 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 074 fv3_ccpp_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_read_inc_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_read_inc_repro -Checking test 075 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 075 fv3_ccpp_read_inc PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_esmf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_netcdf_esmf_repro -Checking test 076 fv3_ccpp_wrtGauss_netcdf_esmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 076 fv3_ccpp_wrtGauss_netcdf_esmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_netcdf_repro -Checking test 077 fv3_ccpp_wrtGauss_netcdf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 077 fv3_ccpp_wrtGauss_netcdf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_nemsio_repro -Checking test 078 fv3_ccpp_wrtGauss_nemsio results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 078 fv3_ccpp_wrtGauss_nemsio PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_c192_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_nemsio_c192_repro -Checking test 079 fv3_ccpp_wrtGauss_nemsio_c192 results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 079 fv3_ccpp_wrtGauss_nemsio_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stochy_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stochy_repro -Checking test 080 fv3_ccpp_stochy results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 080 fv3_ccpp_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_iau_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_iau_repro -Checking test 081 fv3_ccpp_iau results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 081 fv3_ccpp_iau PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_repro -Checking test 082 fv3_ccpp_gfdlmprad results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 082 fv3_ccpp_gfdlmprad PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_atmwav_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_atmwav_repro -Checking test 083 fv3_ccpp_gfdlmprad_atmwav results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 083 fv3_ccpp_gfdlmprad_atmwav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_appbuild_repro -Checking test 084 fv3_ccpp_appbuild results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 084 fv3_ccpp_appbuild PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_32bit_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_control_32bit_repro -Checking test 085 fv3_ccpp_control_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 085 fv3_ccpp_control_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stretched_repro -Checking test 086 fv3_ccpp_stretched results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 086 fv3_ccpp_stretched PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stretched_nest_repro -Checking test 087 fv3_ccpp_stretched_nest results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing atmos_4xdaily.nest02.tile7.nc .........OK - Comparing fv3_history2d.tile1.nc .........OK - Comparing fv3_history2d.tile2.nc .........OK - Comparing fv3_history2d.tile3.nc .........OK - Comparing fv3_history2d.tile4.nc .........OK - Comparing fv3_history2d.tile5.nc .........OK - Comparing fv3_history2d.tile6.nc .........OK - Comparing fv3_history2d.nest02.tile7.nc .........OK - Comparing fv3_history.tile1.nc .........OK - Comparing fv3_history.tile2.nc .........OK - Comparing fv3_history.tile3.nc .........OK - Comparing fv3_history.tile4.nc .........OK - Comparing fv3_history.tile5.nc .........OK - Comparing fv3_history.tile6.nc .........OK - Comparing fv3_history.nest02.tile7.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.nest02.nc .........OK - Comparing RESTART/fv_BC_ne.res.nest02.nc .........OK - Comparing RESTART/fv_BC_sw.res.nest02.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_core.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.nest02.tile7.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.nest02.tile7.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/phy_data.nest02.tile7.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 087 fv3_ccpp_stretched_nest PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_control_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_control_repro -Checking test 088 fv3_ccpp_regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 088 fv3_ccpp_regional_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_restart_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_restart_repro -Checking test 089 fv3_ccpp_regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 089 fv3_ccpp_regional_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_quilt_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_quilt_repro -Checking test 090 fv3_ccpp_regional_quilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK -Test 090 fv3_ccpp_regional_quilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_c768_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_c768_repro -Checking test 091 fv3_ccpp_regional_c768 results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK -Test 091 fv3_ccpp_regional_c768 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmp_repro -Checking test 092 fv3_ccpp_gfdlmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 092 fv3_ccpp_gfdlmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_gwd_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_gwd_repro -Checking test 093 fv3_ccpp_gfdlmprad_gwd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 093 fv3_ccpp_gfdlmprad_gwd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_noahmp_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_noahmp_repro -Checking test 094 fv3_ccpp_gfdlmprad_noahmp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 094 fv3_ccpp_gfdlmprad_noahmp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_csawmg_repro -Checking test 095 fv3_ccpp_csawmg results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 095 fv3_ccpp_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_satmedmf_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_satmedmf_repro -Checking test 096 fv3_ccpp_satmedmf results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 096 fv3_ccpp_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_32bit_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmp_32bit_repro -Checking test 097 fv3_ccpp_gfdlmp_32bit results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 097 fv3_ccpp_gfdlmp_32bit PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_32bit_post_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_32bit_post_repro -Checking test 098 fv3_ccpp_gfdlmprad_32bit_post results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 098 fv3_ccpp_gfdlmprad_32bit_post PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_cpt_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_cpt_repro -Checking test 099 fv3_ccpp_cpt results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK -Test 099 fv3_ccpp_cpt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gsd_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gsd_repro -Checking test 100 fv3_ccpp_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 100 fv3_ccpp_gsd PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_control_prod -Checking test 101 fv3_ccpp_control results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 101 fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_decomp_prod -Checking test 102 fv3_ccpp_decomp results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 102 fv3_ccpp_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_2threads_prod -Checking test 103 fv3_ccpp_2threads results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 103 fv3_ccpp_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_restart_prod -Checking test 104 fv3_ccpp_restart results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test 104 fv3_ccpp_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_read_inc_prod -Checking test 105 fv3_ccpp_read_inc results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf027.tile1.nc .........OK - Comparing phyf027.tile2.nc .........OK - Comparing phyf027.tile3.nc .........OK - Comparing phyf027.tile4.nc .........OK - Comparing phyf027.tile5.nc .........OK - Comparing phyf027.tile6.nc .........OK - Comparing phyf048.tile1.nc .........OK - Comparing phyf048.tile2.nc .........OK - Comparing phyf048.tile3.nc .........OK - Comparing phyf048.tile4.nc .........OK - Comparing phyf048.tile5.nc .........OK - Comparing phyf048.tile6.nc .........OK - Comparing dynf027.tile1.nc .........OK - Comparing dynf027.tile2.nc .........OK - Comparing dynf027.tile3.nc .........OK - Comparing dynf027.tile4.nc .........OK - Comparing dynf027.tile5.nc .........OK - Comparing dynf027.tile6.nc .........OK - Comparing dynf048.tile1.nc .........OK - Comparing dynf048.tile2.nc .........OK - Comparing dynf048.tile3.nc .........OK - Comparing dynf048.tile4.nc .........OK - Comparing dynf048.tile5.nc .........OK - Comparing dynf048.tile6.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5415,12 +387,12 @@ Checking test 105 fv3_ccpp_read_inc results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 105 fv3_ccpp_read_inc PASS +Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_netcdf_esmf_prod -Checking test 106 fv3_ccpp_wrtGauss_netcdf_esmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_wrtGauss_netcdf_prod +Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5463,12 +435,12 @@ Checking test 106 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 106 fv3_ccpp_wrtGauss_netcdf_esmf PASS +Test 007 fv3_ccpp_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_netcdf_prod -Checking test 107 fv3_ccpp_wrtGauss_netcdf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGlatlon_netcdf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_wrtGlatlon_netcdf_prod +Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5511,12 +483,12 @@ Checking test 107 fv3_ccpp_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 107 fv3_ccpp_wrtGauss_netcdf PASS +Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_nemsio_prod -Checking test 108 fv3_ccpp_wrtGauss_nemsio results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_nemsio_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_wrtGauss_nemsio_prod +Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5559,12 +531,12 @@ Checking test 108 fv3_ccpp_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 108 fv3_ccpp_wrtGauss_nemsio PASS +Test 009 fv3_ccpp_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_wrtGauss_nemsio_c192_prod -Checking test 109 fv3_ccpp_wrtGauss_nemsio_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_wrtGauss_nemsio_c192_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_wrtGauss_nemsio_c192_prod +Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5607,12 +579,12 @@ Checking test 109 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 109 fv3_ccpp_wrtGauss_nemsio_c192 PASS +Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stochy_prod -Checking test 110 fv3_ccpp_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stochy_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_stochy_prod +Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5675,12 +647,12 @@ Checking test 110 fv3_ccpp_stochy results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 110 fv3_ccpp_stochy PASS +Test 011 fv3_ccpp_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_iau_prod -Checking test 111 fv3_ccpp_iau results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_iau_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_iau_prod +Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5743,12 +715,12 @@ Checking test 111 fv3_ccpp_iau results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 111 fv3_ccpp_iau PASS +Test 012 fv3_ccpp_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_prod -Checking test 112 fv3_ccpp_gfdlmprad results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_lheatstrg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_lheatstrg_prod +Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5779,25 +751,24 @@ Checking test 112 fv3_ccpp_gfdlmprad results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/phy_data.tile1.nc .........OK Comparing RESTART/phy_data.tile2.nc .........OK Comparing RESTART/phy_data.tile3.nc .........OK Comparing RESTART/phy_data.tile4.nc .........OK Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - Comparing out_grd.glo_30m .........OK -Test 112 fv3_ccpp_gfdlmprad PASS + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 013 fv3_ccpp_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_atmwav_prod -Checking test 113 fv3_ccpp_gfdlmprad_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfdlmprad_prod +Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5841,42 +812,22 @@ Checking test 113 fv3_ccpp_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -Test 113 fv3_ccpp_gfdlmprad_atmwav PASS +Test 014 fv3_ccpp_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_appbuild_prod -Checking test 114 fv3_ccpp_appbuild results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_atmwav_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfdlmprad_atmwav_prod +Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5897,24 +848,25 @@ Checking test 114 fv3_ccpp_appbuild results .... Comparing RESTART/fv_tracer.res.tile4.nc .........OK Comparing RESTART/fv_tracer.res.tile5.nc .........OK Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK Comparing RESTART/sfc_data.tile1.nc .........OK Comparing RESTART/sfc_data.tile2.nc .........OK Comparing RESTART/sfc_data.tile3.nc .........OK Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 114 fv3_ccpp_appbuild PASS + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing out_grd.glo_30m .........OK +Test 015 fv3_ccpp_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_control_32bit_prod -Checking test 115 fv3_ccpp_control_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_control_32bit_prod +Checking test 016 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -5977,12 +929,12 @@ Checking test 115 fv3_ccpp_control_32bit results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 115 fv3_ccpp_control_32bit PASS +Test 016 fv3_ccpp_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stretched_prod -Checking test 116 fv3_ccpp_stretched results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_stretched_prod +Checking test 017 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6033,12 +985,12 @@ Checking test 116 fv3_ccpp_stretched results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -Test 116 fv3_ccpp_stretched PASS +Test 017 fv3_ccpp_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stretched_nest_prod -Checking test 117 fv3_ccpp_stretched_nest results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_stretched_nest_prod +Checking test 018 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6100,64 +1052,112 @@ Checking test 117 fv3_ccpp_stretched_nest results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -Test 117 fv3_ccpp_stretched_nest PASS +Test 018 fv3_ccpp_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_control_prod -Checking test 118 fv3_ccpp_regional_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_regional_control_prod +Checking test 019 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -Test 118 fv3_ccpp_regional_control PASS +Test 019 fv3_ccpp_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_restart_prod -Checking test 119 fv3_ccpp_regional_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_restart_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_regional_restart_prod +Checking test 020 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 119 fv3_ccpp_regional_restart PASS +Test 020 fv3_ccpp_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_quilt_prod -Checking test 120 fv3_ccpp_regional_quilt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_quilt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_regional_quilt_prod +Checking test 021 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -Test 120 fv3_ccpp_regional_quilt PASS +Test 021 fv3_ccpp_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_regional_c768_prod -Checking test 121 fv3_ccpp_regional_c768 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_regional_c768_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_regional_c768_prod +Checking test 022 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -Test 121 fv3_ccpp_regional_c768 PASS +Test 022 fv3_ccpp_regional_c768 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_control_debug_prod -Checking test 122 fv3_ccpp_control_debug results .... -Test 122 fv3_ccpp_control_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_control_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_control_debug_prod +Checking test 023 fv3_ccpp_control_debug results .... +Test 023 fv3_ccpp_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_stretched_nest_debug_prod -Checking test 123 fv3_ccpp_stretched_nest_debug results .... -Test 123 fv3_ccpp_stretched_nest_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_stretched_nest_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_stretched_nest_debug_prod +Checking test 024 fv3_ccpp_stretched_nest_debug results .... +Test 024 fv3_ccpp_stretched_nest_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfdlmp_prod +Checking test 025 fv3_ccpp_gfdlmp results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK +Test 025 fv3_ccpp_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmp_prod -Checking test 124 fv3_ccpp_gfdlmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_gwd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6200,12 +1200,12 @@ Checking test 124 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 124 fv3_ccpp_gfdlmp PASS +Test 026 fv3_ccpp_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_gwd_prod -Checking test 125 fv3_ccpp_gfdlmprad_gwd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_noahmp_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6248,12 +1248,12 @@ Checking test 125 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 125 fv3_ccpp_gfdlmprad_gwd PASS +Test 027 fv3_ccpp_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_noahmp_prod -Checking test 126 fv3_ccpp_gfdlmprad_noahmp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_hwrfsas_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfdlmp_hwrfsas_prod +Checking test 028 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6296,12 +1296,60 @@ Checking test 126 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 126 fv3_ccpp_gfdlmprad_noahmp PASS +Test 028 fv3_ccpp_gfdlmp_hwrfsas PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_csawmg_prod +Checking test 029 fv3_ccpp_csawmg results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.nemsio .........OK + Comparing phyf024.nemsio .........OK + Comparing dynf000.nemsio .........OK + Comparing dynf024.nemsio .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 029 fv3_ccpp_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_csawmg_prod -Checking test 127 fv3_ccpp_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_satmedmf_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6344,12 +1392,12 @@ Checking test 127 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 127 fv3_ccpp_csawmg PASS +Test 030 fv3_ccpp_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_satmedmf_prod -Checking test 128 fv3_ccpp_satmedmf results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_satmedmfq_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6392,12 +1440,12 @@ Checking test 128 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 128 fv3_ccpp_satmedmf PASS +Test 031 fv3_ccpp_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmp_32bit_prod -Checking test 129 fv3_ccpp_gfdlmp_32bit results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmp_32bit_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6440,12 +1488,12 @@ Checking test 129 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 129 fv3_ccpp_gfdlmp_32bit PASS +Test 032 fv3_ccpp_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfdlmprad_32bit_post_prod -Checking test 130 fv3_ccpp_gfdlmprad_32bit_post results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfdlmprad_32bit_post_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6492,12 +1540,12 @@ Checking test 130 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 130 fv3_ccpp_gfdlmprad_32bit_post PASS +Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_cpt_prod -Checking test 131 fv3_ccpp_cpt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_cpt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6546,12 +1594,12 @@ Checking test 131 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 131 fv3_ccpp_cpt PASS +Test 034 fv3_ccpp_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gsd_prod -Checking test 132 fv3_ccpp_gsd results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gsd_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/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 @@ -6638,12 +1686,12 @@ Checking test 132 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 132 fv3_ccpp_gsd PASS +Test 035 fv3_ccpp_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_thompson_prod -Checking test 133 fv3_ccpp_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_thompson_prod +Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6706,12 +1754,12 @@ Checking test 133 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 133 fv3_ccpp_thompson PASS +Test 036 fv3_ccpp_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_thompson_no_aero_prod -Checking test 134 fv3_ccpp_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_no_aero_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_thompson_no_aero_prod +Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6774,12 +1822,12 @@ Checking test 134 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 134 fv3_ccpp_thompson_no_aero PASS +Test 037 fv3_ccpp_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gsd_debug_prod -Checking test 135 fv3_ccpp_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gsd_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gsd_debug_prod +Checking test 038 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6842,12 +1890,12 @@ Checking test 135 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 135 fv3_ccpp_gsd_debug PASS +Test 038 fv3_ccpp_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_thompson_debug_prod -Checking test 136 fv3_ccpp_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_thompson_debug_prod +Checking test 039 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -6910,12 +1958,12 @@ Checking test 136 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 136 fv3_ccpp_thompson_debug PASS +Test 039 fv3_ccpp_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_thompson_no_aero_debug_prod -Checking test 137 fv3_ccpp_thompson_no_aero_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_thompson_no_aero_debug_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_thompson_no_aero_debug_prod +Checking test 040 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 @@ -6978,12 +2026,12 @@ Checking test 137 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 137 fv3_ccpp_thompson_no_aero_debug PASS +Test 040 fv3_ccpp_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfsv16_csawmg_prod -Checking test 138 fv3_ccpp_gfsv16_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfsv16_csawmg_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfsv16_csawmg_prod +Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7026,12 +2074,12 @@ Checking test 138 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 138 fv3_ccpp_gfsv16_csawmg PASS +Test 041 fv3_ccpp_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gfsv16_csawmgt_prod -Checking test 139 fv3_ccpp_gfsv16_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gfsv16_csawmgt_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gfsv16_csawmgt_prod +Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7074,12 +2122,12 @@ Checking test 139 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 139 fv3_ccpp_gfsv16_csawmgt PASS +Test 042 fv3_ccpp_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200323/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_75179/fv3_ccpp_gocart_clm_prod -Checking test 140 fv3_ccpp_gocart_clm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200603/fv3_gocart_clm_ccpp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_137913/fv3_ccpp_gocart_clm_prod +Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -7122,9 +2170,9 @@ Checking test 140 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 140 fv3_ccpp_gocart_clm PASS +Test 043 fv3_ccpp_gocart_clm PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 10 05:01:30 UTC 2020 -Elapsed time: 01h:00m:25s. Have a nice day! +Thu Jun 4 00:28:56 UTC 2020 +Elapsed time: 00h:39m:17s. Have a nice day! diff --git a/tests/UnitTests_hera.intel.log b/tests/UnitTests_hera.intel.log new file mode 100644 index 0000000000..81412d90dc --- /dev/null +++ b/tests/UnitTests_hera.intel.log @@ -0,0 +1,482 @@ + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200512/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_32bit_base +Checking test 32bit_base fv3_ccpp_control results .... + mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_32bit/RESTART + Moving atmos_4xdaily.tile1.nc ..... Moving atmos_4xdaily.tile2.nc ..... Moving atmos_4xdaily.tile3.nc ..... Moving atmos_4xdaily.tile4.nc ..... Moving atmos_4xdaily.tile5.nc ..... Moving atmos_4xdaily.tile6.nc ..... Moving phyf000.tile1.nc ..... Moving phyf000.tile2.nc ..... Moving phyf000.tile3.nc ..... Moving phyf000.tile4.nc ..... Moving phyf000.tile5.nc ..... Moving phyf000.tile6.nc ..... Moving phyf024.tile1.nc ..... Moving phyf024.tile2.nc ..... Moving phyf024.tile3.nc ..... Moving phyf024.tile4.nc ..... Moving phyf024.tile5.nc ..... Moving phyf024.tile6.nc ..... Moving dynf000.tile1.nc ..... Moving dynf000.tile2.nc ..... Moving dynf000.tile3.nc ..... Moving dynf000.tile4.nc ..... Moving dynf000.tile5.nc ..... Moving dynf000.tile6.nc ..... Moving dynf024.tile1.nc ..... Moving dynf024.tile2.nc ..... Moving dynf024.tile3.nc ..... Moving dynf024.tile4.nc ..... Moving dynf024.tile5.nc ..... Moving dynf024.tile6.nc ..... Moving RESTART/coupler.res ..... Moving RESTART/fv_core.res.nc ..... Moving RESTART/fv_core.res.tile1.nc ..... Moving RESTART/fv_core.res.tile2.nc ..... Moving RESTART/fv_core.res.tile3.nc ..... Moving RESTART/fv_core.res.tile4.nc ..... Moving RESTART/fv_core.res.tile5.nc ..... Moving RESTART/fv_core.res.tile6.nc ..... Moving RESTART/fv_srf_wnd.res.tile1.nc ..... Moving RESTART/fv_srf_wnd.res.tile2.nc ..... Moving RESTART/fv_srf_wnd.res.tile3.nc ..... Moving RESTART/fv_srf_wnd.res.tile4.nc ..... Moving RESTART/fv_srf_wnd.res.tile5.nc ..... Moving RESTART/fv_srf_wnd.res.tile6.nc ..... Moving RESTART/fv_tracer.res.tile1.nc ..... Moving RESTART/fv_tracer.res.tile2.nc ..... Moving RESTART/fv_tracer.res.tile3.nc ..... Moving RESTART/fv_tracer.res.tile4.nc ..... Moving RESTART/fv_tracer.res.tile5.nc ..... Moving RESTART/fv_tracer.res.tile6.nc ..... Moving RESTART/phy_data.tile1.nc ..... Moving RESTART/phy_data.tile2.nc ..... Moving RESTART/phy_data.tile3.nc ..... Moving RESTART/phy_data.tile4.nc ..... Moving RESTART/phy_data.tile5.nc ..... Moving RESTART/phy_data.tile6.nc ..... Moving RESTART/sfc_data.tile1.nc ..... Moving RESTART/sfc_data.tile2.nc ..... Moving RESTART/sfc_data.tile3.nc ..... Moving RESTART/sfc_data.tile4.nc ..... Moving RESTART/sfc_data.tile5.nc ..... Moving RESTART/sfc_data.tile6.nc .....Test 32bit_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_32bit +Checking test 32bit fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test 32bit fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200512/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_debug_base +Checking test debug_base fv3_ccpp_control results .... + mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_debug/RESTART + Moving atmos_4xdaily.tile1.nc ..... Moving atmos_4xdaily.tile2.nc ..... Moving atmos_4xdaily.tile3.nc ..... Moving atmos_4xdaily.tile4.nc ..... Moving atmos_4xdaily.tile5.nc ..... Moving atmos_4xdaily.tile6.nc ..... Moving phyf000.tile1.nc ..... Moving phyf000.tile2.nc ..... Moving phyf000.tile3.nc ..... Moving phyf000.tile4.nc ..... Moving phyf000.tile5.nc ..... Moving phyf000.tile6.nc ..... Moving phyf024.tile1.nc ..... Moving phyf024.tile2.nc ..... Moving phyf024.tile3.nc ..... Moving phyf024.tile4.nc ..... Moving phyf024.tile5.nc ..... Moving phyf024.tile6.nc ..... Moving dynf000.tile1.nc ..... Moving dynf000.tile2.nc ..... Moving dynf000.tile3.nc ..... Moving dynf000.tile4.nc ..... Moving dynf000.tile5.nc ..... Moving dynf000.tile6.nc ..... Moving dynf024.tile1.nc ..... Moving dynf024.tile2.nc ..... Moving dynf024.tile3.nc ..... Moving dynf024.tile4.nc ..... Moving dynf024.tile5.nc ..... Moving dynf024.tile6.nc ..... Moving RESTART/coupler.res ..... Moving RESTART/fv_core.res.nc ..... Moving RESTART/fv_core.res.tile1.nc ..... Moving RESTART/fv_core.res.tile2.nc ..... Moving RESTART/fv_core.res.tile3.nc ..... Moving RESTART/fv_core.res.tile4.nc ..... Moving RESTART/fv_core.res.tile5.nc ..... Moving RESTART/fv_core.res.tile6.nc ..... Moving RESTART/fv_srf_wnd.res.tile1.nc ..... Moving RESTART/fv_srf_wnd.res.tile2.nc ..... Moving RESTART/fv_srf_wnd.res.tile3.nc ..... Moving RESTART/fv_srf_wnd.res.tile4.nc ..... Moving RESTART/fv_srf_wnd.res.tile5.nc ..... Moving RESTART/fv_srf_wnd.res.tile6.nc ..... Moving RESTART/fv_tracer.res.tile1.nc ..... Moving RESTART/fv_tracer.res.tile2.nc ..... Moving RESTART/fv_tracer.res.tile3.nc ..... Moving RESTART/fv_tracer.res.tile4.nc ..... Moving RESTART/fv_tracer.res.tile5.nc ..... Moving RESTART/fv_tracer.res.tile6.nc ..... Moving RESTART/phy_data.tile1.nc ..... Moving RESTART/phy_data.tile2.nc ..... Moving RESTART/phy_data.tile3.nc ..... Moving RESTART/phy_data.tile4.nc ..... Moving RESTART/phy_data.tile5.nc ..... Moving RESTART/phy_data.tile6.nc ..... Moving RESTART/sfc_data.tile1.nc ..... Moving RESTART/sfc_data.tile2.nc ..... Moving RESTART/sfc_data.tile3.nc ..... Moving RESTART/sfc_data.tile4.nc ..... Moving RESTART/sfc_data.tile5.nc ..... Moving RESTART/sfc_data.tile6.nc .....Test debug_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_debug +Checking test debug fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test debug fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_decomp +Checking test decomp fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test decomp fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_mpi +Checking test mpi fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test mpi fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_restart +Checking test restart fv3_ccpp_control results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test restart fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200512/INTEL/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_std_base +Checking test std_base fv3_ccpp_control results .... + mkdir -p /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std/RESTART + Moving atmos_4xdaily.tile1.nc ..... Moving atmos_4xdaily.tile2.nc ..... Moving atmos_4xdaily.tile3.nc ..... Moving atmos_4xdaily.tile4.nc ..... Moving atmos_4xdaily.tile5.nc ..... Moving atmos_4xdaily.tile6.nc ..... Moving phyf000.tile1.nc ..... Moving phyf000.tile2.nc ..... Moving phyf000.tile3.nc ..... Moving phyf000.tile4.nc ..... Moving phyf000.tile5.nc ..... Moving phyf000.tile6.nc ..... Moving phyf024.tile1.nc ..... Moving phyf024.tile2.nc ..... Moving phyf024.tile3.nc ..... Moving phyf024.tile4.nc ..... Moving phyf024.tile5.nc ..... Moving phyf024.tile6.nc ..... Moving dynf000.tile1.nc ..... Moving dynf000.tile2.nc ..... Moving dynf000.tile3.nc ..... Moving dynf000.tile4.nc ..... Moving dynf000.tile5.nc ..... Moving dynf000.tile6.nc ..... Moving dynf024.tile1.nc ..... Moving dynf024.tile2.nc ..... Moving dynf024.tile3.nc ..... Moving dynf024.tile4.nc ..... Moving dynf024.tile5.nc ..... Moving dynf024.tile6.nc ..... Moving RESTART/coupler.res ..... Moving RESTART/fv_core.res.nc ..... Moving RESTART/fv_core.res.tile1.nc ..... Moving RESTART/fv_core.res.tile2.nc ..... Moving RESTART/fv_core.res.tile3.nc ..... Moving RESTART/fv_core.res.tile4.nc ..... Moving RESTART/fv_core.res.tile5.nc ..... Moving RESTART/fv_core.res.tile6.nc ..... Moving RESTART/fv_srf_wnd.res.tile1.nc ..... Moving RESTART/fv_srf_wnd.res.tile2.nc ..... Moving RESTART/fv_srf_wnd.res.tile3.nc ..... Moving RESTART/fv_srf_wnd.res.tile4.nc ..... Moving RESTART/fv_srf_wnd.res.tile5.nc ..... Moving RESTART/fv_srf_wnd.res.tile6.nc ..... Moving RESTART/fv_tracer.res.tile1.nc ..... Moving RESTART/fv_tracer.res.tile2.nc ..... Moving RESTART/fv_tracer.res.tile3.nc ..... Moving RESTART/fv_tracer.res.tile4.nc ..... Moving RESTART/fv_tracer.res.tile5.nc ..... Moving RESTART/fv_tracer.res.tile6.nc ..... Moving RESTART/phy_data.tile1.nc ..... Moving RESTART/phy_data.tile2.nc ..... Moving RESTART/phy_data.tile3.nc ..... Moving RESTART/phy_data.tile4.nc ..... Moving RESTART/phy_data.tile5.nc ..... Moving RESTART/phy_data.tile6.nc ..... Moving RESTART/sfc_data.tile1.nc ..... Moving RESTART/sfc_data.tile2.nc ..... Moving RESTART/sfc_data.tile3.nc ..... Moving RESTART/sfc_data.tile4.nc ..... Moving RESTART/sfc_data.tile5.nc ..... Moving RESTART/sfc_data.tile6.nc .....Test std_base fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_std +Checking test std fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test std fv3_ccpp_control PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_UT/ut_72447/fv3_ccpp_control_thread +Checking test thread fv3_ccpp_control results .... + Comparing atmos_4xdaily.tile1.nc .........OK + Comparing atmos_4xdaily.tile2.nc .........OK + Comparing atmos_4xdaily.tile3.nc .........OK + Comparing atmos_4xdaily.tile4.nc .........OK + Comparing atmos_4xdaily.tile5.nc .........OK + Comparing atmos_4xdaily.tile6.nc .........OK + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK +Test thread fv3_ccpp_control PASS + +UNIT TEST WAS SUCCESSFUL +Wed Jun 3 17:49:52 UTC 2020 +Elapsed time: 01h:11m:03s. Have a nice day! diff --git a/tests/abort_dep_tasks.py b/tests/abort_dep_tasks.py index b541c7b8d5..039f1838a4 100755 --- a/tests/abort_dep_tasks.py +++ b/tests/abort_dep_tasks.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +from __future__ import print_function import ecflow import re @@ -33,7 +34,7 @@ def __check_task(self, node): task = self.__defs.find_abs_node( self.__suite.get_abs_node_path() + "/" + t) if task.get_state() == ecflow.State.aborted: if node.get_state() != ecflow.State.aborted: - print "Will force aborted state for task", node.get_abs_node_path() + print("Will force aborted state for task", node.get_abs_node_path()) self.__ci.force_state(node.get_abs_node_path(), ecflow.State.aborted) try: @@ -48,11 +49,11 @@ def __check_task(self, node): server_defs = ci.get_defs() if server_defs == None : - print "The server has no definition" + print("The server has no definition") exit(1) traverser = DefsTraverser(server_defs, ci) traverser.force_abort() -except RuntimeError, e: - print "failed: " + str(e) +except RuntimeError as e: + print("failed: " + str(e)) diff --git a/tests/compile.sh b/tests/compile.sh index 43d3fb6734..7575f7f61f 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -15,7 +15,7 @@ fi readonly PATHTR=$1 readonly BUILD_TARGET=$2 -readonly MAKE_OPT=${3:-} +MAKE_OPT=${3:-} readonly BUILD_NAME=fv3${4:+_$4} readonly clean_before=${5:-YES} @@ -60,12 +60,6 @@ cd "$PATHTR/../NEMS" COMPONENTS="FMS,FV3" if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then COMPONENTS="CCPP,$COMPONENTS" - # FIXME - create CCPP include directory before building FMS to avoid - # gfortran warnings of non-existent include directory (adding - # -Wno-missing-include-dirs) to the GNU compiler flags does not work, - # see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); - # this line can be removed once FMS becomes a pre-installed library - mkdir -p $PATHTR/ccpp/include fi if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then @@ -99,6 +93,15 @@ if [ $clean_before = YES ] ; then NEMS_BUILDOPT="$NEMS_BUILDOPT" distclean fi +# FIXME - create CCPP include directory before building FMS to avoid +# gfortran warnings of non-existent include directory (adding +# -Wno-missing-include-dirs) to the GNU compiler flags does not work, +# see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); +# this line can be removed once FMS becomes a pre-installed library +if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then + mkdir -p $PATHTR/ccpp/include +fi + $gnu_make -k COMPONENTS="$COMPONENTS" TEST_BUILD_NAME="$BUILD_NAME" \ BUILD_ENV="$BUILD_TARGET" FV3_MAKEOPT="$MAKE_OPT" \ NEMS_BUILDOPT="$NEMS_BUILDOPT" build diff --git a/tests/compile_cmake.sh b/tests/compile_cmake.sh index b0cbcacd5e..1b86325e97 100755 --- a/tests/compile_cmake.sh +++ b/tests/compile_cmake.sh @@ -19,18 +19,8 @@ readonly MYDIR=$( dirname $(readlink -f $0) ) readonly ARGC=$# -cd ${MYDIR} - -if [[ $ARGC -eq 0 ]]; then - COMPILER=intel - . detect_machine.sh - PATHTR=$(cd -P ${MYDIR}/.. && pwd) - MAKE_OPT='' - BUILD_NAME=fv3 - clean_before=YES - clean_after=YES -elif [[ $ARGC -lt 2 ]]; then - echo "Usage: $0 PATHTR MACHINE_ID [ MAKE_OPT [ BUILD_NR ] [ clean_before ] [ clean_after ] ]" +if [[ $ARGC -lt 2 ]]; then + echo "Usage: $0 PATHTR MACHINE_ID [ MAKE_OPT [ BUILD_NR ] [ clean_before ] [ clean_after ] ]" echo Valid MACHINE_IDs: echo $( ls -1 ../conf/configure.fv3.* | sed s,.*fv3\.,,g ) | fold -sw72 exit 1 @@ -42,7 +32,8 @@ else clean_before=${5:-YES} clean_after=${6:-YES} fi -BUILD_DIR=build_${BUILD_NAME} + +BUILD_DIR=$(pwd)/build_${BUILD_NAME} # ---------------------------------------------------------------------- # Make sure we have reasonable number of threads. @@ -50,15 +41,13 @@ BUILD_DIR=build_${BUILD_NAME} if [[ $MACHINE_ID == cheyenne.* ]] ; then MAKE_THREADS=${MAKE_THREADS:-3} elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then - MAKE_THREADS=${MAKE_THREADS:-4} + MAKE_THREADS=${MAKE_THREADS:-1} fi MAKE_THREADS=${MAKE_THREADS:-8} hostname -cd ${PATHTR}/tests - # ---------------------------------------------------------------------- echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" @@ -89,6 +78,13 @@ fi if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then + # FIXME - create CCPP include directory before building FMS to avoid + # gfortran warnings of non-existent include directory (adding + # -Wno-missing-include-dirs) to the GNU compiler flags does not work, + # see also https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55534); + # this line can be removed once FMS becomes a pre-installed library + mkdir -p $PATHTR/FV3/ccpp/include + CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCCPP=ON -DMPI=ON" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then @@ -108,35 +104,22 @@ if [[ "${MAKE_OPT}" == *"CCPP=Y"* ]]; then CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DDYN32=OFF" fi - if [[ "${MAKE_OPT}" == *"STATIC=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DSTATIC=ON" - else - echo "Error, cmake build not compatible with dynamic CCPP" - exit 1 - fi - if [[ "${MAKE_OPT}" == *"MULTI_GASES=Y"* ]]; then CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DMULTI_GASES=ON" else CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DMULTI_GASES=OFF" fi - ( + # Check if suites argument is provided or not + set +ex + TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) + if [[ $? -eq 0 ]]; then SUITES=$( echo $MAKE_OPT | sed 's/.* SUITES=//' | sed 's/ .*//' ) - cd ${PATHTR} - ./FV3/ccpp/framework/scripts/ccpp_prebuild.py --config=FV3/ccpp/config/ccpp_prebuild_config.py --static --suites=${SUITES} --builddir=tests/${BUILD_DIR}/FV3 - ) - - # Read list of schemes, caps, and static API - source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_TYPEDEFS.sh - source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_SCHEMES.sh - source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_CAPS.sh - source ${BUILD_DIR}/FV3/ccpp/physics/CCPP_STATIC_API.sh - - fi + CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DCCPP_SUITES=${SUITES}" + echo "Compiling suites ${SUITES}" + fi + set -ex -if [[ "${MAKE_OPT}" == *"NAM_phys=Y"* ]]; then - CCPP_CMAKE_FLAGS="${CCPP_CMAKE_FLAGS} -DPHYS=nam" fi if [[ "${MAKE_OPT}" == *"WW3=Y"* ]]; then @@ -159,8 +142,8 @@ CCPP_CMAKE_FLAGS=$(trim "${CCPP_CMAKE_FLAGS}") cmake ${PATHTR} ${CCPP_CMAKE_FLAGS} make -j ${MAKE_THREADS} - mv NEMS.exe ../${BUILD_NAME}.exe - cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ../modules.${BUILD_NAME} + mv NEMS.exe ${PATHTR}/tests/${BUILD_NAME}.exe + cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} cd .. ) diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 1f13bb9dca..947013eafa 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -27,7 +27,7 @@ elif [ $MACHINE_ID = wcoss_dell_p3 ]; then TASKS_stretch=48 ; TPN_stretch=28 ; INPES_stretch=2 ; JNPES_stretch=4 TASKS_strnest=96 ; TPN_strnest=28 ; INPES_strnest=2 ; JNPES_strnest=4 -elif [[ $MACHINE_ID = theia.* ]]; then +elif [[ $MACHINE_ID = orion.* ]]; then TASKS_dflt=150 ; TPN_dflt=24 ; INPES_dflt=3 ; JNPES_dflt=8 TASKS_thrd=84 ; TPN_thrd=12 ; INPES_thrd=3 ; JNPES_thrd=4 @@ -92,6 +92,7 @@ export INPES=$INPES_dflt export JNPES=$JNPES_dflt export TASKS=$TASKS_dflt export TPN=$TPN_dflt +export RESTART_INTERVAL=0 export QUILTING=.true. export WRITE_GROUP=1 export WRTTASK_PER_GROUP=6 @@ -147,7 +148,9 @@ export DO_MYJPBL=.F. # Shallow/deep convection export IMFSHALCNV=2 +export HWRF_SAMFSHAL=.F. export IMFDEEPCNV=2 +export HWRF_SAMFDEEP=.F. # SFC export DO_MYJSFC=.F. @@ -203,6 +206,12 @@ export SHUM=-999. #IAU export IAU_INC_FILES="''" + +#Cellular automata +export DO_CA=.F. +export CA_SGS=.F. +export CA_GLOBAL=.F. + export IAU_DRYMASSFIXER=.false. # Regional diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 20acc01f9b..57e1d05540 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -5,30 +5,6 @@ export ACCNR=${ACCNR:-nems} case $(hostname -f) in - g10a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### gyre 1 - g10a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### gyre 2 - g14a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### gyre 3 - g14a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### gyre 4 - - t10a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### tide 1 - t10a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### tide 2 - t14a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### tide 3 - t14a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=1;; ### tide 4 - - g20a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - g20a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - g20a3.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - g21a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - g21a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - g21a3.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### gyre phase2 - - t20a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - t20a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - t20a3.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - t21a1.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - t21a2.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - t21a3.ncep.noaa.gov) MACHINE_ID=wcoss ; export pex=2;; ### tide phase2 - llogin1) MACHINE_ID=wcoss_cray ;; ### luna llogin2) MACHINE_ID=wcoss_cray ;; ### luna llogin3) MACHINE_ID=wcoss_cray ;; ### luna @@ -68,17 +44,6 @@ case $(hostname -f) in gaea15.ncrc.gov) MACHINE_ID=gaea ;; ### gaea15 gaea16.ncrc.gov) MACHINE_ID=gaea ;; ### gaea16 - tfe01) MACHINE_ID=theia ;; ### theia01 - tfe02) MACHINE_ID=theia ;; ### theia02 - tfe03) MACHINE_ID=theia ;; ### theia03 - tfe04) MACHINE_ID=theia ;; ### theia04 - tfe05) MACHINE_ID=theia ;; ### theia05 - tfe06) MACHINE_ID=theia ;; ### theia06 - tfe07) MACHINE_ID=theia ;; ### theia07 - tfe08) MACHINE_ID=theia ;; ### theia08 - tfe09) MACHINE_ID=theia ;; ### theia09 - tfe10) MACHINE_ID=theia ;; ### theia10 - hfe01) MACHINE_ID=hera ;; ### hera01 hfe02) MACHINE_ID=hera ;; ### hera02 hfe03) MACHINE_ID=hera ;; ### hera03 @@ -103,6 +68,11 @@ case $(hostname -f) in tfe1) MACHINE_ID=jet ;; ### jet09 tfe2) MACHINE_ID=jet ;; ### jet10 + Orion-login-1.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion1 + Orion-login-2.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion2 + Orion-login-3.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion3 + Orion-login-4.HPC.MsState.Edu) MACHINE_ID=orion ;; ### orion4 + cheyenne1.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne1 cheyenne2.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne2 cheyenne3.cheyenne.ucar.edu) MACHINE_ID=cheyenne ;; ### cheyenne3 @@ -125,44 +95,9 @@ esac # Overwrite auto-detect with NEMS_MACHINE if set MACHINE_ID=${NEMS_MACHINE:-${MACHINE_ID}} -# For Theia and Cheyenne, append compiler -if [ $MACHINE_ID = theia ] || [ $MACHINE_ID = hera ] || [ $MACHINE_ID = cheyenne ] || [ $MACHINE_ID = jet ] || [ $MACHINE_ID = gaea ] || [ $MACHINE_ID = stampede ] ; then +# Append compiler +if [ $MACHINE_ID = orion ] || [ $MACHINE_ID = hera ] || [ $MACHINE_ID = cheyenne ] || [ $MACHINE_ID = jet ] || [ $MACHINE_ID = gaea ] || [ $MACHINE_ID = stampede ] ; then MACHINE_ID=${MACHINE_ID}.${COMPILER} fi echo "Machine: " $MACHINE_ID " Account: " $ACCNR - -# --- for Theia, find available account ID - if [[ ${MACHINE_ID} = theia.* ]]; then - - AP=account_params # Account info - if [ ${ACCNR:-null} = null ]; then - - ac=`$AP 2>&1 | grep '^\s*Allocation: [0-9]' | awk '$4>100{print $3}'| head -1` - nr=`echo $ac|wc -w` - - if [ $nr -eq 1 ]; then - ACCNR=$ac - echo "Found a valid account: using $ac" - else - ac=`$AP 2>&1 | grep '^\s*Allocation: [0-9]' | awk '{print $3}'| head -1` - nr=`echo $ac|wc -w` - if [ $nr -eq 1 ]; then - ACCNR=$ac - echo "Could not an find account with positive balance: using $ac" - echo "NOTE: Will run in windfall; longer wait times, be patient!" - else - echo "Check your account ID; No compute allocations found" - fi - fi - else - cphr=`$AP 2>&1 | grep '^\s*Allocation: [0-9]' | grep $ACCNR | awk '{print $4}'` - nr=`echo $cphr|wc -w` - if [ $nr -eq 0 ]; then - echo 'Wrong account choice: ' $ACCNR - else - echo "Account: " $ACCNR", available: " $cphr " CPU hrs" - fi - fi - fi -#fi diff --git a/tests/fv3_conf/NAM_phys_run.IN b/tests/fv3_conf/NAM_phys_run.IN deleted file mode 100644 index db7426eedd..0000000000 --- a/tests/fv3_conf/NAM_phys_run.IN +++ /dev/null @@ -1,21 +0,0 @@ - -if [ $WARM_START = .F. ]; then - cp -r @[RTPWD]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT -fi -cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . -cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . -cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . -cp @[RTPWD]/FV3_input_data/INPUT/solarconstant_noaa_an.txt . -cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . -cp @[RTPWD]/FV3_input_data/qr_acr_q* . -cp @[RTPWD]/FV3_input_data/*.TBL . -cp @[RTPWD]/FV3_input_data/DETAMPNEW_DATA* . -cp @[RTPWD]/FV3_input_data/*grb . -cp @[RTPWD]/FV3_input_data/*_table . -cp @[RTPWD]/FV3_input_data/diag_table_NAM_phys diag_table -cp @[RTPWD]/FV3_input_data/field_table_NAM_phys field_table -cp @[RTPWD]/FV3_input_data/*configure . diff --git a/tests/fv3_conf/ccpp_control_run.IN b/tests/fv3_conf/ccpp_control_run.IN index 6a2347fad6..c77a53db57 100644 --- a/tests/fv3_conf/ccpp_control_run.IN +++ b/tests/fv3_conf/ccpp_control_run.IN @@ -9,13 +9,32 @@ elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi echo "inputdir=$inputdir,NPX=$NPX" + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + else + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . @@ -43,9 +62,3 @@ cp @[RTPWD]/FV3_input_data_RRTMGP/* . fi cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_cpt_run.IN b/tests/fv3_conf/ccpp_cpt_run.IN index 49792171ed..15ab38c4d8 100644 --- a/tests/fv3_conf/ccpp_cpt_run.IN +++ b/tests/fv3_conf/ccpp_cpt_run.IN @@ -20,9 +20,3 @@ cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table cp @[RTPWD]/${inputdir}/*configure . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN index 49792171ed..15ab38c4d8 100644 --- a/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN +++ b/tests/fv3_conf/ccpp_csawmg3shoc127_run.IN @@ -20,9 +20,3 @@ cp @[RTPWD]/${inputdir}/field_table_csawmg3shoc field_table cp @[RTPWD]/${inputdir}/*configure . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_csawmg_run.IN b/tests/fv3_conf/ccpp_csawmg_run.IN index 46d184a5da..f88685e6f5 100644 --- a/tests/fv3_conf/ccpp_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_csawmg_run.IN @@ -1,11 +1,30 @@ rm -fr INPUT RESTART + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -32,9 +51,3 @@ cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat o cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_csawmgshoc_run.IN b/tests/fv3_conf/ccpp_csawmgshoc_run.IN index 63c94d6318..20f20eb970 100644 --- a/tests/fv3_conf/ccpp_csawmgshoc_run.IN +++ b/tests/fv3_conf/ccpp_csawmgshoc_run.IN @@ -31,9 +31,3 @@ cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat o cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gf_thompson_run.IN b/tests/fv3_conf/ccpp_gf_thompson_run.IN index 3b6af18ae8..9dcddfde9a 100644 --- a/tests/fv3_conf/ccpp_gf_thompson_run.IN +++ b/tests/fv3_conf/ccpp_gf_thompson_run.IN @@ -23,10 +23,3 @@ cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh - diff --git a/tests/fv3_conf/ccpp_gfdlmp_run.IN b/tests/fv3_conf/ccpp_gfdlmp_run.IN index 095bac5f42..11e02639f6 100644 --- a/tests/fv3_conf/ccpp_gfdlmp_run.IN +++ b/tests/fv3_conf/ccpp_gfdlmp_run.IN @@ -1,11 +1,30 @@ rm -fr INPUT RESTART + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . @@ -23,9 +42,3 @@ cp @[RTPWD]/WW3_input_data/@[SYEAR]@[SMONTH]@[SDAY]/ww3_multi.inp . fi cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gfs_v15_run.IN b/tests/fv3_conf/ccpp_gfs_v15_run.IN index a7d5290ced..38f8f7fcc0 100644 --- a/tests/fv3_conf/ccpp_gfs_v15_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v15_run.IN @@ -19,9 +19,3 @@ cp @[RTPWD]/FV3_input_data/field_table_gfdlmp field_table cp @[RTPWD]/FV3_input_data/*configure . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gfs_v16_run.IN b/tests/fv3_conf/ccpp_gfs_v16_run.IN index 3295cd354c..ad9eeda994 100644 --- a/tests/fv3_conf/ccpp_gfs_v16_run.IN +++ b/tests/fv3_conf/ccpp_gfs_v16_run.IN @@ -19,9 +19,3 @@ cp @[RTPWD]/FV3_input_data_gsd/field_table_suite2 field_table cp @[RTPWD]/FV3_input_data/*configure . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN index 938a7b282e..d97b1a7f8e 100644 --- a/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN +++ b/tests/fv3_conf/ccpp_gfsv16_csawmg_run.IN @@ -32,9 +32,3 @@ cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat o cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gocart.IN b/tests/fv3_conf/ccpp_gocart.IN index 26f36102fd..7b113dbdad 100644 --- a/tests/fv3_conf/ccpp_gocart.IN +++ b/tests/fv3_conf/ccpp_gocart.IN @@ -31,9 +31,3 @@ cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat o cp @[RTPWD]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_gsd_run.IN b/tests/fv3_conf/ccpp_gsd_run.IN index cfcde68933..e0a7ece753 100644 --- a/tests/fv3_conf/ccpp_gsd_run.IN +++ b/tests/fv3_conf/ccpp_gsd_run.IN @@ -63,10 +63,3 @@ if [ $IMP_PHYSICS = 8 ]; then fi cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh - diff --git a/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN b/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN index dabc2ad2c5..f899096ca7 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_25km_run.IN @@ -26,10 +26,3 @@ cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh - diff --git a/tests/fv3_conf/ccpp_gsd_sar_run.IN b/tests/fv3_conf/ccpp_gsd_sar_run.IN index a10b277155..2a13a14a60 100644 --- a/tests/fv3_conf/ccpp_gsd_sar_run.IN +++ b/tests/fv3_conf/ccpp_gsd_sar_run.IN @@ -25,10 +25,3 @@ cp @[RTPWD]/FV3_input_data_gsd/freezeH2O.dat . cp @[RTPWD]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh - diff --git a/tests/fv3_conf/ccpp_regional_FA_run.IN b/tests/fv3_conf/ccpp_regional_FA_run.IN index f3181c4be4..46cabacb25 100644 --- a/tests/fv3_conf/ccpp_regional_FA_run.IN +++ b/tests/fv3_conf/ccpp_regional_FA_run.IN @@ -22,9 +22,3 @@ cp /scratch1/BMC/gmtb/ufs-weather-model/RT/NEMSfv3gfs/FV3_input_data_temporar cp /scratch1/BMC/gmtb/ufs-weather-model/RT/NEMSfv3gfs/FV3_input_data_temporary_hafs/field_table_FA_nwat4 field_table cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_regional_run.IN b/tests/fv3_conf/ccpp_regional_run.IN index 53e3418f2a..74b4b1616a 100644 --- a/tests/fv3_conf/ccpp_regional_run.IN +++ b/tests/fv3_conf/ccpp_regional_run.IN @@ -5,7 +5,6 @@ rm -rf INPUT RESTART mkdir INPUT RESTART rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. -rsync -arv @[RTPWD]/@[INPUT_DIR]/RESTART/. RESTART/. if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res @@ -17,10 +16,13 @@ if [ $WARM_START = .T. ]; then cp ../fv3_ccpp_regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc fi -cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml +if [ $OZ_PHYS_NEW = .T. ]; then + cp @[RTPWD]/FV3_input_data/ozprdlos_2015_new_sbuvO3_tclm15_nuchem.f77 ./global_o3prdlos.f77 +elif [ $OZ_PHYS_OLD = .T. ]; then + cp @[RTPWD]/FV3_input_data/INPUT/global_o3prdlos.f77 . +fi +if [ $H2O_PHYS = .T. ]; then + cp @[RTPWD]/FV3_input_data/global_h2o_pltc.f77 ./global_h2oprdlos.f77 +fi -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh +cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml diff --git a/tests/fv3_conf/ccpp_satmedmf_run.IN b/tests/fv3_conf/ccpp_satmedmf_run.IN index 7ab7565912..c35df9a44f 100644 --- a/tests/fv3_conf/ccpp_satmedmf_run.IN +++ b/tests/fv3_conf/ccpp_satmedmf_run.IN @@ -1,4 +1,6 @@ rm -fr INPUT RESTART + +UNIT_TEST=${UNIT_TEST:-false} if [ $NPX = 97 ]; then inputdir=FV3_input_data elif [ $NPX = 193 ]; then @@ -14,8 +16,25 @@ if [ $WARM_START = .F. ]; then mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + else + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . @@ -27,9 +46,3 @@ cp @[RTPWD]/${inputdir}/field_table_satmedmf field_table cp @[RTPWD]/${inputdir}/*configure . cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/ccpp_stretched_run.IN b/tests/fv3_conf/ccpp_stretched_run.IN index 41793a8143..5215e5a062 100644 --- a/tests/fv3_conf/ccpp_stretched_run.IN +++ b/tests/fv3_conf/ccpp_stretched_run.IN @@ -17,9 +17,3 @@ rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. # *DH 20190528 cp ${PATHRT}/../FV3/ccpp/suites/suite_${CCPP_SUITE}.xml suite_${CCPP_SUITE}.xml - -# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH, append to module-setup.sh -echo " " >> module-setup.sh -echo "# Add path to libccpp.so and libccpphys.so to LD_LIBRARY_PATH" -echo "export LD_LIBRARY_PATH=${PATHRT}/../FV3/${CCPP_LIB_DIR}:${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" >> module-setup.sh -echo " " >> module-setup.sh diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray new file mode 100644 index 0000000000..9d308fe70c --- /dev/null +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_cray @@ -0,0 +1,18 @@ +#!/bin/bash + +#BSUB -oo out +#BSUB -eo err +#BSUB -J @[JBNME] +#BSUB -W 00:30 +#BSUB -q @[QUEUE] +#BSUB -P GFS-DEV +#BSUB -extsched "CRAYLINUX[]" -R "1*{select[craylinux && !vnode]} + 24*{select[craylinux && vnode] span [ptile=24]}" +#BSUB -M 500 + +set -eux + +echo "Compile started: " `date` + +aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile_cmake.sh @[PATHTR] @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 new file mode 100644 index 0000000000..727e325c39 --- /dev/null +++ b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 @@ -0,0 +1,19 @@ +#!/bin/bash + +#BSUB -oo out +#BSUB -eo err +#BSUB -J @[JBNME] +#BSUB -W 00:45 +#BSUB -q @[QUEUE] +#BSUB -P GFS-DEV +#BSUB -n 1 +#BSUB -R affinity[core(1)] +#BSUB -R rusage[mem=8192] + +set -eux + +echo "Compile started: " `date` + +@[PATHRT]/compile_cmake.sh @[PATHTR] @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne new file mode 100644 index 0000000000..c7a5cf0833 --- /dev/null +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -0,0 +1,16 @@ +#!/bin/sh -l +#PBS -o out +#PBS -e err +#PBS -N @[JBNME] +#PBS -A @[ACCNR] +#PBS -q @[QUEUE] +#PBS -l select=1:ncpus=8:mpiprocs=1 +#PBS -l walltime=00:30:00 + +set -eux + +echo "Compile started: " `date` + +@[PATHRT]/compile_cmake.sh @[PATHTR] @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/compile_slurm.IN_hera b/tests/fv3_conf/compile_slurm.IN_hera new file mode 100644 index 0000000000..e5db1be980 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_hera @@ -0,0 +1,17 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=30 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo "Compile started: " `date` + +@[PATHRT]/compile_cmake.sh @[PATHTR] @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/compile_slurm.IN_orion b/tests/fv3_conf/compile_slurm.IN_orion new file mode 100755 index 0000000000..48a6e5ebd9 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_orion @@ -0,0 +1,18 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --time=60 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo "Compile started: " `date` + +@[PATHRT]/compile_cmake.sh @[PATHTR] @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] + +echo "Compile ended: " `date` diff --git a/tests/fv3_conf/csawmg3shoc127_run.IN b/tests/fv3_conf/csawmg3shoc127_run.IN index 253ad70d04..25df5c7c22 100644 --- a/tests/fv3_conf/csawmg3shoc127_run.IN +++ b/tests/fv3_conf/csawmg3shoc127_run.IN @@ -1,11 +1,29 @@ inputdir=FV3_input_data_127 + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + else + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 3f2aa13f9a..018dbe96bc 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -1,11 +1,28 @@ - +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/csawmgshoc_run.IN b/tests/fv3_conf/csawmgshoc_run.IN index cf88758cb7..fe946b315d 100644 --- a/tests/fv3_conf/csawmgshoc_run.IN +++ b/tests/fv3_conf/csawmgshoc_run.IN @@ -1,11 +1,28 @@ - +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/fv3_regional_run.IN b/tests/fv3_conf/fv3_regional_run.IN index deebee0134..a451f00307 100644 --- a/tests/fv3_conf/fv3_regional_run.IN +++ b/tests/fv3_conf/fv3_regional_run.IN @@ -6,7 +6,6 @@ rm -rf INPUT RESTART mkdir INPUT RESTART rsync -arv @[RTPWD]/@[INPUT_DIR]/INPUT/. INPUT/. -rsync -arv @[RTPWD]/@[INPUT_DIR]/RESTART/. RESTART/. if [ $WARM_START = .T. ]; then cp ../fv3_regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index 39d2b41584..dc1c687565 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -9,13 +9,32 @@ elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi echo "inputdir=$inputdir,NPX=$NPX" + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + else + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet old mode 100755 new mode 100644 diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion new file mode 100644 index 0000000000..400069fd31 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -0,0 +1,43 @@ +#!/bin/sh +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --partition=@[PARTITION] +### #SBATCH --ntasks=@[TASKS] +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] +#SBATCH --job-name="@[JBNME]" +#SBATCH --exclusive + +set -eux + +set +x +source ./module-setup.sh +module use $( pwd -P ) +module load modules.fv3 +module list + +set -x + +ulimit -s unlimited + +echo "Model started: " `date` + +#export MPI_TYPE_DEPTH=20 +#export OMP_STACKSIZE=512M +export KMP_AFFINITY=scatter +export OMP_NUM_THREADS=@[THRD] +#export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +#export PSM_RANKS_PER_CONTEXT=4 +#export PSM_SHAREDCONTEXTS=1 + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` + +exit diff --git a/tests/fv3_conf/fv3_qsub.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede similarity index 100% rename from tests/fv3_conf/fv3_qsub.IN_stampede rename to tests/fv3_conf/fv3_slurm.IN_stampede diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index e3ae1668bf..28b21030e8 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -1,11 +1,29 @@ +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/satmedmf_run.IN b/tests/fv3_conf/satmedmf_run.IN index 4430fcedfb..7e6e9b7072 100644 --- a/tests/fv3_conf/satmedmf_run.IN +++ b/tests/fv3_conf/satmedmf_run.IN @@ -9,13 +9,32 @@ elif [ $NPX = 769 ]; then inputdir=FV3_input_data_c768 fi echo "inputdir=$inputdir,NPX=$NPX" + +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + else + cp -r @[RTPWD]/${inputdir}/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/${inputdir}/INPUT/aerosol.dat . cp @[RTPWD]/${inputdir}/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/${inputdir}/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/thompson_run.IN b/tests/fv3_conf/thompson_run.IN index 065254d995..e8a708dcc4 100644 --- a/tests/fv3_conf/thompson_run.IN +++ b/tests/fv3_conf/thompson_run.IN @@ -1,11 +1,29 @@ +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/fv3_conf/wsm6_run.IN b/tests/fv3_conf/wsm6_run.IN index c0891890b7..ee394da687 100644 --- a/tests/fv3_conf/wsm6_run.IN +++ b/tests/fv3_conf/wsm6_run.IN @@ -1,11 +1,28 @@ - +UNIT_TEST=${UNIT_TEST:-false} if [ $WARM_START = .F. ]; then cp -r @[RTPWD]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + + if [[ ${UNIT_TEST} == false ]]; then + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + else + cp -r @[RTPWD]/FV3_input_data/RESTART/* ./INPUT + rm -f INPUT/fv_core.res.* + rm -f INPUT/fv_srf_wnd.res.* + rm -f INPUT/fv_tracer.res.* + rm -f INPUT/phy_data.*c + rm -f INPUT/srf_data.* + for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE INPUT/${RFILE_NEW} + done + fi fi + cp @[RTPWD]/FV3_input_data/INPUT/aerosol.dat . cp @[RTPWD]/FV3_input_data/INPUT/co2historicaldata_201*.txt . cp @[RTPWD]/FV3_input_data/INPUT/sfc_emissivity_idx.txt . diff --git a/tests/head.h b/tests/head.h index 9935a7476e..00c7d1d1fc 100644 --- a/tests/head.h +++ b/tests/head.h @@ -25,7 +25,6 @@ ecflow_client --init=$$ # Define a error handler ERROR() { set +e # Clear -e flag, so we don't fail - kill $(jobs -p) wait # wait for background process to stop ecflow_client --ping --host=${ECF_HOST} --port=${ECF_PORT} diff --git a/tests/rt.conf b/tests/rt.conf index 0652e50d79..f94c3ad468 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,272 +1,9 @@ -####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### - -COMPILE | | standard | wcoss_cray | fv3 | -COMPILE | | standard | wcoss_dell_p3 | fv3 | -COMPILE | | standard | hera.intel | fv3 | -COMPILE | | standard | gaea.intel | fv3 | -COMPILE | | standard | jet.intel | fv3 | - -# Run most tests using the compile.sh version of fv3: -RUN | fv3_control | standard | | fv3 | -RUN | fv3_decomp | standard | | | -RUN | fv3_2threads | standard | | | -RUN | fv3_restart | standard | | fv3 | -RUN | fv3_read_inc | standard | | fv3 | -RUN | fv3_gfdlmp | standard | | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_wsm6 | standard | | fv3 | -RUN | fv3_wrtGauss_netcdf_esmf | standard | | fv3 | -RUN | fv3_wrtGauss_netcdf | standard | | fv3 | -RUN | fv3_wrtGauss_nemsio | standard | | fv3 | -RUN | fv3_wrtGauss_nemsio_c192 | standard | | fv3 | -RUN | fv3_stochy | standard | | fv3 | -RUN | fv3_iau | standard | | fv3 | -RUN | fv3_csawmgshoc | standard | | fv3 | -RUN | fv3_csawmg | standard | | fv3 | -RUN | fv3_rasmgshoc | standard | | fv3 | -RUN | fv3_csawmg3shoc127 | standard | | fv3 | -RUN | fv3_satmedmf | standard | | fv3 | -RUN | fv3_lheatstrg | standard | | fv3 | -RUN | fv3_gfsv16_csawmg | standard | | fv3 | -RUN | fv3_gocart_clm | standard | | fv3 | -RUN | fv3_gfsv16_csawmgt | standard | | fv3 | - -COMPILE | WW3=Y | standard | wcoss_cray | fv3 | -COMPILE | WW3=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | WW3=Y | standard | hera.intel | fv3 | -RUN | fv3_gfdlmprad | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad | standard | hera.intel | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | hera.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -###RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_cray | fv3 | -###RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| standaloneFV3 | standard | wcoss_cray | | -APPBUILD| standaloneFV3 | standard | wcoss_dell_p3 | | -APPBUILD| standaloneFV3 | standard | hera.intel | | -APPBUILD| standaloneFV3 | standard | gaea.intel | | -APPBUILD| standaloneFV3 | standard | jet.intel | | -RUN | fv3_appbuild | standard | | | - -COMPILE | 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | 32BIT=Y | standard | jet.intel | fv3 | -RUN | fv3_control_32bit | standard | | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_stretched | standard | | fv3 | -RUN | fv3_stretched_nest | standard | | fv3 | -RUN | fv3_stretched_nest_quilt | standard | wcoss_cray | fv3 | -RUN | fv3_stretched_nest_quilt | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_stretched_nest_quilt | standard | hera.intel | fv3 | - -RUN | fv3_regional_control | standard | | fv3 | -RUN | fv3_regional_restart | standard | | fv3 | fv3_regional_control -RUN | fv3_regional_quilt | standard | | fv3 | -RUN | fv3_regional_c768 | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_regional_c768 | standard | hera.intel | fv3 | -RUN | fv3_regional_c768 | standard | gaea.intel | fv3 | -RUN | fv3_regional_c768 | standard | jet.intel | fv3 | - -COMPILE | 32BIT=Y DEBUG=Y | standard | hera.intel | fv3 | -RUN | fv3_control_debug | standard | hera.intel | fv3 | -RUN | fv3_stretched_nest_debug | standard | hera.intel | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | wcoss_cray | fv3 | -COMPILE | REPRO=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | REPRO=Y | standard | hera.intel | fv3 | -COMPILE | REPRO=Y | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y | standard | jet.intel | fv3 | - -RUN | fv3_control | standard | | fv3 | -RUN | fv3_decomp | standard | | | -RUN | fv3_2threads | standard | | | -RUN | fv3_restart | standard | | fv3 | -RUN | fv3_read_inc | standard | | fv3 | -RUN | fv3_wrtGauss_netcdf_esmf | standard | | fv3 | -RUN | fv3_wrtGauss_netcdf | standard | | fv3 | -RUN | fv3_wrtGauss_nemsio | standard | | fv3 | -RUN | fv3_wrtGauss_nemsio_c192 | standard | | fv3 | -RUN | fv3_stochy | standard | | | -RUN | fv3_iau | standard | | fv3 | -RUN | fv3_gfdlmp | standard | | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | | fv3 | -RUN | fv3_csawmgshoc | standard | | fv3 | -RUN | fv3_csawmg3shoc127 | standard | | fv3 | -RUN | fv3_csawmg | standard | | fv3 | -RUN | fv3_satmedmf | standard | | fv3 | -RUN | fv3_gfsv16_csawmg | standard | | fv3 | -RUN | fv3_gocart_clm | standard | | fv3 | -RUN | fv3_gfsv16_csawmgt | standard | | fv3 | - -COMPILE | REPRO=Y WW3=Y | standard | wcoss_cray | fv3 | -COMPILE | REPRO=Y WW3=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | REPRO=Y WW3=Y | standard | hera.intel | fv3 | -RUN | fv3_gfdlmprad | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad | standard | hera.intel | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad_atmwav | standard | hera.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c768 | standard | hera.intel | fv3 | -###RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_cray | fv3 | -###RUN | fv3_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| standaloneFV3_repro | standard | wcoss_cray | | -APPBUILD| standaloneFV3_repro | standard | wcoss_dell_p3 | | -APPBUILD| standaloneFV3_repro | standard | hera.intel | | -APPBUILD| standaloneFV3_repro | standard | gaea.intel | | -APPBUILD| standaloneFV3_repro | standard | jet.intel | | -RUN | fv3_appbuild | standard | | | - -COMPILE | REPRO=Y 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y 32BIT=Y | standard | jet.intel | fv3 | - -RUN | fv3_control_32bit | standard | | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | wcoss_cray | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_gfdlmprad_32bit_post | standard | hera.intel | fv3 | -RUN | fv3_stretched | standard | | fv3 | -RUN | fv3_stretched_nest | standard | | fv3 | -RUN | fv3_regional_control | standard | | fv3 | -RUN | fv3_regional_restart | standard | | fv3 | fv3_regional_control -RUN | fv3_regional_quilt | standard | | fv3 | -RUN | fv3_regional_c768 | standard | wcoss_dell_p3 | fv3 | -RUN | fv3_regional_c768 | standard | hera.intel | fv3 | -RUN | fv3_regional_c768 | standard | gaea.intel | fv3 | -RUN | fv3_regional_c768 | standard | jet.intel | fv3 | -RUN | fv3_gfdlmp_32bit | standard | | fv3 | -RUN | fv3_cpt | standard | | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_cray | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_dell_p3 | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | hera.intel | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | jet.intel | fv3 | - -RUN | fv3_ccpp_control | standard | | | -RUN | fv3_ccpp_decomp | standard | | | -RUN | fv3_ccpp_2threads | standard | | | -RUN | fv3_ccpp_restart | standard | | | -RUN | fv3_ccpp_read_inc | standard | | | -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | | | -RUN | fv3_ccpp_wrtGauss_netcdf | standard | | | -RUN | fv3_ccpp_wrtGauss_nemsio | standard | | | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | | -RUN | fv3_ccpp_stochy | standard | | fv3 | -RUN | fv3_ccpp_iau | standard | | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | | -RUN | fv3_ccpp_gfdlmprad | standard | wcoss_cray | | -RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | | -RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_cray | | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | wcoss_dell_p3 | | -RUN | fv3_ccpp_gfdlmprad_atmwav | standard | hera.intel | | -RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | hera.intel | | -###RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_cray | | -###RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| CCPP_repro | standard | wcoss_cray | | -APPBUILD| CCPP_repro | standard | wcoss_dell_p3 | | -APPBUILD| CCPP_repro | standard | hera.intel | | -APPBUILD| CCPP_repro | standard | gaea.intel | | -APPBUILD| CCPP_repro | standard | jet.intel | | -RUN | fv3_ccpp_appbuild | standard | | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | | -RUN | fv3_ccpp_control_32bit | standard | | | -RUN | fv3_ccpp_stretched | standard | | | -RUN | fv3_ccpp_stretched_nest | standard | | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | hera.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | gaea.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | jet.intel | | - -RUN | fv3_ccpp_regional_control | standard | | | -RUN | fv3_ccpp_regional_restart | standard | | | fv3_ccpp_regional_control -RUN | fv3_ccpp_regional_quilt | standard | | | -RUN | fv3_ccpp_regional_c768 | standard | wcoss_dell_p3 | | -RUN | fv3_ccpp_regional_c768 | standard | hera.intel | | -RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | | -RUN | fv3_ccpp_regional_c768 | standard | jet.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | | - -RUN | fv3_ccpp_gfdlmp | standard | | | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | | | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | wcoss_cray | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | wcoss_dell_p3 | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | hera.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | gaea.intel | | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | jet.intel | | - -#RUN | fv3_ccpp_csawmgshoc | standard | | | -#RUN | fv3_ccpp_csawmg3shoc127 | standard | | | -RUN | fv3_ccpp_csawmg | standard | | | -RUN | fv3_ccpp_satmedmf | standard | | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | jet.intel | fv3 | - -RUN | fv3_ccpp_gfdlmp_32bit | standard | | | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_cray | | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_dell_p3 | | -RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | hera.intel | | -RUN | fv3_ccpp_cpt | standard | | | -RUN | fv3_ccpp_gsd | standard | | fv3 | - -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | jet.intel | fv3 | RUN | fv3_ccpp_control | standard | | fv3 | RUN | fv3_ccpp_decomp | standard | | | @@ -275,19 +12,22 @@ RUN | fv3_ccpp_restart RUN | fv3_ccpp_read_inc | standard | | fv3 | RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | | fv3 | RUN | fv3_ccpp_wrtGauss_netcdf | standard | | fv3 | +RUN | fv3_ccpp_wrtGlatlon_netcdf | standard | | fv3 | RUN | fv3_ccpp_wrtGauss_nemsio | standard | | fv3 | RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | fv3 | RUN | fv3_ccpp_stochy | standard | | fv3 | RUN | fv3_ccpp_iau | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_iau | standard | wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_iau | standard | hera.intel | fv3 | +RUN | fv3_ccpp_ca | standard | hera.intel | fv3 | # temporarily disabled for gaea.intel (intel18): gives different results when creating baseline and verifying against it #RUN | fv3_ccpp_iau | standard | gaea.intel | fv3 | RUN | fv3_ccpp_iau | standard | jet.intel | fv3 | +RUN | fv3_ccpp_lheatstrg | standard | | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfdlmprad | standard | wcoss_cray | fv3 | RUN | fv3_ccpp_gfdlmprad | standard | wcoss_dell_p3 | fv3 | RUN | fv3_ccpp_gfdlmprad | standard | hera.intel | fv3 | @@ -298,29 +38,21 @@ RUN | fv3_ccpp_wrtGauss_nemsio_c768 ###RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_cray | fv3 | ###RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | wcoss_dell_p3 | fv3 | -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| CCPP | standard | wcoss_cray | | -APPBUILD| CCPP | standard | wcoss_dell_p3 | | -APPBUILD| CCPP | standard | hera.intel | | -APPBUILD| CCPP | standard | gaea.intel | | -APPBUILD| CCPP | standard | jet.intel | | -RUN | fv3_ccpp_appbuild | standard | | | - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_control_32bit | standard | | fv3 | RUN | fv3_ccpp_stretched | standard | | fv3 | RUN | fv3_ccpp_stretched_nest | standard | | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_regional_control | standard | | fv3 | RUN | fv3_ccpp_regional_restart | standard | | fv3 | fv3_ccpp_regional_control @@ -330,41 +62,42 @@ RUN | fv3_ccpp_regional_c768 RUN | fv3_ccpp_regional_c768 | standard | gaea.intel | fv3 | RUN | fv3_ccpp_regional_c768 | standard | jet.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_control_debug | standard | | fv3 | RUN | fv3_ccpp_stretched_nest_debug | standard | | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | fv3 | RUN | fv3_ccpp_gfdlmp | standard | | fv3 | RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmp_hwrfsas | standard | | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | jet.intel | fv3 | - +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | standard | jet.intel | fv3 | #RUN | fv3_ccpp_csawmgshoc | standard | | fv3 | #RUN | fv3_ccpp_csawmg3shoc127 | standard | | fv3 | RUN | fv3_ccpp_csawmg | standard | | fv3 | RUN | fv3_ccpp_satmedmf | standard | | fv3 | +RUN | fv3_ccpp_satmedmfq | standard | | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | wcoss_cray | fv3 | @@ -379,7 +112,7 @@ RUN | fv3_ccpp_thompson_no_aero # CCPP PROD tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | @@ -389,55 +122,36 @@ RUN | fv3_ccpp_rrtmgp # CCPP DEBUG tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | hera.intel | fv3 | RUN | fv3_ccpp_rrtmgp_debug | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_gsd_debug | standard | | fv3 | RUN | fv3_ccpp_thompson_debug | standard | | fv3 | RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | ####################################################################################################################################################################################### ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v16_csawmg | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | jet.intel | fv3 | RUN | fv3_ccpp_gfsv16_csawmg | standard | | fv3 | RUN | fv3_ccpp_gfsv16_csawmgt | standard | | fv3 | ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_cray | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_dell_p3 | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_cray | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | wcoss_dell_p3 | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | hera.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | jet.intel | fv3 | RUN | fv3_ccpp_gocart_clm | standard | | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP REPRO=Y | standard | hera.intel | fv3 | - -RUN | fv3_ccpp_gfs_v15p2 | standard | hera.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | hera.intel | fv3 | -RUN | fv3_ccpp_rrtmgp | standard | hera.intel | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests (verify against CCPP REPRO tests) # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | hera.intel | | - -RUN | fv3_gfs_v15p2 | standard | hera.intel | | -RUN | fv3_gfs_v16beta | standard | hera.intel | | diff --git a/tests/rt.sh b/tests/rt.sh index 6c8ccedf85..92353a5b38 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -67,26 +67,7 @@ export COMPILER=${NEMS_COMPILER:-intel} source detect_machine.sh source rt_utils.sh -if [[ $MACHINE_ID = wcoss ]]; then - - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - - set +u - source /usrx/local/ecflow/setup.sh - ECFLOW_START=/usrx/local/ecflow/bin/ecflow_start.sh - set -u - ROCOTORUN="/u/Christopher.W.Harrop/rocoto/bin/rocotorun" - ROCOTOSTAT="/u/Christopher.W.Harrop/rocoto/bin/rocotostat" - DISKNM=/nems/noscrub/emc.nemspara/RT - QUEUE=debug - PARTITION= - ACCNR=GFS-DEV - STMP=/ptmpp$pex - PTMP=/ptmpp$pex - SCHEDULER=lsf -# cp fv3_conf/fv3_bsub.IN_wcoss fv3_conf/fv3_bsub.IN - -elif [[ $MACHINE_ID = wcoss_cray ]]; then +if [[ $MACHINE_ID = wcoss_cray ]]; then source $PATHTR/NEMS/src/conf/module-setup.sh.inc module load xt-lsfhpc @@ -101,6 +82,7 @@ elif [[ $MACHINE_ID = wcoss_cray ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=lsfcray module load ecflow/intel/4.7.1 ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh @@ -108,6 +90,7 @@ elif [[ $MACHINE_ID = wcoss_cray ]]; then DISKNM=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT QUEUE=debug + COMPILE_QUEUE=dev PARTITION= ACCNR=GFS-DEV if [[ -d /gpfs/hps3/ptmp ]] ; then @@ -119,6 +102,7 @@ elif [[ $MACHINE_ID = wcoss_cray ]]; then fi SCHEDULER=lsf cp fv3_conf/fv3_bsub.IN_wcoss_cray fv3_conf/fv3_bsub.IN + cp fv3_conf/compile_bsub.IN_wcoss_cray fv3_conf/compile_bsub.IN elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then @@ -135,6 +119,7 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=lsf module load ips/18.0.1.163 module load ecflow/4.7.1 @@ -143,12 +128,14 @@ elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then DISKNM=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT QUEUE=debug + COMPILE_QUEUE=dev_transfer PARTITION= ACCNR=GFS-DEV STMP=/gpfs/dell2/stmp PTMP=/gpfs/dell2/ptmp SCHEDULER=lsf cp fv3_conf/fv3_bsub.IN_wcoss_dell_p3 fv3_conf/fv3_bsub.IN + cp fv3_conf/compile_bsub.IN_wcoss_dell_p3 fv3_conf/compile_bsub.IN elif [[ $MACHINE_ID = gaea.* ]]; then @@ -162,6 +149,7 @@ elif [[ $MACHINE_ID = gaea.* ]]; then DISKNM=/lustre/f2/pdata/esrl/gsd/ufs/ufs-weather-model/RT # *DH 20190717 QUEUE=debug + COMPILE_QUEUE=debug # DO NOT SET AN ACCOUNT EVERYONE IS NOT A MEMBER OF # USE AN ENVIRONMENT VARIABLE TO SET ACCOUNT # ACCNR=cmp @@ -175,7 +163,6 @@ elif [[ $MACHINE_ID = gaea.* ]]; then elif [[ $MACHINE_ID = hera.* ]]; then - export NCEPLIBS=/scratch1/NCEPDEV/global/gwv/l819/lib source $PATHTR/NEMS/src/conf/module-setup.sh.inc module use $PATHTR/modulefiles/${MACHINE_ID} @@ -188,57 +175,58 @@ elif [[ $MACHINE_ID = hera.* ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm + export PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:$PATH export PYTHONPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/lib/python2.7/site-packages ECFLOW_START=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - QUEUE=debug + + QUEUE=batch + COMPILE_QUEUE=batch + # ACCNR=fv3-cpu PARTITION= - # - # DTC baseline - dprefix=/scratch1/BMC/gmtb - DISKNM=$dprefix/ufs-weather-model/RT - STMP=$dprefix - PTMP=$dprefix - # EMC baseline - #dprefix=/scratch1/NCEPDEV - #DISKNM=$dprefix/nems/emc.nemspara/RT - #STMP=$dprefix/stmp4 - #PTMP=$dprefix/stmp2 - # + dprefix=/scratch1/NCEPDEV + DISKNM=$dprefix/nems/emc.nemspara/RT + STMP=$dprefix/stmp4 + PTMP=$dprefix/stmp2 SCHEDULER=slurm cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_hera fv3_conf/compile_slurm.IN -elif [[ $MACHINE_ID = theia.* ]]; then +elif [[ $MACHINE_ID = orion.* ]]; then source $PATHTR/NEMS/src/conf/module-setup.sh.inc module use $PATHTR/modulefiles/${MACHINE_ID} module load fv3 + module load gcc/8.3.0 # Re-instantiate COMPILER in case it gets deleted by module purge COMPILER=${NEMS_COMPILER:-intel} - module load rocoto/1.3.0 + module load rocoto/1.3.1 ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) - export PATH=/scratch4/NCEPDEV/meso/save/Dusan.Jovic/ecflow/bin:$PATH - export PYTHONPATH=/scratch4/NCEPDEV/meso/save/Dusan.Jovic/ecflow/lib/python2.7/site-packages - ECFLOW_START=/scratch4/NCEPDEV/meso/save/Dusan.Jovic/ecflow/bin/ecflow_start.sh + export PATH=/work/noaa/fv3-cam/djovic/ecflow/bin:$PATH + export PYTHONPATH=/work/noaa/fv3-cam/djovic/ecflow/lib/python2.7/site-packages + ECFLOW_START=/work/noaa/fv3-cam/djovic/ecflow/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) - QUEUE=debug + QUEUE=batch + COMPILE_QUEUE=batch # ACCNR= # detected in detect_machine.sh - PARTITION= - dprefix=/scratch4/NCEPDEV - DISKNM=$dprefix/nems/noscrub/emc.nemspara/RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp3 + PARTITION=orion + dprefix=/work/noaa/stmp/${USER} + DISKNM=/work/noaa/fv3-cam/djovic/RT + STMP=$dprefix/stmp + PTMP=$dprefix/stmp SCHEDULER=slurm - cp fv3_conf/fv3_slurm.IN_theia fv3_conf/fv3_slurm.IN + cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN + cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN elif [[ $MACHINE_ID = jet.* ]]; then @@ -254,12 +242,14 @@ elif [[ $MACHINE_ID = jet.* ]]; then ROCOTORUN=$(which rocotorun) ROCOTOSTAT=$(which rocotostat) ROCOTOCOMPLETE=$(which rocotocomplete) + ROCOTO_SCHEDULER=slurm export PATH=/mnt/lfs3/projects/hfv3gfs/Dusan.Jovic/ecflow/bin:$PATH export PYTHONPATH=/mnt/lfs3/projects/hfv3gfs/Dusan.Jovic/ecflow/lib/python2.7/site-packages ECFLOW_START=/mnt/lfs3/projects/hfv3gfs/Dusan.Jovic/ecflow/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=debug + COMPILE_QUEUE=batch ACCNR=hfv3gfs PARTITION=xjet DISKNM=/lfs3/projects/hfv3gfs/GMTB/RT @@ -277,16 +267,21 @@ elif [[ $MACHINE_ID = cheyenne.* ]]; then # Re-instantiate COMPILER in case it gets deleted by module purge COMPILER=${NEMS_COMPILER:-intel} - export PYTHONPATH= - ECFLOW_START= - QUEUE=premium + module load python/2.7.16 + export PATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/ecFlow-5.3.1/lib/python2.7/site-packages + ECFLOW_START=/glade/p/ral/jntp/tools/ecFlow-5.3.1/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + QUEUE=regular + COMPILE_QUEUE=regular PARTITION= dprefix=/glade/scratch DISKNM=/glade/p/ral/jntp/GMTB/ufs-weather-model/RT - STMP=$dprefix + STMP=/glade/work PTMP=$dprefix SCHEDULER=pbs cp fv3_conf/fv3_qsub.IN_cheyenne fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_cheyenne fv3_conf/compile_qsub.IN elif [[ $MACHINE_ID = stampede.* ]]; then @@ -297,15 +292,16 @@ elif [[ $MACHINE_ID = stampede.* ]]; then export PYTHONPATH= ECFLOW_START= QUEUE=skx-dev + COMPILE_QUEUE=skx-dev PARTITION= - dprefix=$WORK/NEMSfv3gfs/run - DISKNM=$WORK/NEMSfv3gfs/RT - STMP=$dprefix/stmp4 - PTMP=$dprefix/stmp3 - SCHEDULER=sbatch + dprefix=$WORK/ufs-weather-model/run + DISKNM=$WORK/ufs-weather-model/RT + STMP=$dprefix + PTMP=$dprefix + SCHEDULER=slurm MPIEXEC=ibrun MPIEXECOPTS= - cp fv3_conf/fv3_qsub.IN_stampede fv3_conf/fv3_qsub.IN + cp fv3_conf/fv3_slurm.IN_stampede fv3_conf/fv3_slurm.IN else die "Unknown machine ID, please edit detect_machine.sh file" @@ -315,7 +311,7 @@ mkdir -p ${STMP}/${USER} # Different own baseline directories for different compilers on Theia/Cheyenne NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then NEW_BASELINE=${NEW_BASELINE}_${COMPILER^^} fi @@ -330,6 +326,11 @@ KEEP_RUNDIR=false TESTS_FILE='rt.conf' +if [[ $MACHINE_ID = orion.* ]]; then + TESTS_FILE='rt_orion.conf' +fi + + SET_ID='standard' while getopts ":cfsl:mkreh" opt; do case $opt in @@ -376,21 +377,11 @@ while getopts ":cfsl:mkreh" opt; do esac done -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/dtc-develop-20200413/${COMPILER^^}} +if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]]; then + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200603/${COMPILER^^}} else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/dtc-develop-20200413} + RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200603} fi -# DH* temporarily - remove before final merge to dtc/develop -## Fix me - make those definitions and DISKNM consistent -#if [[ $MACHINE_ID = hera.* ]]; then -# RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200323/${COMPILER^^}} -#elif [[ $MACHINE_ID = cheyenne.* ]]; then -# RTPWD=${RTPWD:-$DISKNM/develop-20200323/${COMPILER^^}} -#else -# RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-20200323} -#fi -# *DH shift $((OPTIND-1)) [[ $# -gt 1 ]] && usage @@ -445,8 +436,6 @@ LOG_DIR=${PATHRT}/log_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} -rm -f ../fv3.exe - if [[ $ROCOTO == true ]]; then ROCOTO_XML=${PATHRT}/rocoto_workflow.xml @@ -470,7 +459,7 @@ if [[ $ROCOTO == true ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm - elif [[ $MACHINE_ID = theia.* ]]; then + elif [[ $MACHINE_ID = orion.* ]]; then QUEUE=batch COMPILE_QUEUE=batch ROCOTO_SCHEDULER=slurm @@ -503,18 +492,19 @@ fi if [[ $ECFLOW == true ]]; then ECFLOW_RUN=${PATHRT}/ecflow_run + ECFLOW_SUITE=regtest rm -rf ${ECFLOW_RUN} - mkdir -p ${ECFLOW_RUN}/regtest + mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} - > ${ECFLOW_RUN}/regtest.def - cat << EOF >> ${ECFLOW_RUN}/regtest.def -suite regtest + > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + cat << EOF >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def +suite ${ECFLOW_SUITE} edit ECF_HOME '${ECFLOW_RUN}' edit ECF_INCLUDE '${ECFLOW_RUN}' edit ECF_KILL_CMD kill -15 %ECF_RID% > %ECF_JOB%.kill 2>&1 edit ECF_TRIES 1 label rundir_root '${RUNDIR_ROOT}' - limit max_builds 6 + limit max_builds 10 limit max_jobs 30 EOF @@ -526,10 +516,12 @@ EOF QUEUE=dev elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch - elif [[ $MACHINE_ID = theia.* ]]; then + elif [[ $MACHINE_ID = orion.* ]]; then QUEUE=batch elif [[ $MACHINE_ID = jet.* ]]; then QUEUE=batch + elif [[ $MACHINE_ID = cheyenne.* ]]; then + QUEUE=regular else die "ecFlow is not supported on this machine $MACHINE_ID" fi @@ -566,12 +558,26 @@ while read -r line; do (( COMPILE_NR += 1 )) + cat << EOF > ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env + export MACHINE_ID=${MACHINE_ID} + export PATHRT=${PATHRT} + export PATHTR=${PATHTR} + export SCHEDULER=${SCHEDULER} + export ACCNR=${ACCNR} + export QUEUE=${COMPILE_QUEUE} + export PARTITION=${PARTITION} + export ROCOTO=${ROCOTO} + export ECFLOW=${ECFLOW} + export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} + export LOG_DIR=${LOG_DIR} +EOF + if [[ $ROCOTO == true ]]; then rocoto_create_compile_task elif [[ $ECFLOW == true ]]; then ecflow_create_compile_task else - ./compile.sh $PATHTR/FV3 $MACHINE_ID "${NEMS_VER}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 + ./compile.sh $PATHTR/FV3 $MACHINE_ID "${NEMS_VER}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 #./compile_cmake.sh $PATHTR $MACHINE_ID "${NEMS_VER}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 echo " bash Compile is done" fi @@ -667,6 +673,11 @@ EOF ( source ${PATHRT}/tests/$TEST_NAME + NODES=$(( TASKS / TPN )) + if (( NODES * TPN < TASKS )); then + NODES=$(( NODES + 1 )) + fi + cat << EOF > ${RUNDIR_ROOT}/run_test_${TEST_NR}.env export MACHINE_ID=${MACHINE_ID} export RTPWD=${RTPWD} @@ -681,6 +692,8 @@ EOF export QUEUE=${QUEUE} export PARTITION=${PARTITION} export ROCOTO=${ROCOTO} + export ECFLOW=${ECFLOW} + export REGRESSIONTEST_LOG=${REGRESSIONTEST_LOG} export LOG_DIR=${LOG_DIR} EOF @@ -713,7 +726,7 @@ if [[ $ROCOTO == true ]]; then fi if [[ $ECFLOW == true ]]; then - echo "endsuite" >> ${ECFLOW_RUN}/regtest.def + echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def # run ecflow workflow until done ecflow_run fi diff --git a/tests/rt_ccpp_dtc.conf b/tests/rt_ccpp_dtc.conf index 9ef816f2e0..dfe7e3ba8e 100644 --- a/tests/rt_ccpp_dtc.conf +++ b/tests/rt_ccpp_dtc.conf @@ -1,23 +1,24 @@ ############################################################################################################################################################## -# CCPP static: CCPP, static option, repro mode # +# CCPP REPRO tests # ############################################################################################################################################################## + # control- and gfdlmp-based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp,FV3_GFS_2017_sas 32BIT=Y | standard | jet.intel | fv3 | # Run tests with static CCPP add-on, 32-bit dynamics RUN | fv3_ccpp_control_32bit | standard | | fv3 | RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | RUN | fv3_ccpp_sas | standard | | fv3 | # stretched- and stretched-nest based tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | stampede.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_stretched 32BIT=Y | standard | jet.intel | fv3 | RUN | fv3_ccpp_stretched | standard | | fv3 | RUN | fv3_ccpp_stretched_nest | standard | gaea.intel | fv3 | RUN | fv3_ccpp_stretched_nest | standard | hera.intel | fv3 | @@ -26,33 +27,33 @@ RUN | fv3_ccpp_stretched_nest RUN | fv3_ccpp_stretched_nest_quilt | standard | gaea.intel | fv3 | RUN | fv3_ccpp_stretched_nest_quilt | standard | hera.intel | fv3 | # Physics bakeoff tests, 32-bit dynamics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | hera.intel | fv3 | # Note: any suite that uses csawmg crashes with GNU and PGI (--> there must be something wrong with it) RUN | fv3_ccpp_cpt | standard | gaea.intel | fv3 | RUN | fv3_ccpp_cpt | standard | hera.intel | fv3 | RUN | fv3_ccpp_gsd | standard | gaea.intel | fv3 | RUN | fv3_ccpp_gsd | standard | hera.intel | fv3 | # Additional physics: MYJ -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_myj 32BIT=Y | standard | hera.intel | fv3 | RUN | fv3_ccpp_gfs_myj | standard | gaea.intel | fv3 | RUN | fv3_ccpp_gfs_myj | standard | hera.intel | fv3 | # Additional HAFS physics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | jet.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | stampede.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_HAFS_ferhires_update_moist | standard | jet.intel | fv3 | RUN | fv3_ccpp_regional_c768_FA_update_moist | standard | | fv3 | # Additional CAPS physics -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | gaea.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.gnu | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | stampede.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | jet.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | gaea.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | stampede.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_2017_shinhong,FV3_GFS_2017_ysu,FV3_GFS_2017_ntiedtke | standard | jet.intel | fv3 | RUN | fv3_ccpp_shinhong | standard | | fv3 | RUN | fv3_ccpp_ysu | standard | | fv3 | RUN | fv3_ccpp_ntiedtke | standard | | fv3 | diff --git a/tests/rt_ccpp_gsd.conf b/tests/rt_ccpp_gsd.conf index 72d27a28de..6e214e9832 100644 --- a/tests/rt_ccpp_gsd.conf +++ b/tests/rt_ccpp_gsd.conf @@ -1,64 +1,44 @@ -############################################################################################################################################################################# -# CCPP STATIC tests # -############################################################################################################################################################################# +################################################################################################################################################################################## +# CCPP REPRO tests # +################################################################################################################################################################################## + # Compile with CCPP - static mode -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0 | standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0 | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0 | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0| standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0| standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_gf_thompson,FV3_GSD_v0,FV3_GSD_noah,FV3_GSD_SAR_v1,FV3_RRFS_v0| standard | cheyenne.gnu | fv3 | # Run tests -RUN | fv3_ccpp_thompson_mynn | standard | | fv3 | -RUN | fv3_ccpp_gf_thompson | standard | | fv3 | -RUN | fv3_ccpp_gsd | standard | | fv3 | -RUN | fv3_ccpp_gsd_coldstart | standard | | | -RUN | fv3_ccpp_gsd_warmstart | standard | | | -RUN | fv3_ccpp_gsd_noah | standard | | fv3 | -RUN | fv3_ccpp_rrfs_v0 | standard | | fv3 | -RUN | fv3_ccpp_gsd_sar_v1 | standard | | fv3 | +RUN | fv3_ccpp_thompson_mynn | standard | | fv3 | +RUN | fv3_ccpp_gf_thompson | standard | | fv3 | +RUN | fv3_ccpp_gsd | standard | | fv3 | +RUN | fv3_ccpp_gsd_coldstart | standard | | | +RUN | fv3_ccpp_gsd_warmstart | standard | | | fv3_ccpp_gsd_coldstart +RUN | fv3_ccpp_gsd_noah | standard | | fv3 | +RUN | fv3_ccpp_rrfs_v0 | standard | | fv3 | +RUN | fv3_ccpp_gsd_sar_v1 | standard | | fv3 | # Compile with CCPP - static mode -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR| standard | hera.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR| standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y REPRO=Y STATIC=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR| standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR | standard | hera.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y REPRO=Y SUITES=FV3_GFS_v15_thompson,FV3_GFS_v15_gf,FV3_GFS_v15_mynn,FV3_GSD_v0_drag_suite,FV3_GSD_SAR | standard | cheyenne.gnu | fv3 | # Run tests -RUN | fv3_ccpp_thompson | standard | | fv3 | -RUN | fv3_ccpp_gf | standard | | fv3 | -RUN | fv3_ccpp_mynn | standard | | fv3 | -RUN | fv3_ccpp_gsd_drag_suite | standard | | fv3 | -RUN | fv3_ccpp_gsd_sar | standard | | fv3 | +RUN | fv3_ccpp_thompson | standard | | fv3 | +RUN | fv3_ccpp_gf | standard | | fv3 | +RUN | fv3_ccpp_mynn | standard | | fv3 | +RUN | fv3_ccpp_gsd_drag_suite | standard | | fv3 | +RUN | fv3_ccpp_gsd_sar | standard | | fv3 | + +################################################################################################################################################################################## +# CCPP DEBUG tests # +################################################################################################################################################################################## + # Compile with CCPP - static mode, debug -COMPILE | CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_v0 | standard | hera.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_v0 | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_v0 | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0 | standard | hera.intel | fv3 | +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0 | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GSD_v0 | standard | cheyenne.gnu | fv3 | # Run tests -RUN | fv3_ccpp_gsd_debug | standard | | fv3 | +RUN | fv3_ccpp_gsd_debug | standard | | fv3 | # Compile with CCPP - static mode, debug, 32bit dynamics -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_SAR | standard | hera.intel | fv3 | -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_SAR | standard | cheyenne.intel | fv3 | -COMPILE | 32BIT=Y CCPP=Y DEBUG=Y STATIC=Y SUITES=FV3_GSD_SAR | standard | cheyenne.gnu | fv3 | +COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR | standard | hera.intel | fv3 | +COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR | standard | cheyenne.intel | fv3 | +COMPILE | 32BIT=Y CCPP=Y DEBUG=Y SUITES=FV3_GSD_SAR | standard | cheyenne.gnu | fv3 | # Run tests -RUN | fv3_ccpp_gsd_sar_25km_debug | standard | | fv3 | - -# ############################################################################################################################################################################# -# # CCPP DYNAMIC tests # -# ############################################################################################################################################################################# -# # Compile with CCPP - dynamic mode -# COMPILE | CCPP=Y REPRO=Y | standard | hera.intel | | -# COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.intel | | -# COMPILE | CCPP=Y REPRO=Y | standard | cheyenne.gnu | | -# # Run tests -# RUN | fv3_ccpp_thompson_mynn | standard | | | -# RUN | fv3_ccpp_gf_thompson | standard | | | -# RUN | fv3_ccpp_gsd | standard | | | -# RUN | fv3_ccpp_gsd_coldstart | standard | | | -# RUN | fv3_ccpp_gsd_warmstart | standard | | | -# RUN | fv3_ccpp_gsd_noah | standard | | | -# RUN | fv3_ccpp_thompson | standard | | | -# RUN | fv3_ccpp_gf | standard | | | -# RUN | fv3_ccpp_mynn | standard | | | -# RUN | fv3_ccpp_gsd_drag_suite | standard | | | -# RUN | fv3_ccpp_gsd_sar | standard | | | -# # Do not run debug tests in dynamic mode, these time out because of excessive log statements -# ## Compile with CCPP - dynamic mode, debug -# #COMPILE | CCPP=Y DEBUG=Y | standard | hera.intel | fv3 | -# #COMPILE | CCPP=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -# #COMPILE | CCPP=Y DEBUG=Y | standard | cheyenne.gnu | fv3 | -# #RUN | fv3_ccpp_gsd_debug | standard | | | +RUN | fv3_ccpp_gsd_sar_25km_debug | standard | | fv3 | diff --git a/tests/rt_fv3.sh b/tests/rt_fv3.sh index d56bf907eb..e7f629144b 100755 --- a/tests/rt_fv3.sh +++ b/tests/rt_fv3.sh @@ -42,15 +42,7 @@ fi # Set up the run directory source ./fv3_run -if [[ $SCHEDULER = 'moab' ]]; then - atparse < $PATHRT/fv3_conf/fv3_msub.IN > job_card -elif [[ $SCHEDULER = 'pbs' ]]; then - NODES=$(( TASKS / TPN )) - if (( NODES * TPN < TASKS )); then - NODES=$(( NODES + 1 )) - fi - atparse < $PATHRT/fv3_conf/fv3_qsub.IN > job_card -elif [[ $SCHEDULER = 'sbatch' ]]; then +if [[ $SCHEDULER = 'pbs' ]]; then NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then NODES=$(( NODES + 1 )) @@ -66,6 +58,10 @@ elif [[ $SCHEDULER = 'lsf' ]]; then if (( TASKS < TPN )); then TPN=${TASKS} fi + NODES=$(( TASKS / TPN )) + if (( NODES * TPN < TASKS )); then + NODES=$(( NODES + 1 )) + fi atparse < $PATHRT/fv3_conf/fv3_bsub.IN > job_card fi diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 432373283b..29c38fd183 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -1,96 +1,38 @@ ####################################################################################################################################################################################### -####################################################################################################################################################################################### -####################################################################################################################################################################################### -# OLD TESTS # -####################################################################################################################################################################################### -####################################################################################################################################################################################### +# CCPP PROD tests # ####################################################################################################################################################################################### -####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmp | standard | | fv3 | -COMPILE | | standard | | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.gnu | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | | fv3 | -COMPILE | 32BIT=Y DEBUG=Y | standard | | fv3 | -RUN | fv3_control_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | +RUN | fv3_ccpp_rrtmgp | standard | | fv3 | -####################################################################################################################################################################################### -# IPD REPRO tests # -####################################################################################################################################################################################### +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | | fv3 | -COMPILE | REPRO=Y | standard | | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.gnu | fv3 | +RUN | fv3_ccpp_gsd | standard | | fv3 | +RUN | fv3_ccpp_thompson | standard | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | ####################################################################################################################################################################################### -# CCPP REPRO tests # +# CCPP DEBUG tests # ####################################################################################################################################################################################### -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp | standard | | | -RUN | fv3_ccpp_gfdlmp | standard | cheyenne.gnu | | - -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp | standard | | fv3 | -RUN | fv3_ccpp_gfdlmp | standard | cheyenne.gnu | fv3 | - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y | standard | | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 32BIT=Y DEBUG=Y | standard | | fv3 | RUN | fv3_ccpp_control_debug | standard | | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | | fv3 | -####################################################################################################################################################################################### -####################################################################################################################################################################################### -####################################################################################################################################################################################### -# NEW TESTS # -####################################################################################################################################################################################### -####################################################################################################################################################################################### -####################################################################################################################################################################################### - -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | | fv3 | - -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_rrtmgp | standard | cheyenne.gnu | fv3 | - -####################################################################################################################################################################################### -# CCPP DEBUG tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | | fv3 | - -RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_rrtmgp_debug | standard | cheyenne.gnu | fv3 | +RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | +RUN | fv3_ccpp_rrtmgp_debug | standard | | fv3 | # FIX ME - THESE ARE ALL CRASHING ON CHEYENNE WITH GNU 9.1.0 -#COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | | fv3 | # -#RUN | fv3_ccpp_gsd_debug | standard | cheyenne.gnu | fv3 | -#RUN | fv3_ccpp_thompson_debug | standard | cheyenne.gnu | fv3 | -#RUN | fv3_ccpp_thompson_no_aero_debug | standard | cheyenne.gnu | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP REPRO=Y | standard | | fv3 | - -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.gnu | fv3 | -RUN | fv3_ccpp_rrtmgp | standard | cheyenne.gnu | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests (verify against CCPP REPRO tests) # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | | | - -RUN | fv3_gfs_v15p2 | standard | cheyenne.gnu | | -RUN | fv3_gfs_v16beta | standard | cheyenne.gnu | | +#RUN | fv3_ccpp_gsd_debug | standard | | fv3 | +#RUN | fv3_ccpp_thompson_debug | standard | | fv3 | +#RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | diff --git a/tests/rt_intel.conf b/tests/rt_intel.conf index 4c217151e6..41ad9b7ad5 100644 --- a/tests/rt_intel.conf +++ b/tests/rt_intel.conf @@ -1,168 +1,8 @@ -####################################################################################################################################################################################### -# IPD PROD tests # -####################################################################################################################################################################################### - -COMPILE | | standard | cheyenne.intel | fv3 | -RUN | fv3_control | standard | cheyenne.intel | fv3 | -RUN | fv3_decomp | standard | cheyenne.intel | | -RUN | fv3_2threads | standard | cheyenne.intel | | -RUN | fv3_restart | standard | cheyenne.intel | fv3 | -RUN | fv3_read_inc | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | cheyenne.intel | fv3 | -RUN | fv3_thompson | standard | cheyenne.intel | fv3 | -RUN | fv3_wsm6 | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_netcdf_esmf | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_netcdf | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c192 | standard | cheyenne.intel | fv3 | -RUN | fv3_stochy | standard | cheyenne.intel | fv3 | -RUN | fv3_iau | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmgshoc | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg | standard | cheyenne.intel | fv3 | -RUN | fv3_rasmgshoc | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | cheyenne.intel | fv3 | -RUN | fv3_satmedmf | standard | cheyenne.intel | fv3 | -RUN | fv3_lheatstrg | standard | cheyenne.intel | fv3 | - -# WW3 not yet working on Cheyenne -#COMPILE | WW3=Y | standard | cheyenne.intel | fv3 | -#RUN | fv3_gfdlmprad | standard | cheyenne.intel | fv3 | -#RUN | fv3_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| standaloneFV3 | standard | cheyenne.intel | | -RUN | fv3_appbuild | standard | cheyenne.intel | | - -COMPILE | 32BIT=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_control_32bit | standard | cheyenne.intel | fv3 | -# inline post not yet working on Cheyenne -#RUN | fv3_gfdlmprad_32bit_post | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest_quilt | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_control | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_restart | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_quilt | standard | cheyenne.intel | fv3 | -# fv3_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -#RUN | fv3_regional_c768 | standard | cheyenne.intel | fv3 | - -COMPILE | 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_control_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest_debug | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_control | standard | cheyenne.intel | fv3 | -RUN | fv3_decomp | standard | cheyenne.intel | | -RUN | fv3_2threads | standard | cheyenne.intel | | -RUN | fv3_restart | standard | cheyenne.intel | fv3 | -RUN | fv3_read_inc | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_netcdf_esmf | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_netcdf | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio | standard | cheyenne.intel | fv3 | -RUN | fv3_wrtGauss_nemsio_c192 | standard | cheyenne.intel | fv3 | -RUN | fv3_stochy | standard | cheyenne.intel | fv3 | -RUN | fv3_iau | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmp | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmprad_gwd | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmprad_noahmp | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmgshoc | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg3shoc127 | standard | cheyenne.intel | fv3 | -RUN | fv3_csawmg | standard | cheyenne.intel | fv3 | -RUN | fv3_satmedmf | standard | cheyenne.intel | fv3 | - -# WW3 not yet working on Cheyenne -#COMPILE | REPRO=Y WW3=Y | standard | cheyenne.intel | fv3 | -#RUN | fv3_gfdlmprad | standard | cheyenne.intel | fv3 | -#RUN | fv3_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| standaloneFV3_repro | standard | cheyenne.intel | | -RUN | fv3_appbuild | standard | cheyenne.intel | | - -COMPILE | REPRO=Y 32BIT=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_control_32bit | standard | cheyenne.intel | fv3 | -# inline post not yet working on Cheyenne -#RUN | fv3_gfdlmprad_32bit_post | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched | standard | cheyenne.intel | fv3 | -RUN | fv3_stretched_nest | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_control | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_restart | standard | cheyenne.intel | fv3 | -RUN | fv3_regional_quilt | standard | cheyenne.intel | fv3 | -# fv3_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -#RUN | fv3_regional_c768 | standard | cheyenne.intel | fv3 | -RUN | fv3_gfdlmp_32bit | standard | cheyenne.intel | fv3 | -RUN | fv3_cpt | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | cheyenne.intel | | -RUN | fv3_ccpp_control | standard | cheyenne.intel | | -RUN | fv3_ccpp_decomp | standard | cheyenne.intel | | -RUN | fv3_ccpp_2threads | standard | cheyenne.intel | | -RUN | fv3_ccpp_restart | standard | cheyenne.intel | | -RUN | fv3_ccpp_read_inc | standard | cheyenne.intel | | -RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | cheyenne.intel | | -RUN | fv3_ccpp_wrtGauss_netcdf | standard | cheyenne.intel | | -RUN | fv3_ccpp_wrtGauss_nemsio | standard | cheyenne.intel | | -RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | cheyenne.intel | | -RUN | fv3_ccpp_stochy | standard | cheyenne.intel | | -RUN | fv3_ccpp_iau | standard | cheyenne.intel | | - -# WW3 not yet working on Cheyenne -#COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | cheyenne.intel | | -#RUN | fv3_ccpp_gfdlmprad | standard | cheyenne.intel | | -#RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | cheyenne.intel | | - -# Run one test using the NEMSAppBuilder, to ensure we don't break it: -APPBUILD| CCPP_repro | standard | cheyenne.intel | | -RUN | fv3_ccpp_appbuild | standard | cheyenne.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | | -RUN | fv3_ccpp_control_32bit | standard | cheyenne.intel | | -RUN | fv3_ccpp_stretched | standard | cheyenne.intel | | -RUN | fv3_ccpp_stretched_nest | standard | cheyenne.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | cheyenne.intel | | -RUN | fv3_ccpp_regional_control | standard | cheyenne.intel | | -RUN | fv3_ccpp_regional_restart | standard | cheyenne.intel | | -RUN | fv3_ccpp_regional_quilt | standard | cheyenne.intel | | -# fv3_regional_c768 not working on Cheyenne, code aborts with invalid values -# for surface pressure, out of range warnings and all other sorts of errors -#RUN | fv3_ccpp_regional_c768 | standard | cheyenne.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | cheyenne.intel | | -RUN | fv3_ccpp_gfdlmp | standard | cheyenne.intel | | -RUN | fv3_ccpp_gfdlmprad_gwd | standard | cheyenne.intel | | -RUN | fv3_ccpp_gfdlmprad_noahmp | standard | cheyenne.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | cheyenne.intel | | -#RUN | fv3_ccpp_csawmgshoc | standard | cheyenne.intel | | -#RUN | fv3_ccpp_csawmg3shoc127 | standard | cheyenne.intel | | -RUN | fv3_ccpp_csawmg | standard | cheyenne.intel | | -RUN | fv3_ccpp_satmedmf | standard | cheyenne.intel | | - -COMPILE | REPRO=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfdlmp_32bit | standard | cheyenne.intel | | -# inline post not yet working on Cheyenne -#RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | | -RUN | fv3_ccpp_cpt | standard | cheyenne.intel | | -RUN | fv3_ccpp_gsd | standard | cheyenne.intel | fv3 | - ####################################################################################################################################################################################### # CCPP PROD tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017 | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_control | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_decomp | standard | cheyenne.intel | | RUN | fv3_ccpp_2threads | standard | cheyenne.intel | | @@ -176,7 +16,7 @@ RUN | fv3_ccpp_stochy RUN | fv3_ccpp_iau | standard | cheyenne.intel | fv3 | # WW3 not yet working on Cheyenne -#COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | cheyenne.intel | fv3 | +#COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | cheyenne.intel | fv3 | #RUN | fv3_ccpp_gfdlmprad | standard | cheyenne.intel | fv3 | #RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | cheyenne.intel | fv3 | @@ -184,12 +24,12 @@ RUN | fv3_ccpp_iau APPBUILD| CCPP | standard | cheyenne.intel | | RUN | fv3_ccpp_appbuild | standard | cheyenne.intel | | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_control_32bit | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_stretched | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_stretched_nest | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_regional_control | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_regional_restart | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_regional_quilt | standard | cheyenne.intel | fv3 | @@ -197,33 +37,25 @@ RUN | fv3_ccpp_regional_quilt # for surface pressure, out of range warnings and all other sorts of errors #RUN | fv3_ccpp_regional_c768 | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_control_debug | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_stretched_nest_debug | standard | cheyenne.intel | fv3 | - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfdlmp | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfdlmprad_gwd | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfdlmprad_noahmp | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | cheyenne.intel | fv3 | #RUN | fv3_ccpp_csawmgshoc | standard | cheyenne.intel | fv3 | #RUN | fv3_ccpp_csawmg3shoc127 | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_csawmg | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_satmedmf | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0 32BIT=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfdlmp_32bit | standard | cheyenne.intel | fv3 | # inline post not yet working on Cheyenne #RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_cpt | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gsd | standard | cheyenne.intel | fv3 | -####################################################################################################################################################################################### -# CCPP PROD tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | @@ -233,33 +65,18 @@ RUN | fv3_ccpp_rrtmgp # CCPP DEBUG tests # ####################################################################################################################################################################################### -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_control_debug | standard | cheyenne.intel | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | standard | cheyenne.intel | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v15p2_debug | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gfs_v16beta_debug | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_rrtmgp_debug | standard | cheyenne.intel | fv3 | -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_gsd_debug | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_thompson_debug | standard | cheyenne.intel | fv3 | RUN | fv3_ccpp_thompson_no_aero_debug | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# CCPP REPRO tests # -####################################################################################################################################################################################### - -COMPILE | CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP REPRO=Y | standard | cheyenne.intel | fv3 | - -RUN | fv3_ccpp_gfs_v15p2 | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_gfs_v16beta | standard | cheyenne.intel | fv3 | -RUN | fv3_ccpp_rrtmgp | standard | cheyenne.intel | fv3 | - -####################################################################################################################################################################################### -# IPD REPRO tests (verify against CCPP REPRO tests) # -####################################################################################################################################################################################### - -COMPILE | REPRO=Y | standard | cheyenne.intel | | - -RUN | fv3_gfs_v15p2 | standard | cheyenne.intel | | -RUN | fv3_gfs_v16beta | standard | cheyenne.intel | | diff --git a/tests/rt_orion.conf b/tests/rt_orion.conf new file mode 100644 index 0000000000..6a5f88464b --- /dev/null +++ b/tests/rt_orion.conf @@ -0,0 +1,99 @@ +####################################################################################################################################################################################### +# CCPP PROD tests # +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | | fv3 | + +RUN | fv3_ccpp_control | standard | | fv3 | +RUN | fv3_ccpp_decomp | standard | | | +RUN | fv3_ccpp_2threads | standard | | | +RUN | fv3_ccpp_restart | standard | | fv3 | +RUN | fv3_ccpp_read_inc | standard | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf_esmf | standard | | fv3 | +RUN | fv3_ccpp_wrtGauss_netcdf | standard | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio | standard | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c192 | standard | | fv3 | +RUN | fv3_ccpp_stochy | standard | | fv3 | +RUN | fv3_ccpp_iau | standard | | fv3 | +RUN | fv3_ccpp_ca | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp WW3=Y | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_atmwav | standard | | fv3 | +RUN | fv3_ccpp_wrtGauss_nemsio_c768 | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | standard | | fv3 | + +RUN | fv3_ccpp_control_32bit | standard | | fv3 | +RUN | fv3_ccpp_stretched | standard | | fv3 | +RUN | fv3_ccpp_stretched_nest | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_regional,FV3_GFS_2017_gfdlmp_regional_c768 32BIT=Y | standard | | fv3 | + +RUN | fv3_ccpp_regional_control | standard | | fv3 | +RUN | fv3_ccpp_regional_restart | standard | | fv3 | fv3_ccpp_regional_control +RUN | fv3_ccpp_regional_quilt | standard | | fv3 | +RUN | fv3_ccpp_regional_c768 | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y DEBUG=Y | standard | | fv3 | + +RUN | fv3_ccpp_control_debug | standard | | fv3 | +RUN | fv3_ccpp_stretched_nest_debug | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | + +RUN | fv3_ccpp_gfdlmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf | standard | | fv3 | + +#RUN | fv3_ccpp_csawmgshoc | standard | | fv3 | +#RUN | fv3_ccpp_csawmg3shoc127 | standard | | fv3 | +RUN | fv3_ccpp_csawmg | standard | | fv3 | +RUN | fv3_ccpp_satmedmf | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y | standard | | fv3 | + +RUN | fv3_ccpp_gfdlmp_32bit | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_32bit_post | standard | | fv3 | +RUN | fv3_ccpp_cpt | standard | | fv3 | +RUN | fv3_ccpp_gsd | standard | | fv3 | +RUN | fv3_ccpp_thompson | standard | | fv3 | +RUN | fv3_ccpp_thompson_no_aero | standard | | fv3 | + +####################################################################################################################################################################################### +# CCPP PROD tests # +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP | standard | | fv3 | + +RUN | fv3_ccpp_gfs_v15p2 | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | +RUN | fv3_ccpp_rrtmgp | standard | | fv3 | + +####################################################################################################################################################################################### +# CCPP DEBUG tests # +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_2017_RRTMGP DEBUG=Y | standard | | fv3 | + +RUN | fv3_ccpp_gfs_v15p2_debug | standard | | fv3 | +RUN | fv3_ccpp_gfs_v16beta_debug | standard | | fv3 | +RUN | fv3_ccpp_rrtmgp_debug | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson 32BIT=Y DEBUG=Y | standard | | fv3 | + +RUN | fv3_ccpp_gsd_debug | standard | | fv3 | +RUN | fv3_ccpp_thompson_debug | standard | | fv3 | +RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | +####################################################################################################################################################################################### +####################################################################################################################################################################################### +COMPILE | CCPP=Y SUITES=FV3_GFS_v16_csawmg | standard | | fv3 | + +RUN | fv3_ccpp_gfsv16_csawmg | standard | | fv3 | +RUN | fv3_ccpp_gfsv16_csawmgt | standard | | fv3 | +####################################################################################################################################################################################### +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | + +RUN | fv3_ccpp_gocart_clm | standard | | fv3 | diff --git a/tests/rt_stampede_cheyenne.conf b/tests/rt_stampede_cheyenne.conf new file mode 100644 index 0000000000..f2859ff45b --- /dev/null +++ b/tests/rt_stampede_cheyenne.conf @@ -0,0 +1,13 @@ +####################################################################################################################################################################################### +# CCPP PROD tests # +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017 | standard | | fv3 | + +RUN | fv3_ccpp_control | standard | | fv3 | + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | standard | | fv3 | + +RUN | fv3_ccpp_gfdlmp | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_gwd | standard | | fv3 | +RUN | fv3_ccpp_gfdlmprad_noahmp | standard | | fv3 | diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 5583e8f3d7..a6c239b47a 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -1,6 +1,3 @@ -# -# DH* TODO - COMBINE SBATCH AND SLURM? -# set -eu if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then @@ -8,6 +5,8 @@ if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then exit 1 fi +UNIT_TEST=${UNIT_TEST:-false} + submit_and_wait() { [[ -z $1 ]] && exit 1 @@ -18,12 +17,11 @@ submit_and_wait() { local -r job_card=$1 ROCOTO=${ROCOTO:-false} + ECFLOW=${ECFLOW:-false} local test_status='PASS' - if [[ $SCHEDULER = 'moab' ]]; then - msub $job_card - elif [[ $SCHEDULER = 'pbs' ]]; then + if [[ $SCHEDULER = 'pbs' ]]; then qsubout=$( qsub $job_card ) if [[ ${MACHINE_ID} = cheyenne.* ]]; then re='^([0-9]+\.[a-zA-Z0-9\.]+)$' @@ -35,24 +33,19 @@ submit_and_wait() { if [[ ${MACHINE_ID} = cheyenne.* ]]; then qsub_id="${qsub_id%.chadm*}" fi - elif [[ $SCHEDULER = 'sbatch' ]]; then - qsubout=$( sbatch $job_card ) - re='^([0-9]+\.[a-zA-Z0-9]+)$' - qsub_id=0 - [[ "${qsubout}" =~ $re ]] && qsub_id=${BASH_REMATCH[1]} - if [[ ${MACHINE_ID} = stampede.* ]]; then - qsub_id="${qsub_id}" - fi + echo "Job id ${qsub_id}" elif [[ $SCHEDULER = 'slurm' ]]; then slurmout=$( sbatch $job_card ) re='Submitted batch job ([0-9]+)' slurm_id=0 [[ "${slurmout}" =~ $re ]] && slurm_id=${BASH_REMATCH[1]} + echo "Job id ${slurm_id}" elif [[ $SCHEDULER = 'lsf' ]]; then bsubout=$( bsub < $job_card ) re='Job <([0-9]+)> is submitted to queue <(.+)>.' bsub_id=0 [[ "${bsubout}" =~ $re ]] && bsub_id=${BASH_REMATCH[1]} + echo "Job id ${bsub_id}" else echo "Unknown SCHEDULER $SCHEDULER" exit 1 @@ -64,65 +57,32 @@ submit_and_wait() { until [[ $job_running -eq 1 ]] do echo "TEST ${TEST_NR} ${TEST_NAME} is waiting to enter the queue" - if [[ $SCHEDULER = 'moab' ]]; then - job_running=$( showq -u ${USER} -n | grep ${JBNME} | wc -l); sleep 5 - elif [[ $SCHEDULER = 'pbs' ]]; then + if [[ $SCHEDULER = 'pbs' ]]; then if [[ ${MACHINE_ID} = cheyenne.* ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l); sleep 5 + job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l) else - job_running=$( qstat -u ${USER} -n | grep ${JBNME} | wc -l); sleep 5 - fi - elif [[ $SCHEDULER = 'sbatch' ]]; then - if [[ ${MACHINE_ID} = stampede.* ]]; then - job_running=$( squeue ${qsub_id} | grep ${qsub_id} | wc -l); sleep 5 - else - job_running=$( squeue -u ${USER} -n | grep ${JBNME} | wc -l); sleep 5 + job_running=$( qstat -u ${USER} -n | grep ${JBNME} | wc -l) fi elif [[ $SCHEDULER = 'slurm' ]]; then - job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l); sleep 5 + job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs -u ${USER} -J ${JBNME} 2>/dev/null | grep ${QUEUE} | wc -l); sleep 5 + job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) else echo "Unknown SCHEDULER $SCHEDULER" exit 1 fi + sleep 5 (( count=count+1 )) if [[ $count -eq 13 ]]; then echo "No job in queue after one minute, exiting..."; exit 2; fi done # find jobid - if [[ $SCHEDULER = 'moab' ]]; then - : - elif [[ $SCHEDULER = 'pbs' ]]; then - if [[ ${MACHINE_ID} = cheyenne.* ]]; then - jobid=$( qstat ${qsub_id} | grep ${qsub_id} | awk '{print $1}' ) - jobid="${jobid%.chadm*}" - else - jobid=$( qstat -u ${USER} | grep ${JBNME} | awk '{print $1}' ) - fi - trap 'echo "Job ${jobid} killed"; qdel ${jobid}; trap 0; exit' 1 2 3 4 5 6 7 8 10 12 13 15 - if [[ ${qsub_id} != ${jobid} ]]; then - echo "Warning: qsub_id is not equal to jobid" - fi - elif [[ $SCHEDULER = 'sbatch' ]]; then - if [[ ${MACHINE_ID} = stampede.* ]]; then - jobid=$( squeue ${qsub_id} | grep ${qsub_id} | awk '{print $1}' ) - jobid="${jobid}" - else - jobid=$( squeue -u ${USER} | grep ${JBNME} | awk '{print $1}' ) - fi - trap 'echo "Job ${jobid} killed"; qdel ${jobid}; trap 0; exit' 1 2 3 4 5 6 7 8 10 12 13 15 - if [[ ${qsub_id} != ${jobid} ]]; then - echo "Warning: qsub_id is not equal to jobid" - fi + if [[ $SCHEDULER = 'pbs' ]]; then + jobid=${qsub_id} elif [[ $SCHEDULER = 'slurm' ]]; then jobid=${slurm_id} elif [[ $SCHEDULER = 'lsf' ]]; then - jobid=$( bjobs -u ${USER} -J ${JBNME} -noheader -o "jobid" ) - trap 'echo "Job ${jobid} killed"; bkill ${jobid}; trap 0; exit' 1 2 3 4 5 6 7 8 10 12 13 15 - if [[ ${bsub_id} -ne ${jobid} ]]; then - echo "Warning: bsub_id is not equal to jobid" - fi + jobid=${bsub_id} else echo "Unknown SCHEDULER $SCHEDULER" exit 1 @@ -136,54 +96,31 @@ submit_and_wait() { sleep 60 & wait $! - if [[ $SCHEDULER = 'moab' ]]; then - job_running=$( showq -u ${USER} -n | grep ${JBNME} | wc -l) - elif [[ $SCHEDULER = 'pbs' ]]; then + if [[ $SCHEDULER = 'pbs' ]]; then if [[ ${MACHINE_ID} = cheyenne.* ]]; then - job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l); sleep 5 + job_running=$( qstat ${qsub_id} | grep ${qsub_id} | wc -l) else job_running=$( qstat -u ${USER} -n | grep ${JBNME} | wc -l) fi - elif [[ $SCHEDULER = 'sbatch' ]]; then - if [[ ${MACHINE_ID} = stampede.* ]]; then - job_running=$( squeue ${qsub_id} | grep ${qsub_id} | wc -l); sleep 5 - else - job_running=$( squeue -u ${USER} -n | grep ${JBNME} | wc -l) - fi elif [[ $SCHEDULER = 'slurm' ]]; then job_running=$( squeue -u ${USER} -j ${slurm_id} | grep ${slurm_id} | wc -l) elif [[ $SCHEDULER = 'lsf' ]]; then - job_running=$( bjobs -u ${USER} -J ${JBNME} 2>/dev/null | wc -l) + job_running=$( bjobs ${bsub_id} | grep ${bsub_id} | wc -l) else echo "Unknown SCHEDULER $SCHEDULER" exit 1 fi - if [[ $SCHEDULER = 'moab' ]]; then - - status=$( showq -u ${USER} -n | grep ${JBNME} | awk '{print $3}'); status=${status:--} - if [[ -f ${RUNDIR}/err ]] ; then FnshHrs=$( grep Finished ${RUNDIR}/err | tail -1 | awk '{ print $9 }'); fi - FnshHrs=${FnshHrs:-0} - if [[ $status = 'Idle' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is waiting in a queue, Status: $status" - elif [[ $status = 'Running' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status , Finished $FnshHrs hours" - elif [[ $status = 'Starting' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is ready to run, Status: $status , Finished $FnshHrs hours" - elif [[ $status = 'Completed' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" ; job_running=0 - else echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status , Finished $FnshHrs hours" - fi - - elif [[ $SCHEDULER = 'pbs' ]]; then + if [[ $SCHEDULER = 'pbs' ]]; then - #status=$( qstat -u ${USER} -n | grep ${JBNME} | awk '{print $"10"}' ); status=${status:--} PJP comment out to speed up regression test if [[ ${MACHINE_ID} = cheyenne.* ]]; then status=$( qstat ${qsub_id} | grep ${qsub_id} | awk '{print $5}' ); status=${status:--} else status=$( qstat -u ${USER} -n | grep ${JBNME} | awk '{print $10}' ); status=${status:--} fi - if [[ -f ${RUNDIR}/err ]] ; then FnshHrs=$( tail -100 ${RUNDIR}/err | grep Finished | tail -1 | awk '{ print $9 }' ); fi - FnshHrs=${FnshHrs:-0} if [[ $status = 'Q' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is waiting in a queue, Status: $status jobid ${jobid}" elif [[ $status = 'H' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is held in a queue, Status: $status" - elif [[ $status = 'R' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status , Finished $FnshHrs hours" + elif [[ $status = 'R' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status" elif [[ $status = 'E' ]] || [[ $status = 'C' ]]; then if [[ ${MACHINE_ID} = cheyenne.* ]]; then exit_status=$( qstat ${jobid} -x -f | grep Exit_status | awk '{print $3}') @@ -202,13 +139,14 @@ submit_and_wait() { echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" job_running=0 elif [[ $status = 'C' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" ; job_running=0 - else echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status , Finished $FnshHrs hours" + else echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" fi elif [[ $SCHEDULER = 'slurm' ]]; then status=$( squeue -u ${USER} -j ${slurm_id} 2>/dev/null | grep ${slurm_id} | awk '{print $5}' ); status=${status:--} if [[ $status = 'R' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status" + elif [[ $status = 'PD' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is pending, Status: $status" elif [[ $status = 'F' ]]; then echo "Test ${TEST_NR} ${TEST_NAME} FAIL" >> ${REGRESSIONTEST_LOG} echo >> ${REGRESSIONTEST_LOG} @@ -218,51 +156,17 @@ submit_and_wait() { job_running=0 elif [[ $status = 'C' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" ; job_running=0 else - state=$( sacct -n -j ${slurm_id}.batch --format=JobID,state,Jobname | grep ${slurm_id} | awk '{print $2}' ) + echo "Slurm unknown status ${status}. Check sacct ..." + sacct -n -j ${slurm_id} --format=JobID,state,Jobname + state=$( sacct -n -j ${slurm_id} --format=JobID,state,Jobname | grep ${slurm_id} | awk '{print $2}' ) echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is ${state}" fi - elif [[ $SCHEDULER = 'sbatch' ]]; then - - #status=$( qstat -u ${USER} -n | grep ${JBNME} | awk '{print $"10"}' ); status=${status:--} PJP comment out to speed up regression test - if [[ ${MACHINE_ID} = stampede.* ]]; then - status=$( squeue ${qsub_id} | grep ${qsub_id} | awk '{print $5}' ); status=${status:--} - else - status=$( squeue -u ${USER} -n | grep ${JBNME} | awk '{print $10}' ); status=${status:--} - fi - if [[ -f ${RUNDIR}/err ]] ; then FnshHrs=$( tail -100 ${RUNDIR}/err | grep Finished | tail -1 | awk '{ print $9 }' ); fi - FnshHrs=${FnshHrs:-0} - if [[ $status = 'Q' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is waiting in a queue, Status: $status jobid ${jobid}" - elif [[ $status = 'H' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is held in a queue, Status: $status" - elif [[ $status = 'R' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status , Finished $FnshHrs hours" - elif [[ $status = 'E' ]] || [[ $status = 'C' ]]; then - if [[ ${MACHINE_ID} = stampede.* ]]; then - exit_status=$( squeue ${jobid} -x -f | grep Exit_status | awk '{print $3}') - else - jobid=$( squeue -u ${USER} | grep ${JBNME} | awk '{print $1}') - exit_status=$( qstat ${jobid} -f | grep exit_status | awk '{print $3}') - fi - if [[ $exit_status != 0 ]]; then - echo "Test ${TEST_NR} ${TEST_NAME} FAIL" >> ${REGRESSIONTEST_LOG} - echo >> ${REGRESSIONTEST_LOG} - echo "Test ${TEST_NR} ${TEST_NAME} FAIL" - echo - test_status='FAIL' - break - fi - echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" - job_running=0 - elif [[ $status = 'C' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" ; job_running=0 - else echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status , Finished $FnshHrs hours" - fi - elif [[ $SCHEDULER = 'lsf' ]]; then - status=$( bjobs -u ${USER} -J ${JBNME} 2>/dev/null | grep ${QUEUE} | awk '{print $3}' ); status=${status:--} - if [[ -f ${RUNDIR}/err ]] ; then FnshHrs=$( grep Finished ${RUNDIR}/err | tail -1 | awk '{ print $9 }' ) ; fi - FnshHrs=${FnshHrs:-0} + status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} if [[ $status = 'PEND' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is waiting in a queue, Status: $status" - elif [[ $status = 'RUN' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status , Finished $FnshHrs hours" + elif [[ $status = 'RUN' ]]; then echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is running, Status: $status" elif [[ $status = 'EXIT' ]]; then echo "Test ${TEST_NR} ${TEST_NAME} FAIL" >> ${REGRESSIONTEST_LOG} echo;echo;echo >> ${REGRESSIONTEST_LOG} @@ -270,16 +174,17 @@ submit_and_wait() { echo;echo;echo test_status='FAIL' break - else echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status , Finished $FnshHrs hours" - exit_status=$( bjobs -u ${USER} -J ${JBNME} -a 2>/dev/null | grep $QUEUE | awk '{print $3}' ) + else + echo "$n min. TEST ${TEST_NR} ${TEST_NAME} is finished, Status: $status" + exit_status=$( bjobs ${bsub_id} 2>/dev/null | grep ${bsub_id} | awk '{print $3}' ); status=${status:--} if [[ $exit_status = 'EXIT' ]]; then echo "Test ${TEST_NR} ${TEST_NAME} FAIL" >> ${REGRESSIONTEST_LOG} echo;echo;echo >> ${REGRESSIONTEST_LOG} echo "Test ${TEST_NR} ${TEST_NAME} FAIL" echo;echo;echo test_status='FAIL' - break fi + break fi else @@ -291,9 +196,14 @@ submit_and_wait() { done if [[ $test_status = 'FAIL' ]]; then - echo $TEST_NAME >> $PATHRT/fail_test - if [[ $ROCOTO == true ]]; then - exit 2 + if [[ ${UNIT_TEST} == false ]]; then + echo "${TEST_NAME} ${TEST_NR}" >> $PATHRT/fail_test + else + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + fi + + if [[ $ROCOTO == true || $ECFLOW == true ]]; then + exit 1 fi fi @@ -306,6 +216,7 @@ check_results() { set +x ROCOTO=${ROCOTO:-false} + ECFLOW=${ECFLOW:-false} # Default compiler "intel" export COMPILER=${NEMS_COMPILER:-intel} @@ -406,9 +317,14 @@ check_results() { echo if [[ $test_status = 'FAIL' ]]; then - echo $TEST_NAME >> $PATHRT/fail_test - if [[ $ROCOTO = true ]]; then - exit 2 + if [[ ${UNIT_TEST} == false ]]; then + echo $TEST_NAME >> $PATHRT/fail_test + else + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + fi + + if [[ $ROCOTO = true || $ECFLOW == true ]]; then + exit 1 fi fi @@ -421,9 +337,7 @@ kill_job() { local -r jobid=$1 - if [[ $SCHEDULER = 'moab' ]]; then - : - elif [[ $SCHEDULER = 'pbs' ]]; then + if [[ $SCHEDULER = 'pbs' ]]; then qdel ${jobid} elif [[ $SCHEDULER = 'slurm' ]]; then scancel ${jobid} @@ -447,6 +361,12 @@ rocoto_create_compile_task() { rocoto_cmd="&PATHRT;/compile_cmake.sh &PATHTR; $MACHINE_ID \"${NEMS_VER}\" $COMPILE_NR" fi + # serialize WW3 builds. FIXME + DEP_STRING="" + if [[ ${NEMS_VER^^} =~ "WW3=Y" && ${COMPILE_PREV_WW3_NR} != '' ]]; then + DEP_STRING="" + fi + NATIVE="" BUILD_CORES=8 if [[ ${MACHINE_ID} == wcoss_dell_p3 ]]; then @@ -462,9 +382,13 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == jet ]]; then BUILD_WALLTIME="01:00:00" fi + if [[ ${MACHINE_ID} == orion.* ]]; then + BUILD_WALLTIME="01:00:00" + fi cat << EOF >> $ROCOTO_XML + $DEP_STRING $rocoto_cmd compile_${COMPILE_NR} ${ACCNR} @@ -493,11 +417,8 @@ rocoto_create_run_task() { fi NATIVE="" - if [[ ${MACHINE_ID} == wcoss ]]; then - NATIVE="-a poe -R span[ptile=${TPN}]" - fi if [[ ${MACHINE_ID} == wcoss_dell_p3 ]]; then - NATIVE="-R span[ptile=${TPN}]" + NATIVE="28-R 'affinity[core(${THRD})]'" fi if [[ ${MACHINE_ID} == wcoss_cray ]]; then NATIVE="" @@ -511,7 +432,7 @@ rocoto_create_run_task() { ${ACCNR} ${QUEUE} ${PARTITION} - ${CORES} + ${NODES}:ppn=${TPN} 00:${WLCLK}:00 &LOG;/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log ${NATIVE} @@ -549,40 +470,39 @@ ecflow_create_compile_task() { new_compile=true - if [[ "Q$APP" != Q ]] ; then - ecflow_cmd="$PATHRT/appbuild.sh ${PATHTR}/FV3 $APP $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1" - else - ecflow_cmd="$PATHRT/compile_cmake.sh ${PATHTR} $MACHINE_ID \"${NEMS_VER}\" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1" - fi - cat << EOF > ${ECFLOW_RUN}/regtest/compile_${COMPILE_NR}.ecf + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/compile_${COMPILE_NR}.ecf %include -$ecflow_cmd +$PATHRT/run_compile.sh ${PATHRT} ${RUNDIR_ROOT} "${NEMS_VER}" $COMPILE_NR > ${LOG_DIR}/compile_${COMPILE_NR}.log 2>&1 %include EOF - echo " task compile_${COMPILE_NR}" >> ${ECFLOW_RUN}/regtest.def - echo " inlimit max_builds" >> ${ECFLOW_RUN}/regtest.def + echo " task compile_${COMPILE_NR}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " inlimit max_builds" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def # serialize WW3 builds. FIXME if [[ ${NEMS_VER^^} =~ "WW3=Y" && ${COMPILE_PREV_WW3_NR} != '' ]]; then - echo " trigger compile_${COMPILE_PREV_WW3_NR} == complete" >> ${ECFLOW_RUN}/regtest.def + echo " trigger compile_${COMPILE_PREV_WW3_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def fi } ecflow_create_run_task() { - cat << EOF > ${ECFLOW_RUN}/regtest/${TEST_NAME}${RT_SUFFIX}.ecf + cat << EOF > ${ECFLOW_RUN}/${ECFLOW_SUITE}/${TEST_NAME}${RT_SUFFIX}.ecf %include -$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log 2>&1 & +$PATHRT/run_test.sh ${PATHRT} ${RUNDIR_ROOT} ${TEST_NAME} ${TEST_NR} ${COMPILE_NR} > ${LOG_DIR}/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log 2>&1 %include EOF - echo " task ${TEST_NAME}${RT_SUFFIX}" >> ${ECFLOW_RUN}/regtest.def - echo " inlimit max_jobs" >> ${ECFLOW_RUN}/regtest.def + echo " task ${TEST_NAME}${RT_SUFFIX}" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def if [[ $DEP_RUN != '' ]]; then - echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN}${RT_SUFFIX} == complete" >> ${ECFLOW_RUN}/regtest.def + if [[ ${UNIT_TEST} == false ]]; then + echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN}${RT_SUFFIX} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + else + echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + fi else - echo " trigger compile_${COMPILE_NR} == complete" >> ${ECFLOW_RUN}/regtest.def + echo " trigger compile_${COMPILE_NR} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def fi } @@ -622,14 +542,15 @@ ecflow_run() { export ECF_PORT export ECF_HOST - ecflow_client --load=${ECFLOW_RUN}/regtest.def >> ${ECFLOW_RUN}/ecflow.log 2>&1 - ecflow_client --begin=regtest >> ${ECFLOW_RUN}/ecflow.log 2>&1 + ecflow_client --load=${ECFLOW_RUN}/${ECFLOW_SUITE}.def >> ${ECFLOW_RUN}/ecflow.log 2>&1 + ecflow_client --begin=${ECFLOW_SUITE} >> ${ECFLOW_RUN}/ecflow.log 2>&1 active_tasks=1 while [[ $active_tasks -ne 0 ]] do sleep 10 & wait $! - active_tasks=$( ecflow_client --get_state /regtest | grep "task " | grep -E 'state:active|state:submitted|state:queued' | wc -l ) + active_tasks=$( ecflow_client --get_state /${ECFLOW_SUITE} | grep "task " | grep -E 'state:active|state:submitted|state:queued' | wc -l ) + echo "ecflow tasks remaining: ${active_tasks}" ${PATHRT}/abort_dep_tasks.py done sleep 65 # wait one ECF_INTERVAL plus 5 seconds @@ -639,7 +560,7 @@ ecflow_kill() { [[ ${ECFLOW_RUNNING:-false} == true ]] || return set +e wait - ecflow_client --kill /regtest + ecflow_client --kill /${ECFLOW_SUITE} sleep 10 } diff --git a/tests/run_compile.sh b/tests/run_compile.sh new file mode 100755 index 0000000000..53819be257 --- /dev/null +++ b/tests/run_compile.sh @@ -0,0 +1,57 @@ +#!/bin/bash +set -eux + +SECONDS=0 + +if [[ $# != 4 ]]; then + echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_NR" + exit 1 +fi + +export PATHRT=$1 +export RUNDIR_ROOT=$2 +export MAKE_OPT=${3} +export COMPILE_NR=${4} + +cd ${PATHRT} + +[[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env +source default_vars.sh + + +export TEST_NAME=compile +export TEST_NR=${COMPILE_NR} +export JBNME="compile_${COMPILE_NR}" +export RUNDIR=${RUNDIR_ROOT}/${TEST_NAME}_${TEST_NR} + +source rt_utils.sh +source atparse.bash + +mkdir -p ${RUNDIR} +cd $RUNDIR + +if [[ $SCHEDULER = 'slurm' ]]; then + atparse < $PATHRT/fv3_conf/compile_slurm.IN > job_card +elif [[ $SCHEDULER = 'lsf' ]]; then + atparse < $PATHRT/fv3_conf/compile_bsub.IN > job_card +elif [[ $SCHEDULER = 'pbs' ]]; then + atparse < $PATHRT/fv3_conf/compile_qsub.IN > job_card +fi + +################################################################################ +# Submit compile job +################################################################################ + +if [[ $ROCOTO = 'false' ]]; then + submit_and_wait job_card +else + chmod u+x job_card + ./job_card +fi + +################################################################################ +# End compile job +################################################################################ + +elapsed=$SECONDS +echo "Elapsed time $elapsed seconds. Compile ${COMPILE_NR}" diff --git a/tests/run_test.sh b/tests/run_test.sh index 4eed84f7c8..76a607c68d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -1,6 +1,12 @@ #!/bin/bash set -eux +write_fail_test() { + if [[ ${UNIT_TEST} == true ]]; then + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + fi +} + SECONDS=0 if [[ $# != 5 ]]; then @@ -19,6 +25,7 @@ cd ${PATHRT} [[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env source default_vars.sh source tests/$TEST_NAME +[[ -e ${RUNDIR_ROOT}/unit_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/unit_test_${TEST_NR}.env # Save original CNTL_DIR name as INPUT_DIR for regression # tests that try to copy input data from CNTL_DIR @@ -31,11 +38,20 @@ JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} export JBNME export FV3X=fv3_${COMPILE_NR}.exe -export REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log + +UNIT_TEST=${UNIT_TEST:-false} +if [[ ${UNIT_TEST} == false ]]; then + REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log +else + REGRESSIONTEST_LOG=${LOG_DIR}/ut_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log +fi +export REGRESSIONTEST_LOG # Submit the actual test run script echo "Test ${TEST_NR} ${TEST_NAME} ${TEST_DESCR}" trap 'echo "run_test.sh: Test ${TEST_NAME} killed"; kill $(jobs -p); wait; trap 0; exit' 1 2 3 4 5 6 7 8 10 12 13 15 +trap '[ "$?" -eq 0 ] || write_fail_test' EXIT +trap 'echo "run_test.sh: Test ${TEST_NAME} error"; echo "${TEST_NAME}" >> ${PATHRT}/fail_test; trap 0; exit' ERR ./${RUN_SCRIPT} > ${RUNDIR_ROOT}/${TEST_NAME}${RT_SUFFIX}.log 2>&1 elapsed=$SECONDS diff --git a/tests/tests/fv3_NAM_phys b/tests/tests/fv3_ca similarity index 90% rename from tests/tests/fv3_NAM_phys rename to tests/tests/fv3_ca index 7acb6f5cc7..7edd2f92e3 100644 --- a/tests/tests/fv3_NAM_phys +++ b/tests/tests/fv3_ca @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 NAM physics test +# FV3 cellular automata test # ############################################################################### -export TEST_DESCR="Compare FV3 NAM physics results with previous trunk version" +export TEST_DESCR="Compare FV3 cellular automata results with previous trunk version (sub-grid and global)" -export CNTL_DIR=fv3_NAM_phys +export CNTL_DIR=fv3_ca export LIST_FILES="atmos_4xdaily.tile1.nc \ atmos_4xdaily.tile2.nc \ @@ -58,26 +58,26 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ RESTART/fv_tracer.res.tile4.nc \ RESTART/fv_tracer.res.tile5.nc \ RESTART/fv_tracer.res.tile6.nc \ - RESTART/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" + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" export_fv3 export NODES=$(expr $TASKS / $TPN + 1) -export WLCLK=5 -export FHMAX=12 -export INPUT_NML=NAM_phys.nml.IN -export FV3_RUN=NAM_phys_run.IN +export DO_CA=.T. +export CA_SGS=.T. +export CA_GLOBAL=.T. +export FHMAX=12 RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_ca b/tests/tests/fv3_ccpp_ca new file mode 100644 index 0000000000..9c6617e027 --- /dev/null +++ b/tests/tests/fv3_ccpp_ca @@ -0,0 +1,87 @@ +############################################################################### +# +# FV3 CCPP control test +# +############################################################################### + +export TEST_DESCR="Compare FV3 cellular automata results with previous trunk version (sub-grid and global) CCPP" + +export CNTL_DIR=fv3_ca + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.tile1.nc \ + phyf000.tile2.nc \ + phyf000.tile3.nc \ + phyf000.tile4.nc \ + phyf000.tile5.nc \ + phyf000.tile6.nc \ + phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf000.tile1.nc \ + dynf000.tile2.nc \ + dynf000.tile3.nc \ + dynf000.tile4.nc \ + dynf000.tile5.nc \ + dynf000.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export FV3_RUN=ccpp_control_run.IN +export CCPP_SUITE=FV3_GFS_2017 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_ca.nml.IN + +export DO_CA=.T. +export CA_SGS=.T. +export CA_GLOBAL=.T. +export FHMAX=12 + +RUN_SCRIPT=rt_fv3.sh \ No newline at end of file diff --git a/tests/tests/fv3_ccpp_gfdlmp_hwrfsas b/tests/tests/fv3_ccpp_gfdlmp_hwrfsas new file mode 100644 index 0000000000..cae950969f --- /dev/null +++ b/tests/tests/fv3_ccpp_gfdlmp_hwrfsas @@ -0,0 +1,72 @@ +############################################################################### +# +# FV3 CCPP GFDL-MP using HWRF SAS (deep and shallow) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP GFDL-MP HWRF SAS results with previous trunk version" + +export CNTL_DIR=fv3_gfdlmp_hwrfsas + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.nemsio \ + phyf024.nemsio \ + dynf000.nemsio \ + dynf024.nemsio \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +DT_ATMOS="1200" +export OUTPUT_GRID="'gaussian_grid'" +export OUTPUT_FILE="'nemsio'" +export WRITE_NEMSIOFLIP=.true. +export WRITE_FSYNCFLAG=.true. + +export HWRF_SAMFDEEP=.T. +export HWRF_SAMFSHAL=.T. + +export FV3_RUN=ccpp_gfdlmp_run.IN +export CCPP_SUITE=FV3_GFS_2017_gfdlmp +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_gfdlmp.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_ccpp_regional_c768 b/tests/tests/fv3_ccpp_regional_c768 index c8e807a2f7..ffbec6a95d 100644 --- a/tests/tests/fv3_ccpp_regional_c768 +++ b/tests/tests/fv3_ccpp_regional_c768 @@ -20,6 +20,10 @@ export WLCLK=30 export RUN_SCRIPT=rt_fv3.sh export FV3_RUN=ccpp_regional_run.IN +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. + export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional_c768.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_control b/tests/tests/fv3_ccpp_regional_control index 7bead7f22c..c1cfeaeb78 100644 --- a/tests/tests/fv3_ccpp_regional_control +++ b/tests/tests/fv3_ccpp_regional_control @@ -21,6 +21,10 @@ export TASKS=24 export RUN_SCRIPT=rt_fv3.sh export FV3_RUN=ccpp_regional_run.IN +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. + export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_quilt b/tests/tests/fv3_ccpp_regional_quilt index a0eac1b380..3c81f88daa 100644 --- a/tests/tests/fv3_ccpp_regional_quilt +++ b/tests/tests/fv3_ccpp_regional_quilt @@ -21,6 +21,10 @@ export TASKS=28 export RUN_SCRIPT=rt_fv3.sh export FV3_RUN=ccpp_regional_run.IN +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. + export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_regional_restart b/tests/tests/fv3_ccpp_regional_restart index 5bb7d3be7d..a874d7481b 100644 --- a/tests/tests/fv3_ccpp_regional_restart +++ b/tests/tests/fv3_ccpp_regional_restart @@ -20,6 +20,10 @@ export WARM_START=.T. export RUN_SCRIPT=rt_fv3.sh export FV3_RUN=ccpp_regional_run.IN +export OZ_PHYS_OLD=.F. +export OZ_PHYS_NEW=.T. +export H2O_PHYS=.T. + export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional export CCPP_LIB_DIR=ccpp/lib export INPUT_NML=ccpp_regional.nml.IN diff --git a/tests/tests/fv3_ccpp_satmedmf b/tests/tests/fv3_ccpp_satmedmf index c2ea153b5b..0aff90a295 100644 --- a/tests/tests/fv3_ccpp_satmedmf +++ b/tests/tests/fv3_ccpp_satmedmf @@ -55,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export NODES=$(expr $TASKS / $TPN + 1) +export DT_ATMOS="1200" + export SATMEDMF=.T. export HYBEDMF=.F. export OUTPUT_GRID="'gaussian_grid'" diff --git a/tests/tests/fv3_ccpp_satmedmfq b/tests/tests/fv3_ccpp_satmedmfq index f49f57627b..dbc14fdca0 100644 --- a/tests/tests/fv3_ccpp_satmedmfq +++ b/tests/tests/fv3_ccpp_satmedmfq @@ -55,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export NODES=$(expr $TASKS / $TPN + 1) +export DT_ATMOS="1200" + export SATMEDMF=.T. export ISATMEDMF=1 export HYBEDMF=.F. diff --git a/tests/tests/fv3_ccpp_wrtGlatlon_netcdf b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf new file mode 100644 index 0000000000..c3271c075f --- /dev/null +++ b/tests/tests/fv3_ccpp_wrtGlatlon_netcdf @@ -0,0 +1,66 @@ +############################################################################### +# +# FV3 CCPP Global latlon grid netcdf output test +# +############################################################################### + +export TEST_DESCR="Compare FV3 CCPP Global latlon grid netcdf output results with previous trunk version" + +export CNTL_DIR=fv3_wrtGlatlon_netcdf + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.nc \ + phyf024.nc \ + dynf000.nc \ + dynf024.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export OUTPUT_GRID="'global_latlon'" +export OUTPUT_FILE="'netcdf'" + +export FV3_RUN=ccpp_control_run.IN +export CCPP_SUITE=FV3_GFS_2017 +export CCPP_LIB_DIR=ccpp/lib +export INPUT_NML=ccpp_control.nml.IN + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/tests/fv3_satmedmf b/tests/tests/fv3_satmedmf index 22758466ec..5145805e61 100644 --- a/tests/tests/fv3_satmedmf +++ b/tests/tests/fv3_satmedmf @@ -55,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export NODES=$(expr $TASKS / $TPN + 1) +export DT_ATMOS="1200" + export SATMEDMF=.T. export HYBEDMF=.F. export OUTPUT_GRID="'gaussian_grid'" diff --git a/tests/tests/fv3_satmedmfq b/tests/tests/fv3_satmedmfq index dc636e0c77..085d73e78a 100644 --- a/tests/tests/fv3_satmedmfq +++ b/tests/tests/fv3_satmedmfq @@ -55,6 +55,8 @@ export LIST_FILES="atmos_4xdaily.tile1.nc \ export_fv3 export NODES=$(expr $TASKS / $TPN + 1) +export DT_ATMOS="1200" + export SATMEDMF=.T. export ISATMEDMF=1 export HYBEDMF=.F. diff --git a/tests/tests/fv3_wrtGlatlon_netcdf b/tests/tests/fv3_wrtGlatlon_netcdf new file mode 100644 index 0000000000..7853a20a29 --- /dev/null +++ b/tests/tests/fv3_wrtGlatlon_netcdf @@ -0,0 +1,61 @@ +############################################################################### +# +# FV3 Global latlon grid netcdf output test +# +############################################################################### + +export TEST_DESCR="Compare FV3 global latlon grid netcdf output results with previous trunk version" + +export CNTL_DIR=fv3_wrtGlatlon_netcdf + +export LIST_FILES="atmos_4xdaily.tile1.nc \ + atmos_4xdaily.tile2.nc \ + atmos_4xdaily.tile3.nc \ + atmos_4xdaily.tile4.nc \ + atmos_4xdaily.tile5.nc \ + atmos_4xdaily.tile6.nc \ + phyf000.nc \ + phyf024.nc \ + dynf000.nc \ + dynf024.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc" + + +export_fv3 +export NODES=$(expr $TASKS / $TPN + 1) + +export OUTPUT_GRID="'global_latlon'" +export OUTPUT_FILE="'netcdf'" + +RUN_SCRIPT=rt_fv3.sh diff --git a/tests/utest b/tests/utest new file mode 100755 index 0000000000..769f0a1f08 --- /dev/null +++ b/tests/utest @@ -0,0 +1,627 @@ +#!/bin/bash +set -eu +SECONDS=0 +hostname + +error() { + echo + echo "$@" 1>&2 + exit 1 +} + +usage() { + #set +x + echo + echo "Usage: $program -n [ -c | -r ] [-e] [-k] [-h]" + echo + echo " -n specify " + echo + echo " -c create new baseline results. is" + echo " either 'all' or any combination of 'std','32bit','debug'" + echo + echo " -r run unit tests. is either 'all' or any combination" + echo " of 'std','thread','mpi','decomp','restart','32bit','debug'" + echo + echo " -e use ecflow workflow manager" + echo " -k keep run directory" + echo " -h display this help and exit" + echo + echo " Examples" + echo + echo " To create new baselines and run unit tests:" + echo " 'utest -n fv3_thompson' creates and runs all cases for fv3_thompson" + echo + echo " To create new baselines only:" + echo " 'utest -n fv3_control -c all' creates std, 32bit, debug for fv3_control" + echo " 'utest -n fv3_iau -c std,debug' creates std, debug for fv3_iau" + echo " 'utest -n fv3_gfdlmprad_gws -c 32bit' creates 32bit for fv3_gfdlmprad_gws" + echo + echo " To run unit tests only (baselines should exist to compare results against):" + echo " 'utest -n fv3_cpt -r all' runs std,thread,mpi,decomp,restart,32bit,debug for fv3_cpt" + echo " 'utest -n fv3_control -r thread,decomp' runs thread,decomp for fv3_control" + echo " 'utest -n fv3_stochy -r restart' runs restart for fv3_stochy" + echo + #set -x +} + +usage_and_exit() { + usage + exit $1 +} + +cleanup() { + rm -rf ${lockdir} + [[ ${ECFLOW:-false} == true ]] && ecflow_stop + trap 0 + exit +} + +run_utests() { + for rc in $ut_run_cases; do + # Load namelist default and override values + source default_vars.sh + source ${PATHRT}/tests/$TEST_NAME + + # If TEST_NAME specifies WARM_START true, error and exit + if [[ ${WARM_START} == .T. ]]; then + error "test-name cannot be a restart run; i.e., WARM_START=.T." + fi + + comp_nm=std + + if [[ ${create_flag} == true ]]; then + RT_SUFFIX="_${rc}_base" + else + RT_SUFFIX="_${rc}" + fi + + case $rc in + std) + cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + export RESTART_INTERVAL=$(( FHMAX/2 )) + EOF + ;; + thread) + THRD=2 + # INPES is sometimes odd, so use JNPES. Make sure JNPES is divisible by THRD + JNPES=$(( JNPES/THRD )) + TASKS=$(( INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP )) + TPN=$(( TPN/THRD )) + NODES=$(( TASKS/TPN + 1 )) + cat <<-EOF > ${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + export THRD=${THRD} + export JNPES=${JNPES} + export TASKS=${TASKS} + export TPN=${TPN} + export NODES=${NODES} + EOF + ;; + mpi) + JNPES=$(( JNPES/2 )) + 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 JNPES=${JNPES} + export WRITE_GROUP=${WRITE_GROUP} + export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} + export TASKS=${TASKS} + export NODES=${NODES} + EOF + ;; + decomp) + temp=$INPES + INPES=$JNPES + JNPES=$temp + cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + export INPES=${INPES} + export JNPES=${JNPES} + EOF + ;; + restart) # this is not going to work for regional model + # Set up date and time of restart files for restart run + RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHMAX/2 )))0000" + export RESTART_FILE_PREFIX + + WARM_START=.T. + NGGPS_IC=.F. + EXTERNAL_IC=.F. + MAKE_NH=.F. + MOUNTAIN=.T. + NA_INIT=0 + NSTF_NAME=2,0,1,0,5 + + LIST_FILES="RESTART/coupler.res RESTART/fv_core.res.nc RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc RESTART/fv_core.res.tile3.nc + RESTART/fv_core.res.tile4.nc RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc RESTART/phy_data.tile3.nc RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc RESTART/phy_data.tile6.nc RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc RESTART/sfc_data.tile3.nc RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc RESTART/sfc_data.tile6.nc" + + comp_hr=$(printf "%03d" $(( SHOUR + FHMAX ))) + if [[ $OUTPUT_GRID == "'cubed_sphere_grid'" ]]; then + LIST_FILES="phyf${comp_hr}.tile1.nc phyf${comp_hr}.tile2.nc phyf${comp_hr}.tile3.nc \ + phyf${comp_hr}.tile4.nc phyf${comp_hr}.tile5.nc phyf${comp_hr}.tile6.nc \ + dynf${comp_hr}.tile1.nc dynf${comp_hr}.tile2.nc dynf${comp_hr}.tile3.nc \ + dynf${comp_hr}.tile4.nc dynf${comp_hr}.tile5.nc dynf${comp_hr}.tile6.nc ${LIST_FILES}" + elif [[ $OUTPUT_GRID == "'gaussian_grid'" ]]; then + if [[ $OUTPUT_FILE == "'netcdf'" || $OUTPUT_FILE == "'netcdf_esmf'" ]]; then + LIST_FILES="phyf${comp_hr}.nc dynf${comp_hr}.nc ${LIST_FILES}" + elif [[ $OUTPUT_FILE == "'nemsio'" ]]; then + LIST_FILES="phyf${comp_hr}.nemsio dynf${comp_hr}.nemsio ${LIST_FILES}" + else + error "Unrecognized OUTPUT_FILE ${OUTPUT_FILE}" + fi + else + error "Unrecognized OUTPUT_GRID ${OUTPUT_GRID}" + fi + + cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} + export WARM_START=${WARM_START} + export NGGPS_IC=${NGGPS_IC} + export EXTERNAL_IC=${EXTERNAL_IC} + export MAKE_NH=${MAKE_NH} + export MOUNTAIN=${MOUNTAIN} + export NA_INIT=${NA_INIT} + export NSTF_NAME=${NSTF_NAME} + export LIST_FILES="${LIST_FILES}" + EOF + ;; + 32bit) + comp_nm=$rc + cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + EOF + ;; + debug) + comp_nm=$rc + WLCLK=30 + cat <<-EOF >${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env + export UNIT_TEST=true + export WLCLK=${WLCLK} + EOF + ;; + esac + + BL_SUFFIX="_$comp_nm" + + cat <<- EOF > ${RUNDIR_ROOT}/run_test${RT_SUFFIX}.env + export MACHINE_ID=${MACHINE_ID} + export RTPWD=${RTPWD} + export PATHRT=${PATHRT} + export PATHTR=${PATHTR} + export NEW_BASELINE=${NEW_BASELINE} + export CREATE_BASELINE=${CREATE_BASELINE} + export RT_SUFFIX=${RT_SUFFIX} + export BL_SUFFIX=${BL_SUFFIX} + export SCHEDULER=${SCHEDULER} + export ACCNR=${ACCNR} + export QUEUE=${QUEUE} + export ROCOTO=${ROCOTO} + export LOG_DIR=${LOG_DIR} + EOF + + if [[ $ECFLOW == true ]]; then + TEST_NR=${RT_SUFFIX:1} + COMPILE_NR=$comp_nm + DEP_RUN= + if [[ ${dependency_flag} == all ]]; then + if [[ ${RT_SUFFIX} == _std || ${RT_SUFFIX} == _thread || ${RT_SUFFIX} == _mpi || ${RT_SUFFIX} == _decomp ]]; then + DEP_RUN="${TEST_NAME}_std_base" + elif [[ ${RT_SUFFIX} == _restart ]]; then + DEP_RUN="${TEST_NAME}_std" + elif [[ ${RT_SUFFIX} == _32bit ]]; then + DEP_RUN="${TEST_NAME}_32bit_base" + elif [[ ${RT_SUFFIX} == _debug ]]; then + DEP_RUN="${TEST_NAME}_debug_base" + fi + elif [[ ${dependency_flag} == restart ]]; then + if [[ ${RT_SUFFIX} == _restart ]]; then + DEP_RUN="${TEST_NAME}_std" + fi + else + DEP_RUN='' + fi + ecflow_create_run_task + else + echo "Running test for $rc with" + echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TASKS: $TASKS; TPN: $TPN; NODES: $NODES" + TEST_NR=${RT_SUFFIX:1} + ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_NR $comp_nm > $LOG_DIR/run_${TEST_NAME}_${TEST_NR}.log 2>&1 + fi + + done +} + +trap 'echo utest killed; cleanup' KILL +trap 'echo utest interrupted; cleanup' INT +trap 'echo utest quit; cleanup' QUIT +trap 'echo utest terminated; cleanup' TERM +trap 'echo utest error on line $LINENO; cleanup' ERR +trap ' + ret=$? + if [ "$ret" -ne 0 ]; then + echo >&2 "Died with error code $ret" + else + echo >&2 "utest finished" + fi + cleanup' EXIT + +######################################################################## +#### PROGRAM STARTS #### +######################################################################## +readonly program=$(basename $0) +export UNIT_TEST=true +[[ $# -eq 0 ]] && usage_and_exit 1 + +# Default compiler: intel +export COMPILER=${NEMS_COMPILER:-intel} +# detect_machine sets ACCNR and MACHINE_ID +source detect_machine.sh +# utility functions in rt_utils need to be able to see variables in utest +source rt_utils.sh +# PATHRT - Path to unit tests directory +readonly PATHRT=$(cd $(dirname $0) && pwd -P) +cd $PATHRT +# PATHTR - Path to trunk directory +readonly PATHTR=$(cd ${PATHRT}/.. && pwd) + +# make sure only one instance of utest is running +readonly lockdir=${PATHRT}/lock_ut +if mkdir $lockdir 2>/dev/null; then + echo $(hostname) $$ > ${lockdir}/PID +else + error "Only one instance of utest can be running at a time" +fi + +# Machine-dependent libraries, modules, variables, etc. +if [[ $MACHINE_ID = hera.* ]]; then + export NCEPLIBS=/scratch1/NCEPDEV/global/gwv/l819/lib + source $PATHTR/NEMS/src/conf/module-setup.sh.inc + module use $PATHTR/modulefiles/${MACHINE_ID} + module load fv3 + + COMPILER=${NEMS_COMPILER:-intel} # in case compiler gets deleted by module purge + + export PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:$PATH + export PYTHONPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/lib/python2.7/site-packages + ECFLOW_START=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin/ecflow_start.sh + ECF_PORT=$(( $(id -u) + 1500 )) + + QUEUE=debug + dprefix=/scratch1/NCEPDEV + DISKNM=$dprefix/nems/emc.nemspara/RT + STMP=${dprefix}/stmp4 + PTMP=${dprefix}/stmp2 + SCHEDULER=slurm + cp fv3_conf/fv3_slurm.IN_hera fv3_conf/fv3_slurm.IN +else + error "Unknown machine ID. Edit detect_machine.sh file" +fi + +CREATE_BASELINE=true +baseline_cases= +run_unit_test=true +unit_test_cases= +TEST_NAME= +keep_rundir=false +ROCOTO=false +ECFLOW=false + +# Parse command line arguments +while getopts :c:r:n:ekh opt; do + case $opt in + c) + run_unit_test=false + if [ $OPTARG = all ]; then + baseline_cases=std,32bit,debug + else + baseline_cases=$OPTARG + fi + baseline_cases=$(echo $baseline_cases | sed -e 's/^ *//' -e 's/ *$//' -e 's/,/ /g') + for i in $baseline_cases + do + if [[ $i != std && $i != 32bit && $i != debug ]]; then + error "Invalid baseline_cases specified: $i" + fi + done + ;; + r) + CREATE_BASELINE=false + if [ $OPTARG = all ]; then + unit_test_cases=std,thread,mpi,decomp,restart,32bit,debug + else + unit_test_cases=$OPTARG + fi + unit_test_cases=$(echo $unit_test_cases | sed -e 's/^ *//' -e 's/ *$//' -e 's/,/ /g') + for i in $unit_test_cases + do + if [[ $i != std && $i != thread && $i != mpi && $i != decomp && \ + $i != restart && $i != 32bit && $i != debug ]]; then + error "Invalid unit_test_cases specified: $i" + fi + done + ;; + n) + TEST_NAME=$OPTARG + echo "Test name: ${TEST_NAME}" + ;; + e) + ECFLOW=true + ;; + k) + keep_rundir=true + ;; + h) + usage_and_exit 0 + ;; + '?') + error "$program: invalid option -$OPTARG" + ;; + esac +done + +# TEST_NAME is a required argument +if [ -z $TEST_NAME ]; then + error "$program: please specify test-name. Try 'utest -h' for usage." +fi + +# Default where neither -c nor -r is specified: compile and run all cases +if [[ $CREATE_BASELINE == true && $run_unit_test == true ]]; then + baseline_cases=std,32bit,debug + unit_test_cases=std,thread,mpi,decomp,restart,32bit,debug +fi + +#echo "baseline_cases = $baseline_cases" +#echo "unit_test_cases = $unit_test_cases" + +# Fill in ut_compile_cases & ut_run_cases based on baseline_cases & unit_test_cases +# Cases are sorted in the order: std,thread,mpi,decomp,restart,32bit,debug +ut_compile_cases= +ut_run_cases= +if [[ $CREATE_BASELINE == true && $run_unit_test == true ]]; then + ut_compile_cases="1std 232bit 3debug" + ut_run_cases="1std 2thread 3mpi 4decomp 5restart 632bit 7debug" +elif [[ $CREATE_BASELINE == true && $run_unit_test == false ]]; then + for i in $baseline_cases; do + case $i in + std) + ut_compile_cases+=" 1$i" + ut_run_cases+=" 1$i" + ;; + 32bit) + ut_compile_cases+=" 2$i" + ut_run_cases+=" 2$i" + ;; + debug) + ut_compile_cases+=" 3$i" + ut_run_cases+=" 3$i" + ;; + esac + done +elif [[ $run_unit_test == true && $CREATE_BASELINE == false ]]; then + for i in $unit_test_cases; do + case $i in + std) + ut_compile_cases+=" 1$i" + ut_run_cases+=" 1$i" + ;; + thread) + ut_compile_cases+=" 1std" + ut_run_cases+=" 2$i" + ;; + mpi) + ut_compile_cases+=" 1std" + ut_run_cases+=" 3$i" + ;; + decomp) + ut_compile_cases+=" 1std" + ut_run_cases+=" 4$i" + ;; + restart) + ut_compile_cases+=" 1std" + ut_run_cases+=" 5$i" + ;; + 32bit) + ut_compile_cases+=" 2$i" + ut_run_cases+=" 6$i" + ;; + debug) + ut_compile_cases+=" 3$i" + ut_run_cases+=" 7$i" + ;; + esac + done +fi +ut_compile_cases=$(echo $ut_compile_cases | tr " " "\n" | sort -u) +ut_compile_cases=$(echo $ut_compile_cases | sed -e 's/^[0-9]//g' -e 's/ [0-9]/ /g') +ut_run_cases=$(echo $ut_run_cases | tr " " "\n" | sort -u) +ut_run_cases=$(echo $ut_run_cases | sed -e 's/^[0-9]//g' -e 's/ [0-9]/ /g') +if [[ ! $ut_run_cases =~ ^std && $ut_run_cases =~ restart ]]; then + ut_run_cases="std ${ut_run_cases}" +fi +echo "Cases to compile: $ut_compile_cases" +echo "Cases to run : $ut_run_cases" + +# Log directory +LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID +rm -rf ${LOG_DIR} +mkdir ${LOG_DIR} + +# Directory where all simulations are run +RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}}/FV3_UT/ut_$$ +mkdir -p ${RUNDIR_ROOT} + +if [[ $ECFLOW == true ]]; then + ECFLOW_RUN=${PATHRT}/ecflow_ut_run + ECFLOW_SUITE=unittest + rm -rf ${ECFLOW_RUN} + mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} + cp head.h tail.h ${ECFLOW_RUN} + > ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + cat << EOF >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def +suite ${ECFLOW_SUITE} + edit ECF_HOME '${ECFLOW_RUN}' + edit ECF_INCLUDE '${ECFLOW_RUN}' + edit ECF_KILL_CMD kill -15 %ECF_RID% > %ECF_JOB%.kill 2>&1 + edit ECF_TRIES 1 + label rundir_root '${RUNDIR_ROOT}' + limit max_builds 6 + limit max_jobs 30 +EOF + if [[ $MACHINE_ID == hera.* ]]; then + QUEUE=debug + else + error "ecflow is not supported on this machine $MACHINE_ID" + fi +fi + +######################################################################## +#### COMPILE #### +######################################################################## +# build_file specifies compilation options +build_file='utest.bld' +[[ -f ${build_file} ]] || error "${build_file} does not exist" + +compile_log=${PATHRT}/Compile_ut_$MACHINE_ID.log +rm -f fv3_*.exe modules.fv3_* ${compile_log} + +while IFS="|" read model comp_opt; do + model_found=false + model=$(echo $model | sed -e 's/^ *//' -e 's/ *$//') + comp_opt=$(echo $comp_opt | sed -e 's/^ *//' -e 's/ *$//') + if [[ $model == ${TEST_NAME} ]]; then + base_opt=${comp_opt} + model_found=true + break + fi +done < ${build_file} +if [[ ${model_found} == false ]]; then + error "Build options for $TEST_NAME not found. Please edit utest.bld." +fi + +for name in $ut_compile_cases; do + case $name in + std) + NEMS_VER=${base_opt} + ;; + 32bit) + if [[ ${base_opt} =~ "32BIT=Y" ]]; then + NEMS_VER=$(echo ${base_opt} | sed -e 's/32BIT=Y/32BIT=N/') + elif [[ ${base_opt} =~ "32BIT=N" ]]; then + NEMS_VER=$(echo ${base_opt} | sed -e 's/32BIT=N/32BIT=Y/') + else + NEMS_VER="${base_opt} 32BIT=Y" + fi + ;; + debug) + NEMS_VER="${base_opt} 32BIT=Y DEBUG=Y" + ;; + esac + NEMS_VER=$(echo ${NEMS_VER} | sed -e 's/^ *//' -e 's/ *$//') + + if [[ $ECFLOW == true ]]; then + COMPILE_NR=$name + APP='' + ecflow_create_compile_task + else + echo "Compiling for ${name} with compile option ${NEMS_VER}" + ./compile.sh $PATHTR/FV3 $MACHINE_ID "${NEMS_VER}" $name >${LOG_DIR}/compile_${TEST_NAME}_$name.log 2>&1 + echo "Compiling done for ${name}" + fi +done + +######################################################################## +#### RUN #### +######################################################################## +mkdir -p ${STMP}/${USER} +NEW_BASELINE=${STMP}/${USER}/FV3_UT/UNIT_TEST +RTPWD=$DISKNM/NEMSfv3gfs/develop-20200512/INTEL +if [[ $CREATE_BASELINE == true ]]; then + rm -rf $NEW_BASELINE + mkdir -p $NEW_BASELINE + + rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ + rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ +fi + +# unittest_log is different from REGRESSIONTEST_LOG +# defined in run_test.sh and passed onto rt_utils.sh +unittest_log=${PATHRT}/UnitTests_$MACHINE_ID.log +rm -f fail_unit_test ${unittest_log} +create_flag= +dependency_flag= + +if [[ $CREATE_BASELINE == true && $run_unit_test == true ]]; then + # Run to create baseline + create_flag=true + dependency_flag=none + ut_run_cases='std 32bit debug' + run_utests + # Run to compare with baseline + create_flag=false + dependency_flag=all + ut_run_cases='std thread mpi decomp restart 32bit debug' + CREATE_BASELINE=false + RTPWD=${NEW_BASELINE} + run_utests +elif [[ $CREATE_BASELINE == true && $run_unit_test == false ]]; then + # Run to create baseline + create_flag=true + dependency_flag=none + run_utests +elif [[ $CREATE_BASELINE == false && $run_unit_test == true ]]; then + # Run to compare with baseline + create_flag=false + dependency_flag=restart + if [[ ! -d $NEW_BASELINE ]]; then + error "There is no baseline to run unit tests against. Create baselines first." + fi + RTPWD=${NEW_BASELINE} + run_utests +fi + +if [[ $ECFLOW == true ]]; then + echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def + ecflow_run +fi + +######################################################################## +#### UNIT TEST STATUS #### +######################################################################## +set +e +cat ${LOG_DIR}/compile_*.log > ${compile_log} +cat ${LOG_DIR}/ut_*.log >> ${unittest_log} + +if [[ -e fail_unit_test ]]; then + echo "FAILED TESTS: " | tee -a ${unittest_log} + while read -r failed_test_name + do + echo "Test ${failed_test_name} failed " | tee -a ${unittest_log} + done < fail_unit_test + echo "UNIT TEST FAILED" | tee -a ${unittest_log} +else + echo "UNIT TEST WAS SUCCESSFUL" | tee -a ${unittest_log} + + rm -f fv3_*.x fv3_*.exe modules.fv3_* + [[ ${keep_rundir} == false ]] && rm -rf ${RUNDIR_ROOT} +fi + +date >> ${unittest_log} +elapsed_time=$(printf '%02dh:%02dm:%02ds\n' $(($SECONDS%86400/3600)) $(($SECONDS%3600/60)) $(($SECONDS%60))) +echo "Elapsed time: ${elapsed_time}. Have a nice day!" | tee -a ${unittest_log} diff --git a/tests/utest.bld b/tests/utest.bld new file mode 100644 index 0000000000..2fca9fc014 --- /dev/null +++ b/tests/utest.bld @@ -0,0 +1,28 @@ +fv3_control | +fv3_gfdlmprad_gwd | +fv3_thompson | +fv3_gfdlmp | +fv3_gfdlmprad_noahmp | +fv3_wsm6 | +fv3_stochy | +fv3_wrtGauss_netcdf_esmf | +fv3_wrtGauss_netcdf | +fv3_wrtGauss_nemsio | +fv3_csawmg | +fv3_csawmgshoc | +fv3_satmedmf | +fv3_lheatstrg | +fv3_iau | +fv3_csawmg3shoc127 | +fv3_gfdlmprad | WW3=Y +fv3_ccpp_control | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf_esmf | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_netcdf | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_nemsio | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_wrtGauss_nemsio_c192 | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_stochy | CCPP=Y SUITES=FV3_GFS_2017 +fv3_ccpp_gfdlmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_gwd | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp +fv3_ccpp_gfdlmprad_noahmp | CCPP=Y SUITES=FV3_GFS_2017_gfdlmp_noahmp +fv3_ccpp_csawmg | CCPP=Y SUITES=FV3_GFS_2017_csawmg +fv3_ccpp_satmedmf | CCPP=Y SUITES=FV3_GFS_2017_satmedmf